• I have copied a website to another folder named ‘beta’. I have copied the database for ‘beta’ website and changed the links. The website is showing. The problem is that the page contents are showing in the admin panel but are not showing in the website front end. Please give me some solutions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    How does your permalink rewrite code included in your .htaccess file look like?

    Thread Starter Alolika

    (@adgpta)

    The codes of .htacces file are:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /beta/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /beta/index.php [L]
    </IfModule>

    # END WordPress

    Moderator t-p

    (@t-p)

    That seems to be okay.

    Have you tried:
    – Flushing any caching plugins you might be running, as well as server and/or browser caches. Also, any op cache or content network cache, as well as Cloudflare, clear those caches.
    – deactivating ALL (yes all) plugins temporarily to see if this resolves the problem (plugin functions can interfere). If this works, re-activate them individually (one-by-one) to find the problematic plugin(s).
    resetting the plugins folder by FTP.
    – switching to the unedited default Theme (Twenty Sixteen, etc.) for a moment using the WP dashboard to rule out any theme-specific issue (theme functions can interfere like plugins).

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘page contents are showing in the admin panel but are not showing in the website’ is closed to new replies.