• Проблема такого рода, наша компания год назад заказала сайт, его разработали на базе движка WorldPress, примерно 2 месяца назад, сайт тупо перестал грузиться. Загружается в браузере чистый лист… Ни каких ошибок не выдает, php на сервере настроено для полного отображения ошибок, но ошибок никаких нет, подскажите пожалуйста в какую сторону нужно копать, какие файлы проверить… Что вообще может быть понять не могу.
    При заливке сайта он ругался на подключение к бд, ошибки эти поправил, прописал в конфиге настройки базы и т.д. Ошибка исчезла. Сайт перестал работать до переноса его на другой хостинг сервер.

Просмотр 9 ответов — с 1 по 9 (всего 9)
  • Ни каких ошибок не выдает, php на сервере настроено для полного отображения ошибок, но ошибок никаких нет

    Обратитесь к
    ЧАВО или смотрите логи ошибок (где находятся уточните у хостера).

    Я же четко выразился «отображение ошибок включено».
    + ко всему этому все сделал что написано в чаво…

    [root@euro-gw logs]# cat /etc/php.ini | grep error
    ; much more verbose when it comes to errors. We recommending using the
    ; development version only in development environments as errors shown to
    ; display_errors
    ; display_startup_errors
    ; error_reporting
    ; html_errors
    ; log_errors
    ; track_errors
    ; This directive informs PHP of which errors, warnings and notices you would like
    ; directive is through the use of the error level constants and bitwise
    ; operators. The error level constants are below here for convenience as well as
    ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
    ; recommend error reporting setting. Your production server shouldn't be wasting
    ; E_ALL             - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
    ; E_ERROR           - fatal run-time errors
    ; E_RECOVERABLE_ERROR  - almost fatal run-time errors
    ; E_WARNING         - run-time warnings (non-fatal errors)
    ; E_PARSE           - compile-time parse errors
    ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
    ; E_COMPILE_ERROR   - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR      - user-generated error message
    ;   E_ALL & ~E_NOTICE  (Show all errors, except for notices and coding standards warnings.)
    ;   E_ALL & ~E_NOTICE | E_STRICT  (Show all errors, except for notices)
    ;   E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR  (Show only errors)
    ;   E_ALL | E_STRICT  (Show all errors, warnings and notices including coding standards.)
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting
    ;error_reporting = E_ALL & ~E_DEPRECATED
    error_reporting = E_ALL
    ; This directive controls whether or not and where PHP will output errors,
    ; which is triggering the error, sensitive information could potentially leak
    ; It's recommended that errors be logged on production servers rather than
    ; having the errors sent to STDOUT.
    ;   Off = Do not display any errors
    ;   stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
    ;   On or stdout = Display errors to STDOUT
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors
    display_errors = on
    ; The display of errors which occur during PHP's startup sequence are handled
    ; separately from display_errors. PHP's default behavior is to suppress those
    ; errors from clients. Turning the display of startup errors on can be useful in
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors
    display_startup_errors = On
    ; Besides displaying errors, PHP can also log errors to locations such as a
    ; server-specific log, STDERR, or a location specified by the error_log
    ; directive found below. While errors should not be displayed on productions
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.log-errors
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.log-errors-max-len
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.ignore-repeated-errors
    ignore_repeated_errors = Off
    ; is On you will not log errors with repeated messages from different files or
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.ignore-repeated-source
    ; error reporting includes E_WARNING in the allowed list
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.report-memleaks
    ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.track-errors
    track_errors = Off
    ; Turn off normal error reporting and emit XML-RPC error XML
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.xmlrpc-errors
    ;xmlrpc_errors = 0
    ;xmlrpc_error_number = 0
    ; When PHP displays or logs an error, it has the capability of inserting html
    ; links to documentation related to that error. This directive controls whether
    ; those HTML links appear in error messages or not. For performance and security
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.html-errors
    html_errors = Off
    ; If html_errors is set On PHP produces clickable error messages that direct
    ; to a page describing the error or function causing the error in detail.
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.docref-root
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.docref-ext
    ; String to output before an error message. PHP's default behavior is to leave
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-prepend-string
    ;error_prepend_string = "<font color=#ff0000>"
    ; String to output after an error message. PHP's default behavior is to leave
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-append-string
    ;error_append_string = "</font>"
    ; Log errors to specified file. PHP's default behavior is to leave this value
    ; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-log
    ;error_log = php_errors.log
    ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
    ;error_log = syslog
    ; used and debugging errors caused by this can be difficult to track down.
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Eval the expression with current error_reporting().  Set to true if you want
    ; error_reporting(0) around the eval().

    В логах ничего странного нет, ругается только на favicon.ico

    [root@euro-gw logs]# cat access_log
    212.0.88.xx - - [21/Mar/2013:11:03:53 +0900] "GET / HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:03:53 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    212.0.88.xx - - [21/Mar/2013:11:03:53 +0900] "GET / HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:03:53 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    212.0.88.xx - - [21/Mar/2013:11:03:53 +0900] "GET / HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET / HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET / HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET / HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:03:54 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    212.0.88.xx - - [21/Mar/2013:11:04:28 +0900] "GET /index.php HTTP/1.1" 200 44
    212.0.88.xx - - [21/Mar/2013:11:04:29 +0900] "GET /favicon.ico HTTP/1.1" 404 292
    [root@euro-gw logs]# cat error_log
    [Thu Mar 21 11:03:53 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico
    [Thu Mar 21 11:03:53 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico
    [Thu Mar 21 11:03:54 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico
    [Thu Mar 21 11:03:54 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico
    [Thu Mar 21 11:03:54 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico
    [Thu Mar 21 11:03:54 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico
    [Thu Mar 21 11:04:29 2013] [error] [client 212.0.88.xx] File does not exist: /var/www/html/site_old/favicon.ico

    А если тему текущую сменить напрямую через базу?

    Atrax

    (@atrax)

    Ethical engineer

    Я же четко выразился

    А помягче — никак?
    Вам тут кто-то денег должен, что ли?

    Что за бред, по теме разговор или ругань? В своем сообщение я не передавал ни каких негативных мыслей и тем более грубости.

    Я изложил возможный мне вопрос в первом посте, написал цитирую еще раз «отображение ошибок включено». Зачем меня тыкать носом в ЧАВО в котором указано то же самое…

    Помощь не нужна уже, сам нашел причину…. А Atrax просто не знает ответа на заданный вопрос поэтому и насрал тут в теме.

    Atrax

    (@atrax)

    Ethical engineer

    насрал тут

    Правило 19.
    До свиданья.

    Пора реально принимать меры. Начинается весеннее обострение, что ли?

    Я же четко выразился «отображение ошибок включено».

    Вывод ошибок в браузер может подавляться и самим скриптом, что в данном случае и делает WordPress, включить отображение ошибок можно изменив константу WP_DEBUG, что и указано в ЧАВО, который вы смело проигнорировали и еще успели нахамить..

    > А Atrax просто не знает ответа на заданный вопрос поэтому и насрал тут в теме. // 😀

    > Начинается весеннее обострение, что ли?

    да-да, а завтра ещё и каникулы у школьников начинаются…

    простите за оффтоп

Просмотр 9 ответов — с 1 по 9 (всего 9)
  • Тема «Непонятная остановка работы сайта.» закрыта для новых ответов.