Liew Cheon-Fong
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Prevent empty posts from publish.try to set higher priority?
https://developer.wordpress.org/reference/functions/add_action/
Forum: Fixing WordPress
In reply to: All non existing urls redirected to homepage instead of 404 pageHave you check .htaccess file for 404 redirect?
it also could be your hosting provider setting. Try to contact hosting support.
- This reply was modified 6 years, 6 months ago by Liew Cheon-Fong. Reason: correct the answer
Forum: Fixing WordPress
In reply to: URL not workingcan you shared some screenshots to help us understand the issue?
Forum: Fixing WordPress
In reply to: Can’t search, open or edit pluginsyou can manually upload plugin into /wp-content/plugins/ via FTP
Forum: Fixing WordPress
In reply to: Something causing crippling CPU spikeyes, blocking xmlrpc.php will help. Login attemps via xml-rpc is a common brute force attack.
Yes, turn off XMLRPC will prevent WP phone app mobile uploading.
Alternatively, you can try to use a security plugin that allows certain XMLRPC access. Ninjafirewall can block XMLRPC “system.multicall” method which often used in brute force attack while allowing app access.
Forum: Fixing WordPress
In reply to: Link nofollow@marcorroma could you share the plugin you found that do it? Thanks!
Forum: Fixing WordPress
In reply to: WordPress errorThe IP address appears to be Alibaba cloud. Have you turn off the server? because we could not access the website now
Forum: Fixing WordPress
In reply to: Can’t log into WP admintry to manually update WordPress
It seems related to an old bug https://core.trac.wordpress.org/attachment/ticket/37071/fix-wp-login-error.patch
Forum: Fixing WordPress
In reply to: Remove “continue reading”you need to edit some code in the theme’s functions.php (good idea to create a child theme)
References:
https://stackoverflow.com/questions/16717377/remove-continue-reading-from-posts-in-aggregator-siteForum: Fixing WordPress
In reply to: FB-button appears after updaterefer to your website source code,
https://www.lemaquis.nl/WP/wp-content/plugins/facebook-button-plugin/images/standard-facebook-ico.pngIt appears that you have the plugin “BestWebSoft Like & Share” (https://wordpress.org/plugins/facebook-button-plugin/). Try to deactivate it to remove the facebook button
Forum: Fixing WordPress
In reply to: Something causing crippling CPU spikebased on the plugin list, the Litespeed Cache could cause CPU spikes when it generates cached pages. Try to disable it and see if it solves the issue.
You can try to ask your hosting provider about the CPU spikes. They have access to the server log files for more information.
Forum: Fixing WordPress
In reply to: JSON / REST API loading issuedo you happen to have a security plugin that disables/block REST API?
Forum: Fixing WordPress
In reply to: Simple Query String Tracking?you can try a link tracking plugin
Forum: Developing with WordPress
In reply to: Can’t get WP-CLI’s db tools to work (with PhpStorm)try to set the mysqldump path for Windows
set PATH=%PATH%;\Path\to\mysqldump.exerefer: https://superuser.com/questions/692056/mysqldump-not-on-wamp-server
Forum: Developing with WordPress
In reply to: Custom search page issuejust a thought. Is the code for “read more” button is in the same loop of search result query?