Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:// INCLUDE EXTENSIONS
// 2006-06-16 - Extensions are no long included here because bad extensions were causing standard ajax features to break.
// include($Configuration['APPLICATION_PATH'].'conf/extensions.php');// INCLUDE EXTENSIONS
// Extensions are no long included here by default because bad extensions were causing standard ajax features to break.
if ($Configuration['INCLUDE_EXTENSIONS_BY_AJAX']) {
include($Configuration['APPLICATION_PATH'].'conf/extensions.php');
} so user or add-on can turn including on// INCLUDE EXTENSIONS
// Extensions are no long included here by default because bad extensions were causing standard ajax features to break.
// use /path/to/vanilla/conf/ajax_extensions.php
@include($Configuration['APPLICATION_PATH'].'conf/ajax_extensions.php');
so extension can install itself to be included by ajax
WallPhoneAssuming that the cause of the breakage was an extension outputting something to the browser before the Ajax script could do its thingI have installed these addons:
This, coincidentally, is done to solve a related problem in init_vanilla.php. Problem is, in init_vanilla.php It's run before the extensions are included... which has benefits that you can easily output debug info from an extension, but the downside that a little white space at the end of a ?> can break the doctype and page validation.Still I think that extension developer should be responsible for its extensions. I personally don't use ?> at all at the end of php file. So it can never add white space after ?> (because it's just missing :-)
1 to 3 of 3