• Rozwiązano spawnster

    (@spawnster)


    Witam. Laickie pytania:

    Wszystko działało ładnie i składnie, aż tu nagle przy logowaniu się porobiło:

    Cannot modify header information … wp-login.php on line 337
    Cannot modify header information … wp-login.php on line 349
    Cannot modify header information … wp-includes/pluggable.php on line 690 (tutaj w kodzie są jakieś ciasteczka)
    Cannot modify header information … wp-includes/pluggable.php on line 691
    Cannot modify header information … wp-includes/pluggable.php on line 692
    Cannot modify header information … wp-includes/pluggable.php on line 890

    if ( version_compare(phpversion(), '5.2.0', 'ge') ) {
    		setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
    		setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
    		setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, COOKIEPATH, COOKIE_DOMAIN, false, true);

    dla linii 690,691,692

    // This causes problems on IIS and some FastCGI setups
    		header("Location: $location", true, $status);

    a to powyżej dla linii 890

    na mój gust to coś nie tak z wtyczkami (nie wiem, brak aktualizacji czy wspólpracy?)

    Proszę Was o pomoc, jak to naprawić?

    Wcześniej był jeszcze błąd odnośnie wtyczki post star ratings, który rozwiązałem po laicku, mianowicie wywalając katalog z wtyczką.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Twórca wątku spawnster

    (@spawnster)

    Aha, dodam, że sprawdziłem czy nie mam pustych spacji <?php i po?> w w/w plikach …

    Twórca wątku spawnster

    (@spawnster)

    Ha – myślenie nie boli i znajomość anglickiego tyż nie: rozwiązanie:

    Reason and Solution :

    It is usually because there are spaces, new lines, or other garbage before an opening <?php tag or after a closing ?> tag, typically in wp-config.php. This could be true about some other file too, so please check the error message, as it will list the specific file name where the error occurred (see „Interpreting the Error Message” below). Replacing the faulty file with one from your most recent backup or one from a fresh WordPress download is your best bet, but if neither of those are an option, please follow the steps below.

    Just because you cannot see anything does not mean that PHP sees the same.

    1. Download the file mentioned in the error message.
    2. Open that file in a plain text editor (NOT MS Word or similar. Notepad or BBEdit are fine).
    3. Check that the very first characters are <?php
    4. Check that the very last characters are ?>

    To be sure about the end of the file, do this:

    1. Place the cursor between the ? and >
    2. Now press the DELETE key on your computer
    * Note to MAC users: The „DELETE” key on a PC deletes characters to the right of the cursor. That is the key noted here.
    3. Keep that key pressed
    4. For at least 15 seconds
    5. Now type > and
    6. save without pressing any other key at all.
    7. If you press another key, you will bring the problem back.

    Also check the encoding of the file. If the file is encoded as UTF-8 with BOM, the BOM is seen as a character which starts the output.

    Interpreting the Error Message:

    If the error message states: Warning: Cannot modify header information – headers already sent by (output started at /path/blog/wp-config.php:34) in /path/blog/wp-login.php on line 42, then the problem is at line #34 of wp-config.php, not line #42 of wp-login.php. In this scenario, line #42 of wp-login.php is the victim. It is being affected by the excess whitespace at line #34 of wp-config.php.

    If the error message states: Warning: Cannot modify header information – headers already sent by (output started at /path/wp-admin/admin-header.php:8) in /path/wp-admin/post.php on line 569, then the problem is at line #8 of admin-header.php, not line #569 of post.php. In this scenario, line #569 of post.php is the victim. It is being affected by the excess whitespace at line #8 of admin-header.php.

    Other issues that might cause that error:

    In case you’ve used the function: wp_redirect() or tried to use a header redirect after the header (or any content at all was sent) that error message will pop. Instead use javascript redirection if needed.

    Twórca wątku spawnster

    (@spawnster)

    Okazuje się, że patrzyłem nie na te linie gdzie trzeba: spacje niepotrzebne były, tylko trzeba było wiedzieć gdzie patrzeć

Viewing 3 replies - 1 through 3 (of 3 total)
  • Temat ‘Problemy z logowaniem i błędy’ jest zamknięty na nowe odpowiedzi.