• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Blank page after server migration

Status
Not open for further replies.

sukruplus

Chevereto Member
hello there,

I have just migrated to a new server, as far as i know i configured the server like previous one. but the result is blank page


here you can see
http://xterest.com/

is there a way to find out where the exact problem is ?
 
Check the server error log, or you can go to app/loader.php and bellow this:

PHP:
    // Error reporting by DB config
    if(Settings::get('error_reporting') === false) {
        error_reporting(0);
    }

add this:
PHP:
error_reporting(E_ALL & ~E_NOTICE);
 
Last edited:
Hello again,

thanks for the help,

bow i got this error msg;

Warning: uksort() expects parameter 2 to be a valid callback, no array or string given in /home/pin/public_html/lib/G/functions.php on line 519
 
Disable eAccelerator. This is a known issue of PHP 5.4 and eAccelerator which by the way is completely deprecated and no one should use it.
 
Status
Not open for further replies.
Back
Top