najmul0
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Fixing WordPress
In reply to: I’m missing posts which appear on the websiteStep 1: Refresh Permalinks (Most Common Fix)
Sometimes, the permalink structure or
.htaccessrules get stuck during migration, causing pages to render on the frontend even if they aren’t loading properly in the dashboard.- Go to your WordPress Dashboard.
- Navigate to Settings > Permalinks.
- Do not change anything, simply scroll to the bottom and click Save Changes twice. This flushes and refreshes your URL rewrite rules.
Step 2: Check for a Child Page or Slug Conflict
In WordPress, a URL like
/premises/267-old-brompton-road-graham-smith/means it could be a child page under the main “Premises” page.- Go to Pages > All Pages.
- Look closely at the hierarchy under the main Premises page, or use the search bar at the top right to type
267-oldorGraham Smith. - Check your Trash folder as well, in case it was accidentally deleted during the migration.
Step 3: Search Directly in the Database (phpMyAdmin)
If the page is completely missing from your WordPress dashboard and FileZilla, it might be hanging in the database tables.
- Log in to your hosting control panel (cPanel, hPanel, etc.) and open phpMyAdmin.
- Select your website’s database.
- Click on the
wp_poststable (note: your table prefix might be different, likewp_3g7_posts). - Click on the Search tab at the top.
- In the
post_namefield, type267-old-brompton-road-graham-smithand click Go.- If it appears here: Check its
post_status. If it saysdraft,pending, ortrash, change it topublish. - If it does not appear here: It means the page data is not in your current database.
- If it appears here: Check its
Step 4: Clear Server and Browser Cache
Since you just migrated from WordPress.com to a standalone host, old cached versions of the site might still be showing up.
- Hosting/CDN Cache: If you use Cloudflare or a caching plugin (like LiteSpeed, WP Rocket), go to your settings and click Purge All Cache.
- Browser Cache: Open the link in an Incognito / Private Window to see if the page actually still exists or if it’s just your browser showing an old cached copy.
Viewing 1 replies (of 1 total)