Quote:
Originally Posted by BRotondi
These 'members'-Links are default with the default-'Mod Rewrite Friendly URLs' rewrite-.htaccess. If you can change this, its fine. But be aware: Not only the ending changed, there is also the s: /member.php? -> /members/
|
perhaps u can try if it is working better...
open vbMediaWiki.php with some text editor and change line 379 from:
PHP Code:
$temp = preg_replace( '/(src|href|action)="([^:"<>]+\\.(php|gif|jpg|png|js|ico|css))/', '\\1="'.$base.'/\\2', $temp );
to:
PHP Code:
$temp = preg_replace( '/(src|href|action)="([^\/:"][^:"]+)"/', '\\1="'.$base.'/\\2"', $temp );
(this both code parts are one line! ... this forum is breaking them, because they are too long)