KatarinaN
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can´t access WP login page after automatic upgradeYou were right. I contacted our provider and they solved it. There was an issue with our IP address. Server did not recognize it´s origin, so it denied us…
Thank you very much for your time and support.Forum: Fixing WordPress
In reply to: Can´t access WP login page after automatic upgrade.htaccess in the www_root:
# 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
Before re-downloading of WP (according to your advice above), there was .htaccess file also in the www_root/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
I have tryied to copy this file from backup in the www_root/blog, however the issue persists. So I deleted it and there is no .htaccess file in the www_root/blog currently.Forum: Fixing WordPress
In reply to: Can´t access WP login page after automatic upgradeadfrw (0664)
Forum: Fixing WordPress
In reply to: Can´t access WP login page after automatic upgradeI did it, however the issue persists … any other idea? Thanks in advance.
Forum: Plugins
In reply to: [qTranslate X] qTranslate-x – navigation menu not working properlyBeta version installed according to your direction. Some changes occured:
– when I switch among EN menu items, all links are correct except link to my blog. It redirects to http://www.mnovakphoto.com/blog/en/ (error 404). As you can see above, it was http://www.mnokaphoto.com/en/blog/en/ before.
– new issue is, when I switch language from SK blog (http://www.mnovakphoto.com/blog/) to EN it redirects to http://www.mnovakphoto.com/blog/en/ = error 404
Forum: Plugins
In reply to: [qTranslate X] qTranslate-x – navigation menu not working properlyChanges in .htaccess files done, however issue persist …
Forum: Plugins
In reply to: [qTranslate X] qTranslate-x – navigation menu not working properlyURL – http://www.mnovakphoto.com/
WP is installed in subfolder – http://www.mnovakphoto.com/blog/.htaccess in the www_root:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # 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 WordPressindex.php in the www_root:
<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template */ require('./blog/wp-blog-header.php');.htaccess in the www_root/blog:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPressindex.php in the www_root/blog:
<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template */ require( dirname( __FILE__ ) . '/wp-blog-header.php' );qTranslate-X settings:
– default language = Slovak
– Show displayed language prefix when content is … checked
– Use Pre-Path Mode … checked
– Hide URL of default language … checked