Mateus Getulio Vieira
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin/upgrade.php?_wp_http_referer=wp-adminThis 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.
- This reply was modified 7 years, 4 months ago by Mateus Getulio Vieira.
Forum: Fixing WordPress
In reply to: Debug daily message “maybe_log_events_response”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.
Forum: Fixing WordPress
In reply to: wordpress admin redirected to wp-admin/upgrade.php?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.
Forum: Networking WordPress
In reply to: configure wordpres localhost in intranet with a proxy serverHello 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?
- This reply was modified 7 years, 4 months ago by Mateus Getulio Vieira.
Forum: Fixing WordPress
In reply to: Numbering issue in wordpress blogAre 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?
Forum: Fixing WordPress
In reply to: Automatic Updating IssueHave 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).- This reply was modified 7 years, 4 months ago by Mateus Getulio Vieira.
- This reply was modified 7 years, 4 months ago by Mateus Getulio Vieira.
Forum: Fixing WordPress
In reply to: URL of media filesThis “/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.Forum: Fixing WordPress
In reply to: Menu Fixo tema IlldyOlá Leonardo.
Tente usar esse código css via op??o Aparência>Tema>Personalizar>CSS Adicional.top-header{
position: fixed;
z-index: 99;
}