• I am not able to connect to my “wp-admin” page .. https://www.me-ensemblo.com/wp-admin this is the URL and it gives me error as

    This webpage has a redirect loop
    
    The webpage at https://me-ensemblo.com/wp-admin/ has resulted in too many redirects.
    Clearing your cookies for this site or allowing third-party cookies may fix the problem.
    If not, it is possibly a server configuration issue and not a problem with your computer.

    I am very new in php coding part so please help me out of this.

    Regards,
    Sagar Kakde

Viewing 12 replies - 1 through 12 (of 12 total)
  • might be a plugin conflict, sftp into your site and temporarily delete the contents of the plugin directory

    Sometimes deleting by accident a directive in the rewrite rules is the trouble. Check your .htaccess for any directive missing.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Notice how www goes to non-www?

    Betcha when you set up Multisite you had a miss-match between https://www.domain.com and domain.com in your home and site URLs.

    Start over. Change both URLs to be the same.

    Thread Starter skkakde

    (@skkakde)

    @blackpenpress I renamed the plugins folder but that doesn’t work for me…

    Thread Starter skkakde

    (@skkakde)

    #Jesús Franco My .htaccess file content is

    # 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

    what need to add / modify in it ?

    Thread Starter skkakde

    (@skkakde)

    @ipstenu where I need to make this changes ?

    Thread Starter skkakde

    (@skkakde)

    I need to tell you that my site was hacked link and I somehow recover my site by just replacing index.php and wp-load.php

    After this only I am not able to connect to https://www.me-ensemblo.com/wp-admin.

    I tried renaming plugins folder, and also provided my .htaccess file, please help me guys how can I recover this problem.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    How new is this Multisite?

    Thread Starter skkakde

    (@skkakde)

    Previously I had multisite but now this one is the fresh installation and contains only one website but still it gives me this above error.

    The .htaccess file should be:
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    According to the installation instructions but I am having problems with it myself.

    Thread Starter skkakde

    (@skkakde)

    @gsojourner your piece of code gives me this error

    Internal Server Error
    
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    
    More information about this error may be available in the server error log.
    
    Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
    
    Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at me-ensemblo.com Port 80
    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Previously I had multisite but now this one is the fresh installation and contains only one website but still it gives me this above error.

    How new is that one website? I ask becuase it’s usually easier to scrap and start over, making sure you have your home and site URLs as domain.com (instead of https://www.domain.com). Usually this happens when you force www in, or have a mis-match.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Not able to connect to wp-admin page’ is closed to new replies.