phpBB blank page

Status
Not open for further replies.

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
http://jagf.net

I moved hosts and that broke phpBB. Wordpress are working ok, but phpBB show empty pages...

the error log is turned off, so I am using this:

PHP:
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
   error_reporting(0); 
   $old_error_handler = set_error_handler("userErrorHandler");
 
   function userErrorHandler ($errno, $errmsg, $filename, $linenum,  $vars) 
   {
     $time=date("d M Y H:i:s"); 
     // Get the error type from the error number 
     $errortype = array (1    => "Error",
                         2    => "Warning",
                         4    => "Parsing Error",
                         8    => "Notice",
                         16   => "Core Error",
                         32   => "Core Warning",
                         64   => "Compile Error",
                         128  => "Compile Warning",
                         256  => "User Error",
                         512  => "User Warning",
                         1024 => "User Notice");
      $errlevel=$errortype[$errno];
 
      //Write error to log file (CSV format) 
      $errfile=fopen($phpbb_root_path . "errors.csv","a"); 
      fputs($errfile,"\"$time\",\"$filename: 
      $linenum\",\"($errlevel) $errmsg\"\r\n"); 
      fclose($errfile);
 
      if($errno!=2 && $errno!=8) {
         //Terminate script if fatal error
         die("A fatal error has occurred. Script execution has been aborted");
      } 
   }

but there is no errors in it so I am really confused. Any ideas?
 

nanoman

New Member
Messages
45
Reaction score
0
Points
0
I can confirm that this problem is not happening because of our actions! Cause I installed SMF forum, but when I am trying to enter it: http://forum.aimskull.com it shows a blank page and I have to keep refreshing the page till it shows the forum and it happens all the time...also this problem was happening with phpBB forum yesterday so I thought that it's their problem and decided to install SMF, but the problem is again here.

With the main website nothing like that has been happened. Besides that phpBB and SMF forums require memory_limit 128M, maybe that could be the problem.


Okey sorry, didn't search enough! My problem with SMF has been fixed! SMF Forum blank page fix
 
Last edited:

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
I can confirm that this problem is not happening because of our actions! Cause I installed SMF forum, but when I am trying to enter it: http://forum.aimskull.com it shows a blank page and I have to keep refreshing the page till it shows the forum and it happens all the time...also this problem was happening with phpBB forum yesterday so I thought that it's their problem and decided to install SMF, but the problem is again here.

With the main website nothing like that has been happened. Besides that phpBB and SMF forums require memory_limit 128M, maybe that could be the problem.

phpBB doesen't require 128 MB memory limit. And jagf isn't at x10 anymore :(
 

nanoman

New Member
Messages
45
Reaction score
0
Points
0
Well, when I was installing phpBB it was trying to set the memory_limit to 128M few times.
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
I have ran phpBB on 5 mb limit sometimes and it has worked. So it is clearly not that that is the problem
 
Status
Not open for further replies.
Top