• Resolved conualfy

    (@conualfy)


    I’ve just debugged a site and I could not find any clear problem and none of the known solutions worked.

    The site is running on a server managed with Kloxo (Open Source version of cPanel/Plesk).

    What happened? I had the white page of death everywhere, the website was completely broken.

    Why?
    I knew that Kloxo is adding some lines to the .htaccess file, but until now it did not break the sites. This time it did. I guess it has something to do with the server specific configurations.

    The solution was to delete those lines of code and leave only the original .htaccess insertions wordpress wrote there.

    ###Start Kloxo PHP config Area
    ###Please Don't edit these comments or the content in between. kloxo uses this to recognize the lines it writes to the the file. If the above line is corrupted, it may fail to recognize them, leading to multiple lines.
    <Ifmodule mod_php4.c>
    php_value error_log /home/florin.arjocu/__processed_stats/white-wolf-club.org.phplog
    php_value upload_max_filesize __lx__upload_max_filesize
    php_value max_execution_time  __lx__max_execution_time_flag
    php_value max_input_time  __lx__max_input_time_flag
    php_value memory_limit  __lx__memory_limit_flag
    php_value post_max_size  __lx__post_max_size_flag
    php_flag register_globals  off
    php_flag display_errors  off
    php_flag file_uploads  on
    php_flag log_errors  off
    php_flag output_buffering  off
    php_flag register_argc_argv  on
    php_flag magic_quotes_gpc   off
    php_flag magic_quotes_runtime  off
    php_flag magic_quotes_sybase  off
    php_flag mysql.allow_persistent  off
    php_flag register_long_arrays  on
    php_flag allow_url_fopen  on
    php_flag cgi.force_redirect  on
    php_flag enable_dl  on
    </Ifmodule>
    <Ifmodule mod_php5.c>
    php_value error_log /home/florin.arjocu/__processed_stats/white-wolf-club.org.phplog
    php_value upload_max_filesize __lx__upload_max_filesize
    php_value max_execution_time  __lx__max_execution_time_flag
    php_value max_input_time  __lx__max_input_time_flag
    php_value memory_limit  __lx__memory_limit_flag
    php_value post_max_size  __lx__post_max_size_flag
    php_flag register_globals  off
    php_flag display_errors  off
    php_flag file_uploads  on
    php_flag log_errors  off
    php_flag output_buffering  off
    php_flag register_argc_argv  on
    php_flag magic_quotes_gpc   off
    php_flag magic_quotes_runtime  off
    php_flag magic_quotes_sybase  off
    php_flag mysql.allow_persistent  off
    php_flag register_long_arrays  on
    php_flag allow_url_fopen  on
    php_flag cgi.force_redirect  on
    php_flag enable_dl  on
    </Ifmodule>
    
    ###End Kloxo PHP config Area
Viewing 1 replies (of 1 total)
  • Thread Starter conualfy

    (@conualfy)

    The problematic line is this one (delete it in both php4 and php5 sections):

    php_value memory_limit  __lx__memory_limit_flag

Viewing 1 replies (of 1 total)
  • The topic ‘How to fix some white pages of death on Kloxo control panel’ is closed to new replies.