phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Blank Search Page
Goto page 1, 2  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB SEO Premod
::  
Author Message
divinemanwah



Joined: 01 Apr 2008
Posts: 28

Blank Search PagePosted: Thu Apr 03, 2008 4:52 am    Post subject: Blank Search Page

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!! Very Happy
Back to top
divinemanwah



Joined: 01 Apr 2008
Posts: 28

Blank Search PagePosted: Tue Apr 08, 2008 8:15 am    Post subject: Re: Blank Search Page

anyone?
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Blank Search PagePosted: Tue Apr 08, 2008 9:21 am    Post subject: Re: Blank Search Page

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.

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
divinemanwah



Joined: 01 Apr 2008
Posts: 28

Blank Search PagePosted: Wed Apr 09, 2008 3:51 am    Post subject: Re: Blank Search Page

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
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 809

Blank Search PagePosted: Wed Apr 09, 2008 12:31 pm    Post subject: Re: Blank Search Page

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
Back to top
Visit poster's website
divinemanwah



Joined: 01 Apr 2008
Posts: 28

Blank Search PagePosted: Fri Apr 11, 2008 1:56 am    Post subject: Re: Blank Search Page

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:
Quote:
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-forum/discussions-vt2164.html

so i followed it and changed
Code:
        return $this->word_limit( utf8_htmlspecialchars( htmlspecialchars_decode( preg_replace($RegEx, $replace, $text ) ) ) );


to
Code:
         $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?
Back to top
HB
phpBB SEO Team
phpBB SEO Team


Joined: 16 Oct 2006
Posts: 809

Blank Search PagePosted: Fri Apr 11, 2008 2:02 am    Post subject: Re: Blank Search Page

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:
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);

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

_________________
Dan Kehn
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14279

Blank Search PagePosted: Wed Apr 16, 2008 9:41 am    Post subject: Re: Blank Search Page

divinemanwah wrote:

Quote:
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 Wink

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
vsabah



Joined: 06 Jul 2008
Posts: 19

Blank Search PagePosted: Wed Jul 16, 2008 5:54 am    Post subject: Re: Blank Search Page

Hi!

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

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

What can i do?
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Blank Search PagePosted: Wed Jul 16, 2008 7:30 am    Post subject: Re: Blank Search Page

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:
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);

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


This maybe Wink

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
vsabah



Joined: 06 Jul 2008
Posts: 19

Blank Search PagePosted: Wed Jul 16, 2008 7:47 am    Post subject: Re: Blank Search Page

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:
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);

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


This maybe Wink


I did it...

Code:
@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:
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);
?>
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Blank Search PagePosted: Wed Jul 16, 2008 8:03 am    Post subject: Re: Blank Search Page

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 ?

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
vsabah



Joined: 06 Jul 2008
Posts: 19

Blank Search PagePosted: Wed Jul 16, 2008 8:09 am    Post subject: Re: Blank Search Page

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... Sad
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

Blank Search PagePosted: Wed Jul 16, 2008 8:14 am    Post subject: Re: Blank Search Page

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

_________________
phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible !
Back to top
vsabah



Joined: 06 Jul 2008
Posts: 19

Blank Search PagePosted: Wed Jul 16, 2008 8:17 am    Post subject: Re: Blank Search Page

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...
Back to top
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB SEO Premod
Page 1 of 2 Goto page 1, 2  Next

Navigation Similar Topics

Jump to: