hmm...
this is my case:
1.) i was using phpbb3 before i used premod.
2.) i removed my old forum before i installed the premod, but i didn't uploaded the "install" directory (as i've read through this forum), and i kept my old config.php file.
3.) after intalling, i encountered an error stating:
Fatal error: Only variables can be passed by reference in /home/www/root/includes/functions.php on line 3659
and i read this thread:
http://www.phpbb-seo.com/boards/phpbb3- ... t2164.html
so i followed it and changed
- Code: Select all
return $this->word_limit( utf8_htmlspecialchars( htmlspecialchars_decode( preg_replace($RegEx, $replace, $text ) ) ) );
to
- Code: Select all
$text = htmlspecialchars_decode( preg_replace($RegEx, $replace, $text ));
utf8_htmlspecialchars( $text );
return $this->word_limit( $text);
is there something on these steps that made my search.php blank?
or maybe there's an SQL to the "install" directory that is needed?