magefix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bad redirects on Mobile devicesHello, there are still visible malicious code inside the homepage. Best thing to do is to rebuild the core files, review the installed plugins, themes & current users with admin privileges.
Also, it is important to review the string inside the tdw-css-placeholder section – check Newspaper CSS & JS codes.
Forum: Everything else WordPress
In reply to: I want to change a page url, but I cannot find it in Pages.From your dashboard, go to Settings → Permalinks & click “Save Changes”. This may help.
If you can work with phpMyAdmin, then you may be able to manually find & change the “laundry-basket-series” slug and try & save your original post. The slug is stored inside “wp_posts” posts table in the column “post_name”. Backup the database first.
Another solution would be to work with a Slugs Manager plugin. Good luck!
Forum: Fixing WordPress
In reply to: Proper way to replace an imageTo maintain the exact location, you’ll need to use FTP or file manager tool, locate the image & replace it with something else. If you’re not getting the updated image, add “?” at the end – this way you’ll bypass the server cache.
Forum: Fixing WordPress
In reply to: Entry processes faults, high resource usageTry something else, hide the wp-login.php page. For this purpose you may use the “WPS Hide Login” plugin. Often the login page is abused by bots. Also, double-check if the WP-Cron is turned off, you’ll need this line inside the wp-config.php file. Good luck!
define('DISABLE_WP_CRON', true);Forum: Installing WordPress
In reply to: Change admin emailHello, Login on cPanel and open phpMyAdmin, locate the corresponding database, and edit the “admin_email” field inside wp_options table. https://www.greengeeks.com/tutorials/change-admin-email-address-in-wordpress/ – look for How to Change the Admin Email without Confirmation in the Database
Forum: Everything else WordPress
In reply to: I want to change a page url, but I cannot find it in Pages.After you login as administrator, go to https://igreenside.com/laundry-basket-series-2/ & hit the “Edit Page” link. Then you may edit the Permalink from “laundry-basket-series-2” to “laundry-basket-series”. If “laundry-basket-series” is not available, try “greenside-laundry-basket-series”.
Forum: Networking WordPress
In reply to: Access WP from local IPTo bypass Cloudflare, you’ll need to edit your local hosts file & point the domain directly to the server’s IP address: https://www.hostinger.com/tutorials/how-to-edit-hosts-file
First, you’ll need access to the current database to export data so it’s important to address the “Error establishing a database connection” error. What’s your site URL?
The following PNG file should be optimized /wp-content/uploads/2024/01/AfriClan-Banner.png since it’s almost 2MB in size. Try WebP instead. I haven’t noticed any other display issues.
Forum: Fixing WordPress
In reply to: broken woocommerceHi there, start by getting more info about the internal server error. Switch the website to the debugging mode state & review the debug.log file in the wp-content directory: https://ww.wp.xz.cn/documentation/article/debugging-in-wordpress/
Forum: Fixing WordPress
In reply to: I need help identifying the source of & removing malware?Do you have any neighbor sites in the same account? If that’s the case, each site must be cleaned & isolated.
Restoring the visible modified files will help but it’s not sufficient. Many infected files go undetected by malware scanners.Forum: Fixing WordPress
In reply to: Cannot log in to administrators dashboardMake sure you’re editing the right database & pay attention to the table prefix. Table prefix and database details needs to match wp-config.php settings.
Forum: Everything else WordPress
In reply to: Spam Orders (2023)Hi! Dealing with fake orders is tricky, you could get the IP info & block the entire network. https://ipinfo.io/
Download IP address lists grouped by network provider (ASN) https://github.com/ipverse/asn-ip or https://www.maxmind.com/en/accounts/current/geoip/downloads
How to Block IP Address with .htaccess https://htaccessbook.com/block-ip-address/
Forum: Fixing WordPress
In reply to: WordPress malware security issuesAfter you save your main .htaccess file reset its permission to 444. Look for any suspicious PHP files inside the /uploads/ folder. Review the cPanel cron jobs & get the latest plugins and theme versions from a reliable source.
Forum: Fixing WordPress
In reply to: WordPress malware security issuesBefore installing a security plugin perform a site backup, starting with the database, wp-config file, plugins, themes & uploads folder.
Try to get a scan report from Hostgator and review each site component manually – plugins, themes & core files. Update everything, then use Wordfence.
To prevent hackers from getting in the dashboard, add the following code at the top of your .htaccess file:
<Files wp-login.php> order deny,allow Deny from all # whitelist Your own IP address allow from xx.xxx.xx.xx </Files>