Recent content by aajobj

  1. A

    XF 1.4 BBCode and javascript

    I was able to work around the problem by creating a JS-loader that makes sure that the monoslideshow is loaded before the code continues. I also was able to manipulate the div id programmatically first by declaring outside javascript: <div id="mstemp" style="width: 500px; height: 400px;"></div>...
  2. A

    XF 1.4 BBCode and javascript

    Ok, so it is the "document.write" that is causing the whole problem? And if this could be the answer, where can I put the <script type="text/javascript" src="../monoslideshow.js"></script> to make it globally?
  3. A

    XF 1.4 BBCode and javascript

    Actually, after closer inspection this cannot be the monoslideshow.js. I have stripped down the javascript to the following, and get the same error (TypeError: e is undefined (at /js/xenforo/xenforo.js) (xenforo.js:220:305)): <script type="text/javascript"> var param = '{text}'; var...
  4. A

    XF 1.4 BBCode and javascript

    Ok. I am not sure if this is related to async issues. After I checked in web console (script) I suspect there is a conflict between monoslideshow.js and xenforo.js since I am getting a TypeError: e is undefined error. This is pointing at /js/xenforo/xenforo.js...
  5. A

    XF 1.4 BBCode and javascript

    Hi, I’m trying to create a custom BBCode for a HTML5 slideshow (Monokai's Monoslideshow) from post attachments, media gallery and img. In the HTML Replacement, I have the following code: <script type="text/javascript" src="../monoslideshow.js"></script> <script type="text/javascript"> var...
  6. A

    XF 1.4 Import from vB 3.8 and change URL's in posts

    Ok. Fortunately there was not so many of them. What about search URL's?: vB format: http://<domain.com>/forum/search.php?query=<search text> XenForo: http://<domain.com>/forum/index.php?search/2/&q=<search text> I have noticed that there is a use of searchid. Can this be done generic, meaning...
  7. A

    XF 1.4 Import from vB 3.8 and change URL's in posts

    Hi, I'm working with import from vBulltin, and I'm doing a lot of regex/serach and replace (both with the Post Content Find / Replace add-on and directly in DB). It have stopped a bit with old URL's in posts for creating PM/conversations. In vB the URL's is in the format of...
  8. A

    Import from PhotoPost and organize in albums

    Ok. I will look into if I can do some SQL updates to fix this. Is it also so that EXIF info is not imported from PP?
  9. A

    Import from PhotoPost and organize in albums

    You are saying: The photos will be in an album that belongs to each member already (if they had photos in Photopost). Maybe I misunderstand, but when I check in the db there is no user albums created for the photos that users had uploaded in PP (in PP Member Galleries).
  10. A

    Import from PhotoPost and organize in albums

    That was a drawback. Not even with SQL update queries? Meaning with SQL create albums on each user that has uploaded photos and change the attribute on the photos so that they belong to each user albums.
  11. A

    Import from PhotoPost and organize in albums

    Hi, I have tested import from Photopost that is integrated with vBulletin (vBulletin 3.8.3, PhotoPost 6.11), and the import worked well. But it seems that all photos that where uploaded in PP Member Galleries is not organized per user. Under import to XFMG the Member Galleries category was...
Top Bottom