Liew Cheon-Fong
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost posts after moving domain hostI think you mean wordpress.com, the WordPress hosting service.
here is wordpress.org, the WordPress open source softwareI am not aware of the CSS classes causing image problems.
Have you test using default theme with no active plugins?
Forum: Fixing WordPress
In reply to: My website is a plain wordpress site after migrationhave you set the correct database settings in the wp-config.php file?
Forum: Fixing WordPress
In reply to: Cant do external linkingwhat is your website url?
have you solve it? the page is not found.
mmm.. here is how the things work:
– htaccess rules will be checked first before visitor reach your web application level (WordPress)
– if an IP address is blocked at htaccess, then it will never reach your website, thus does not see the password protected page.
In order to reach password protected page, an IP address must not be blocked by htaccess
have I missed anything?
Is it only from the health report or do you encounter ‘actual issues’ with the website?
Forum: Fixing WordPress
In reply to: Images not ImportingI recommend WP All Export/Import plugin for better export and import
sounds like you have already import Squarespace posts and images into WordPress but with errors. Could you describe the issues in details? What is causing your blog posts to break? What is the “manual adjustment” need to make to the images?
if you set whitelist in htaccess, then only the whitelisted IP addresses could access your website. Visitors not in whitelist are blocked at server level before they reach your website (WordPress).
You can set blacklist instead to block the bad IP addresses. This will allowed the not blacklist IP addresses to access your password protected pages.
Alternatively, instead of hard code IP addresses in .htaccess file, you could use a WordPress security plugin for anti brute force.
Forum: Everything else WordPress
In reply to: Combine CDN with off-loadingyou could not optimise the images when they are hosted on other image hosting service like Flickr. Most 3rd party image hosting services already have CDN.
The plugins you mention are for local host images. They do not support 3rd party hosted images.
Alternatively, you use WP Offload Media to host images on cloud storage (like AWS S3) and uses AWS Cloudfront CDN.
By the way, I do not recommend to use free image hosting service to host your website images. 3rd party service provider could change at any time and breaks your website immediately.
Forum: Fixing WordPress
In reply to: WordPress site is flipping to IPwhat is your website url?
Forum: Fixing WordPress
In reply to: UTC time incorrectNot related to WordPress. Could be an incorrect server time. Contact your hosting provider for support
Forum: Networking WordPress
In reply to: Multisite domain mapping but separate cpanels for emailsyou can set the web server (A record) and mail server (MX record) location in domain’s DNS records.
Forum: Everything else WordPress
In reply to: Unexpected Auto-Generated Number of Responsive Imagesthe additional thumbnail sizes could be set by your theme
WordPress 5.3 and later will auto resize large image to max 2560px. You can disable it by adding this in theme’s function.php:
add_filter( 'big_image_size_threshold', '__return_false' );