Resource icon

Wolt Lab Burning Board importer(5.x) Guide 1.0

No permission to download

demon326

Member
demon326 submitted a new resource:

Wolt Lab Burning Board importer(5.x) Guide - WBB 5 conversion guide

Since there is NO direct convertor for Burning Board 4x,5.x to Xenforo, you will have to go via a third party forum. In this case MyBB. This 'resource' does NOT work for Xenforo, its intende for use with the Mybb software that is only being used as tempory instance.

Tested with:
Clean WBB 5.0
WBB 4.0 --> 4.1 --> 5.0

Please read the FAQ section for further instructions.

I won't be...

Read more about this resource...
 
Thanks a lot 4 this, but 1 thing does not work for me.
Code:
Server Error

preg_match_all(): Unknown modifier ']'


[LIST=1]
[*]XenForo_Application::handlePhpError()
[*]preg_match_all() in PostReplace/ControllerAdmin/PostReplace.php at line 26
[*]PostReplace_ControllerAdmin_PostReplace->actionReplace() in XenForo/FrontController.php at line 369
[*]XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 152
[*]XenForo_FrontController->run() in /var/www/html/xen/admin.php at line 13
[/LIST]

this is the string
Code:
<img src="https://noobs.club/images/smilies/emojione/263a.png"   alt="[IMG]http://46.4.90.91/xen/styles/default/xenforo/clear.png[/IMG]" height="23" srcset="https://noobs.club/images/smilies/emojione/263a@2x.png 2x">

the regex work i testet it here https://regextester.com i don't know how to fix

fixed

replace
Code:
<img.*?src="([^"]*)"[^>]*>(?:<\/img>)?

with this

Code:
/<img.*?src="([^"]*)"[^>]*>(?:<\/img>)?/
 
Last edited:
Top Bottom