MyBB Community Forums

Full Version: Archive mode blank white screen
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2012-09-26, 06:08 AM)therussiangamer Wrote: [ -> ]Delete your whole public_html folder

Download mybb

Install manual

Cannot do.
Download latest mybb

and upload archive folder again
(2012-09-26, 03:14 PM)Marks-Mans Wrote: [ -> ]Download latest mybb

and upload archive folder again

tryed didnt work put chmod to 777 then got a webmaster error

BUMPp

Need support

Bump still looking for support
(2012-09-25, 02:41 PM)xStefan Wrote: [ -> ]Hello when i click on my archive i just get a blank white screen maybe its a chmod issue does anyone know why it is

link

http://basslineforum.com/archive/index.php
hi
this was also my problem.

i contacted with my host supports and they found what is the problem. they say archive scripts needs exec function and it was in disable_function.


many thanx iranserver.com supports!
Windows server?
(2012-10-01, 09:05 AM)mahdy2021 Wrote: [ -> ]
(2012-09-25, 02:41 PM)xStefan Wrote: [ -> ]Hello when i click on my archive i just get a blank white screen maybe its a chmod issue does anyone know why it is

link

http://basslineforum.com/archive/index.php
hi
this was also my problem.

i contacted with my host supports and they found what is the problem. they say archive scripts needs exec function and it was in disable_function.


many thanx iranserver.com supports!

Could you elaborate what you exactly did to solve your problem?
(2012-10-02, 12:59 AM)kamz89 Wrote: [ -> ]Could you elaborate what you exactly did to solve your problem?
I did nothing except contacting my host support. they say archive scripts needs a php function called exec to execute and it was disabled.

When they enabled it, the white page problem solved.
I just confirmed with my hosting and they said that the exec is disabled. So I believe you are right and the problem should be resolved when exec is enabled.
It's probably this code in archive/global.php:

if($uptime = @exec('uptime'))

Replace with if(0) or remove/comment the entire block.

If you want to get fancy, http://php.net/manual/en/function.sys-getloadavg.php

MyBB itself does the same exec, but unlike the archive mode, the main site checks if the exec function is blacklisted first before trying to execute it. It seems @ is not enough for blacklisted functions...
(2012-10-03, 03:05 AM)kamz89 Wrote: [ -> ]I just confirmed with my hosting and they said that the exec is disabled. So I believe you are right and the problem should be resolved when exec is enabled.

Yep host sorted it for me problem solved
Pages: 1 2