sayedul
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Advertize It] Posts below comments doesn't work after disqusPlease let me know if the alternative approach works.
Thanks.
Forum: Fixing WordPress
In reply to: 404 error after logging into WordPressTry deleting and reinstalling wordpress again
Forum: Fixing WordPress
In reply to: Error Establishing database connectionWell I’m not an expert but see if that’s come to any help:
http://wikkawiki.org/CharsetNotSupportedWorkaround
http://www.tinywebgallery.com/forum/web-photo-gallery-support-f1/errors-t3267.htmlConclusion: Setting the default_charset in php.ini (default_charset = “utf-8”) might solve the problem
Forum: Fixing WordPress
In reply to: permalink redirect via htaccessThanks for your reply. However old url is not redirecting to the original post, but redirecting to the homepage. Here’s an example:
Old URL: http://primenews.uk/en/2015/02/07/delhi-votes-test-modi/
New URL after changing permalink: http://primenews.uk/en/?p=2351my .htaccess in /pubic/en/
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^old-slug$ http://primenews.uk/en/new-slug [L,R=301]
RewriteBase /en/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /en/index.php [L]
</IfModule># END WordPress