• Hi there,

    I just moved my weblog to a new server using this as a guide.

    Everything seems to be okay, but when I go to the new web address, I get a blank page. Nothing else – no warnings, errors, nothing. A blank page.

    Any thoughts as to what the problem might be?

    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • blank page usually means there’s a lower error hitting.

    I think the trick to see errors is to add something like the following to the top of index.php or whichever file you’re testing off of:

    error_reporting(E_ALL);

    There might be something else you can try — someone else will chime in, or visit the IRC chat…

    -d

    Thread Starter jarrett

    (@jarrett)

    Thanks for your response!

    I tried that, but I still don’t see any errors.

    More thoughts?

    – did you upload files as ASCII, not binary?
    – is this a new install, or a working site?

    If working site, the error reporting thing should work. Firas had posted these suggestions at one point:
    – ensure no spaces before or after the <?php ?> tags if you hand modified any files. if not that,
    – at the top of index.php, right after <?php opening code add:
    error_reporting(E_ALL ^ E_NOTICE);
    ini_set(“display_errors”,”1″);

    Don’t know if any of that rings a bell, or if the display_errors thing is the trick to show the errors…

    -d

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘moved to new server, blank page’ is closed to new replies.