19
Quote:
Chappy wrote:
Does this mean that the urls are the issue that causes javascript to drop-down menus wrong?
Yes, it does. The simplified URLs' directory is different from the real directory. If some URLs are relative path, they will not locate right path.
Quote:
Are you saying that I would need to use mod_rewrite to rewrite the urls for newbb2 to make it work?
I mean that you need to edit php files in newbb2 to fix the relative URLs. Quote:
Is it possible to disable simplfiedURLs for newBB2 (per mod)?
Yes. Please modify 'simplified_url.php' like this:
if( ( !preg_match("//modules/([^/]*)/admin//", $_SERVER['SCRIPT_NAME']) )
&& ( !preg_match("//modules/system//", $_SERVER['SCRIPT_NAME']) )
[color=ff0000] && ( !preg_match("//modules/newbb//", $_SERVER['SCRIPT_NAME']) )[/color]
&& ( !preg_match("/admin.php/", $_SERVER['SCRIPT_NAME']) ) ) {
//ob_start('ob_gzhandler');
//ob_start('absolutize');
ob_start('simplify_urls');
}
I'm sorry for my clumsy English