Is anything besides your forum url filled into the any of the component url settings?
Announcement
Collapse
No announcement yet.
Editor problems after upgrade (from 4.1.7 to 4.1.11)
Collapse
X
-
-
I'd suggest putting in a bug report and maybe they can work out why it is failing.
Comment
-
Originally posted by Dyneslott View PostWell ok, I did this now:
In class_bootstrap.php I changedPHP Code:$templater->register('ajaxbaseurl', VB_URL_BASE_PATH);
PHP Code:$templater->register('ajaxbaseurl', $vbulletin->input->fetch_basepath());
The solution for me was the one mentioned by Dyneslott. BUT I did the change in the headinclude TEMPLATE and not in PHP! So I do not have to make the same change over and over for each update as templates can be merged...
Code:var AJAXBASEURL = "{vb:raw ajaxbaseurl}";
Code:var AJAXBASEURL = "{vb:raw basepath}";
Comment
-
Originally posted by ralf.brunner View PostI had almost axactly the same problem. (AJAX failed because the nonstandard port was part of the ajaxbaseurl which caused Firefox to not work. IE did)
The solution for me was the one mentioned by Dyneslott. BUT I did the change in the headinclude TEMPLATE and not in PHP! So I do not have to make the same change over and over for each update as templates can be merged...
Code:var AJAXBASEURL = "{vb:raw ajaxbaseurl}";
Code:var AJAXBASEURL = "{vb:raw basepath}";
Your solution does the job perfectly.
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment