• I deployed a site to a server. Now everyday the htaccess file changes and blocks access to the admin section. I’m 90% positive it’s the hosting company, but I would like to get some feedback to confirm

    Is it possible that any of the following could generate a HTAccess file that blocks access?

    These are the plugins I’m running :
    Akismet Anti-Spam
    All-in-One WP Migration
    Breadcrumb NavXT
    Contact Form 7
    Duplicator
    Easy Forms for MailChimp
    Easy Google Fonts
    Google Analytics Dashboard for WP (GADWP)
    Google XML Sitemaps
    Hello Dolly
    Metadata SEO
    One Click Demo Import
    Page Builder by SiteOrigin
    Post Reader
    SiteOrigin Widgets Bundle
    TemplatesNext ToolKit
    TF Random Numbers

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @napalmx37

    If you are not sure with the .htaccess issue caused by plug-ins or not then you can just rename your plug-in folder and then check you site with your desired permalink/htaccess settings. if it works fine then active plug-ins one by one in order you need the must to less and check your site after activation of each plug-in. If you find the plug-in which cause this issue then let me know.

    Also you can try with .htaccess file permission. To does that just set your desire .htaccess setting and after that change permission to 644. so no other could change ??

    Hi,
    I also think the problem can be in the .htaccess file. If it’s generated automatically by WordPress and you haven’t edited it, that may be the problem.
    Here is how it should looks like:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    	# WP Maximum Execution Time Exceeded
    	<IfModule mod_php5.c>
    	
        php_value upload_max_filesize 1024M
    	php_value post_max_size 2048M
    	php_value max_input_time 3000
    
    	php_value max_execution_time 3000
    
    	</IfModule>

    Hope that will help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘HTAccess issue’ is closed to new replies.