• Resolved tizianopitisci

    (@tizianopitisci)


    Hello, I’m tring to install wordpress but nothing happens: the only thing you see is a blank page. I’ve installed wordpress several times without problems. But since I’ve changed webhost (which requieres to put all file in a folder called public_html ) I’m having troubles…

    Would you help me? Thanks…

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter tizianopitisci

    (@tizianopitisci)

    Some extra information… as I edited config.php turning the line

    define(‘WP_DEBUG’, false);
    in
    define(‘WP_DEBUG’, true);

    I’ve got the following error message from the server:

    Fatal error: Out of memory (allocated 21233664) (tried to allocate 71 bytes) in /home/sitename/public_html/wp-includes/pomo/streams.php on line 86

    Does it make any sense?

    frodoh

    (@frodoh)

    Yes, your new server has memory limits that you have exceeded. A quick fix would be:

    <?php

    ini_set(‘memory_limit’, ’64M’);

    ?>

    frodoh

    (@frodoh)

    Are you still experiencing the blank page error? Wasn’t sure if you solved that yet or not.

    Thread Starter tizianopitisci

    (@tizianopitisci)

    Hello Frodoh, in which file should I put that code?
    Thanks

    frodoh

    (@frodoh)

    I apologize, that probably would have helped. wp-config.php should be fine.

    Thread Starter tizianopitisci

    (@tizianopitisci)

    Thank you but still have the same problem… see http://www.sgpp.it

    Thread Starter tizianopitisci

    (@tizianopitisci)

    for diagnostic purpuse, I’ve also created a tester.php file with this code:

    <?
    ini_set(‘display_errors’,’1′);
    ini_set(‘display_startup_errors’,’1′);
    error_reporting (E_ALL);include(‘index.php’);
    ?>

    and the result is this message:

    Warning: Cannot modify header information – headers already sent by (output started at /home/sitename/public_html/tester.php:9) in /home/mm5061/public_html/wp-includes/pluggable.php on line 866

    frodoh

    (@frodoh)

    Try:

    <?php

    ini_set(‘memory_limit’, ‘128M’);

    ?>

    Also, can you post the source code, preferably line 866 of pluggable.php ?

    Thread Starter tizianopitisci

    (@tizianopitisci)

    I’ve tried with 128M but it didn’t work.

    source code, line 866: header(“Location: $location”, true, $status);

    Thread Starter tizianopitisci

    (@tizianopitisci)

    Hello Grodoh, as you said the problem was the php memory limit of my new server. Now they’ve changed the settings (think 64 M) and everything goes well. Thank’s for the support.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘blank page after installation’ is closed to new replies.