Blank Search Page

phpBB SEO Premod for phpBB3 support forum.
This premodded version of phpBB3 includes the three different type of URL rewriting for phpBB3 by phpBB SEO. It comes with several other Search Engine Optimization mods installed.

Moderator: Moderators

Blank Search Page

Postby divinemanwah » Thu Apr 03, 2008 4:52 am

hello,

i have a forum (please remove my URL if it is not allowed to post URLs)
http://www.itspot.co.cc/forums

my problem is, after installing the premod, my search.php page is now BLANK (as in white page)

please anyone, try to take a look:
http://www.itspot.co.cc/forums/search.php

*NOTE: i currently DISABLED the search feature to avoid further problems.

thanks for any help!! :D
User avatar
divinemanwah
 
Posts: 45
Joined: Tue Apr 01, 2008 10:36 am

Advertisement

Postby divinemanwah » Tue Apr 08, 2008 8:15 am

anyone?
User avatar
divinemanwah
 
Posts: 45
Joined: Tue Apr 01, 2008 10:36 am

Postby SeO » Tue Apr 08, 2008 9:21 am

Should be nothing more than a typo introduced when installing the mod.

Please double check search.php.

As well, you can activate the phpBB debug in config.php to see if no useful error message won't show up instead of a blank page.
SeO
Admin
Admin
 
Posts: 6333
Joined: Wed Mar 15, 2006 9:41 pm

Postby divinemanwah » Wed Apr 09, 2008 3:51 am

SeO wrote:Should be nothing more than a typo introduced when installing the mod.

Please double check search.php.

As well, you can activate the phpBB debug in config.php to see if no useful error message won't show up instead of a blank page.


i already checked it 3 times before posting here...
i even downloaded and uploaded a fresh copy of search.php (from premod) 3 times...

and when i activated the debug mode, nothing still happens--it's still blank
User avatar
divinemanwah
 
Posts: 45
Joined: Tue Apr 01, 2008 10:36 am

Postby HB » Wed Apr 09, 2008 12:31 pm

Did you purge the cache? Maybe there's a parse error. Try testing it under XAMPP or equivalent. Some ISPs have php configured to suppress the display of any errors, resulting in a "blank" page.
Dan Kehn
HB
phpBB SEO Team
phpBB SEO Team
 
Posts: 1211
Joined: Mon Oct 16, 2006 2:25 am

Postby divinemanwah » Fri Apr 11, 2008 1:56 am

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?
User avatar
divinemanwah
 
Posts: 45
Joined: Tue Apr 01, 2008 10:36 am

Postby HB » Fri Apr 11, 2008 2:02 am

Without more information, I can only guess. Installing locally on XAMPP or equivalent will give you full control over the php configuration, including error display. As I said before, it appears your ISP has errors suppressed (mine has the same settings), so it could be a typo or who knows what...

You could try adding this to your config.php:

Code: Select all
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);

That may spit out a clue, although my #1 recommendation above stands.
Dan Kehn
HB
phpBB SEO Team
phpBB SEO Team
 
Posts: 1211
Joined: Mon Oct 16, 2006 2:25 am

Postby dcz » Wed Apr 16, 2008 9:41 am

divinemanwah wrote:
Fatal error: Only variables can be passed by reference in /home/www/root/includes/functions.php on line 3659


This is fixed in 3.0.1, a dumb mystake ;)
Useful links :
SEO Forum || SEO Directory || SEO phpBB || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21219
Joined: Fri Apr 28, 2006 9:03 pm

Postby vsabah » Wed Jul 16, 2008 5:54 am

Hi!

I have same problem... I read all posts but i didnt solve this problem... :(

http://www.kostebekforum.com/search.php

What can i do?
User avatar
vsabah
PR0
PR0
 
Posts: 57
Joined: Sun Jul 06, 2008 1:09 pm

Postby SeO » Wed Jul 16, 2008 7:30 am

HB wrote:Without more information, I can only guess. Installing locally on XAMPP or equivalent will give you full control over the php configuration, including error display. As I said before, it appears your ISP has errors suppressed (mine has the same settings), so it could be a typo or who knows what...

You could try adding this to your config.php:

Code: Select all
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);

That may spit out a clue, although my #1 recommendation above stands.


This maybe ;)
SeO
Admin
Admin
 
Posts: 6333
Joined: Wed Mar 15, 2006 9:41 pm

Postby vsabah » Wed Jul 16, 2008 7:47 am

SeO wrote:
HB wrote:Without more information, I can only guess. Installing locally on XAMPP or equivalent will give you full control over the php configuration, including error display. As I said before, it appears your ISP has errors suppressed (mine has the same settings), so it could be a typo or who knows what...

You could try adding this to your config.php:

Code: Select all
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);

That may spit out a clue, although my #1 recommendation above stands.


This maybe ;)


I did it...

Code: Select all
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);


But i cant do anything... What can i do after this code?

What will i do after this step? I did it...
Code: Select all
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);
?>
User avatar
vsabah
PR0
PR0
 
Posts: 57
Joined: Sun Jul 06, 2008 1:09 pm

Postby SeO » Wed Jul 16, 2008 8:03 am

Since no error shows up, it could be a language file issue, but nothing is for sure.

What did you last do before it started to be like this ?
SeO
Admin
Admin
 
Posts: 6333
Joined: Wed Mar 15, 2006 9:41 pm

Postby vsabah » Wed Jul 16, 2008 8:09 am

SeO wrote:Since no error shows up, it could be a language file issue, but nothing is for sure.

What did you last do before it started to be like this ?


I have chanced my server... That's why my site was close three days...

Before this.. It was working...


Everything is working without search.php... :(
User avatar
vsabah
PR0
PR0
 
Posts: 57
Joined: Sun Jul 06, 2008 1:09 pm

Postby SeO » Wed Jul 16, 2008 8:14 am

Try to compare you search.php file with one from the phpBB package to see if you find anything obvious.
SeO
Admin
Admin
 
Posts: 6333
Joined: Wed Mar 15, 2006 9:41 pm

Postby vsabah » Wed Jul 16, 2008 8:17 am

SeO wrote:Try to compare you search.php file with one from the phpBB package to see if you find anything obvious.


I have chanced it with phpBB 3.0.1 and phpBB 3.0.2 search.php files...

But i didnt work again...
User avatar
vsabah
PR0
PR0
 
Posts: 57
Joined: Sun Jul 06, 2008 1:09 pm

Next

Return to phpBB SEO Premod

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 4 guests