Forum Replies Created

Viewing 8 replies - 211 through 218 (of 218 total)
  • This issue could been cause because one of the following:

    1- Apparently the WordPress is trying to finish the update but it can’t access the upgrade.php file. In this case try to check if the file is there or if it is corrupted, then try to replace it for a new functional file.

    2- A plugin or your main theme could have been causing a conflict. In this case try to rename the plugins folder and/or or main theme folder in wp-content.

    The log message says “Valid response received” and the response code in the JSON object is 200, which is usually a response for a success request. I think it is not an error. Note that the docs for WP_Community_Events::maybe_log_events_response() says “All responses are logged when debugging, even if they’re not WP_Errors”. All responses are logged when WP_DEBUG_LOG is on.

    Hello Dora.
    This issue could been cause because one of the following:

    1- Apparently the WordPress is trying to finish the update but it can’t access the upgrade.php file. In this case try to check if the file is there or if it is corrupted, then try to replace it for a new functional file.

    2- A plugin or your main theme could have been causing a conflict. In this case try to rename the plugins folder and/or or main theme folder in wp-content.

    Hello Carlos.
    Do your proxy configuration section in wp-config.php look like that:

    define(‘WP_PROXY_HOST’, ‘proxyhost’);
    define(‘WP_PROXY_PORT’, ‘1234’);
    define(‘WP_PROXY_USERNAME’, ‘user’);
    define(‘WP_PROXY_PASSWORD’, ‘pass’);
    define(‘WP_PROXY_BYPASS_HOSTS’, ‘localhost’);

    Which errors are showing up to you?

    Are you tipping these numbers manually and they’re changing when the Website loads or they’re a part of some kind of an ordered list?

    Have you tried to do that:
    1- Make a complete backup of your FTP WordPress files(All of it).
    2- Delete it from the FTP Server.
    3- Do a fresh install using the version.
    4- Copy and paste the backup files into this new installation replacing the new files with your backup.
    5- Log in in the Wp-admin and reinstall your old theme (all of the rest will be there).

    Forum: Fixing WordPress
    In reply to: URL of media files

    This “/site/x” folder setup is an automatic setup from WordPress Multisite.
    You can try a workaround with the following steps.
    1- Make a backup of your functions.php file.
    2- Edit it and place this code:

    function wpse_147750_upload_dir( $dirs ) {
    $dirs[‘baseurl’] = network_site_url( ‘/wp-content/uploads’ );
    $dirs[‘basedir’] = ABSPATH . ‘wp-content/uploads’;
    $dirs[‘path’] = $dirs[‘basedir’] . $dirs[‘subdir’];
    $dirs[‘url’] = $dirs[‘baseurl’] . $dirs[‘subdir’];

    return $dirs;
    }

    add_filter( ‘upload_dir’, ‘wpse_147750_upload_dir’ );

    After that the new upload files will get back to the old pattern.
    Try those and tell me about the result.

    Olá Leonardo.
    Tente usar esse código css via op??o Aparência>Tema>Personalizar>CSS Adicional.

    top-header{
    position: fixed;
    z-index: 99;
    }

Viewing 8 replies - 211 through 218 (of 218 total)