RoseHosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Weirds folders in public_htmlYou should ensure that you always use the latest updates for core, themes, and plugins, avoid nulled themes or plugins. Try and reset your wp database user password also and use strong passwords for all users.
Forum: Fixing WordPress
In reply to: Multiple Errors in Browser ConsoleYou should check the permissions in your WordPress directory. The common permissions for WordPress are 755 for directories and 644 for files. Also, the owner of the files and directories should be the same owner as for the PHP processes.
Forum: Fixing WordPress
In reply to: changes users password when admin editThis could be happening because of malware caused by an outdated plugin, theme, or WordPress instance.
You should try to clean your WordPress with a plugin called WordFence.
Forum: Installing WordPress
In reply to: Error establishing a database connectionDo you get the error when you are accessing the site via https://<domain/site>/wp-admin?
Please make sure that your database login credentials are correct. There are instances wherein you copy and paste the username/password and white spaces are included. Double check it on your wp-config.php.
If you are sure that your database credentials are correct. You can check if your database is not corrupted by adding the following line to your wp-config.php:
define( ‘WP_ALLOW_REPAIR’, true );
However, make sure you have a backup copy of the database before proceeding. Visit you site via https://<domain/site>/wp-admin/maint/repair.php
Press ‘Repair Database’ and wait for it to finish. Once finished, remove the added line.Forum: Fixing WordPress
In reply to: 403 error on trying to access wp-admin by server’s IP addressYou would want to check your webserver log file for more information about this.
Forum: Fixing WordPress
In reply to: Import WP Filesize settingsYou can try to increase the PHP “post_max_size” value.
Forum: Fixing WordPress
In reply to: my site is downIt seems that your domain was expired and you managed to renew it recently. You need to change the nameservers to the previous ones you had earlier.
Forum: Fixing WordPress
In reply to: WordPress site black screeningPlease check the configuration of your Responsive Lightbox & Gallery plugin, or try to disable it.
The problem most probably is caused by this plugin.Forum: Fixing WordPress
In reply to: CPU UsageYou should monitor and find out which process utilizes the most of your CPU. Depending on that you should install and configure Fail2ban for WordPress for wp-login.php and xmlrpc.php or activate caching (one of WordPress caching plugins, redis and memcached).
- This reply was modified 3 years, 11 months ago by RoseHosting.
Forum: Fixing WordPress
In reply to: Me and other admin can’t enter siteTry to ping the domain name for your blog from the command line while connected with VPN. There could be some connectivity issues (firewall or routing) with your VPN.
It depends on the VPN software that you use. Usually in Linux the logs are located in /var/log directory.
Forum: Fixing WordPress
In reply to: PHP error preventing me logging inEven if you are able to log in, you cannot upgrade PHP version there. I notice that you’re using cPanel, you need to log in to cPanel and choose the PHP version you want to upgrade to there. Ask your webhosting support to do this for you, if you cannot do it yourself.
Forum: Fixing WordPress
In reply to: PHP error preventing me logging inIt means your site is using PHP 5.6, you would want to upgrade your PHP version to at least version 7.2 to get this solved.
Forum: Fixing WordPress
In reply to: Nginx doesn’t show the 404 Error page of my themeFrom this line:
try_files $uri $uri/ =404;
Remove
=404
and restart the nginx service.Forum: Fixing WordPress
In reply to: fatal error wp get additional image sizes()You should check if the file wp-includes/media.php is modified by some code within your website. Usually malware modifies the WP core files, so you should scan your WordPress instance for malware.
Forum: Localhost Installs
In reply to: It seems to be a problem with your server permissionsIt seems that you have an issue with the permissions. Make sure that the process owner for the web-server and php has read and write permission for the files and read write and execute for the directories.