Viewing 15 replies - 1 through 15 (of 57 total)
  • Plugin Author Gunu

    (@grafcom)

    @sottise,

    where you installed WordPress – popandsoda.com/blog and/or popandsoda.com?

    Thread Starter sottise

    (@sottise)

    WordPress is installed under popandsoda.com/blog.

    Plugin Author Gunu

    (@grafcom)

    @sottise,

    in a clean approach.

    popandsoda.com/blog gives – popandsoda.com/fr/blog/
    Page is – This is somewhat embarrassing, isn’t it? It seems we can’t find what you’re looking for. Perhaps searching can help. –

    popandsoda.com gives popandsoda.com/en/ and a normal website

    how are your settings under – Settings – General – WordPress Address (URL) and Site Address (URL)

    What’s in your .htaccess files?

    Thread Starter sottise

    (@sottise)

    The fact that popandsoda.com/blog and popandsoda.com are the same is normal, as it’s configured under settings like you mentioned:
    Wordpress adress URL: popandsoda.com/blog
    and Site adress URL: popandsoda.com
    (If I remember well, I can’t check :/)

    The page: – This is somewhat embarrassing, isn’t it? It seems we can’t find what you’re looking for. Perhaps searching can help. –
    is a 404 page

    htaccess under www:

    SetEnv PHP_VER 5_TEST
    SetEnv REGISTER_GLOBALS 0
    
    # 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
    
    <Files .htaccess>
     order allow,deny
     deny from all
    </Files>

    htaccess under /blog :

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </IfModule>
    
    # END WordPress
    
    <Files wp-config.php>
     order allow,deny
     deny from all
    </Files>
    
    Options All -Indexes
    
    <Files .htaccess>
     order allow,deny
     deny from all
    </Files>
    Plugin Author Gunu

    (@grafcom)

    temporarily remove the .htaccess file from your root.

    Copy (not move!) The index.php file from your installation folder (blog) to the root of your domain and open it in a text editor and locate the following line at – require(‘./wp-blog-header.php’); – Then change this line to: require(‘/blog/wp-blog-header.php’); –

    See if this makes a difference.

    Also temporarily remove this from your .htaccess file in your blog folder

    <Files .htaccess>
     order allow,deny
     deny from all
    </Files>

    Thread Starter sottise

    (@sottise)

    Mmmmh, When I remove the .htaccess file from the root I have this error:

    When I type popandsoda.com:

    Not Found
    The requested URL /fr/ was not found on this server.

    or

    Not Found
    The requested URL /fr/blog/wp-login.php was not found on this server.

    (I’ve put the .htaccess back to root)

    I have also changed the index.php file + removed the lines from .htaccess but nothing changed :/

    By the way, there was an update of qtranslate-x recently, right?
    Because I really have the feeling that the problem starts when I’ve updated the plugin.

    Thread Starter sottise

    (@sottise)

    I see this in the new changelog (3.2.9 stable) – is it possible that the problem comes from one of those new features?

    – Performance: function convertURL now uses cached values of previously converted urls.
    – Feature: variable $url_info[‘set_cookie’] can be overridden via qtranslate_detect_language filter.
    – Improvement: function convertURL has been re-designed to take into account scheme, user, password and fragment correctly.

    Plugin Author Gunu

    (@grafcom)

    The requested URL /fr/ was not found on this server.

    Empty root with only index.php file where he gets that /fr/ from then?

    Try also the latest beta version, download here

    Plugin Author Gunu

    (@grafcom)

    Empty cache and cookies

    Thread Starter sottise

    (@sottise)

    The requested URL /fr/ was not found on this server.

    Empty root with only index.php file where he gets that /fr/ from then?

    That’s the question! The message appears after typing https://www.popandsoda.com and removing the index.php file (BUT the htaccess file was in place)…

    thanks for the link, I’ll try to install it via FTP.

    Plugin Author Gunu

    (@grafcom)

    remember, delete cache and cookies ??

    Thread Starter sottise

    (@sottise)

    ok, so:

    – I’ve installed the version you’ve linked (by nenaming qtranslate-x-master by qtranslate-x of course)
    – Cleaned cache and cookies
    – Tested on both firefox and chrome

    And still doesn’t work ??
    It still add /fr/ or /en/ before /blog/…

    Thread Starter sottise

    (@sottise)

    I did on both firefox and chrome :/

    Plugin Author Gunu

    (@grafcom)

    crazy ??

    Can you make your root, temporarily, completely empty?

    Thread Starter sottise

    (@sottise)

    what do you mean by empty? Removing both htaccess and index.php files ?

Viewing 15 replies - 1 through 15 (of 57 total)
  • The topic ‘Can't access to the admin anymore’ is closed to new replies.