Roopesh Jain
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Function.php not working = showing blankhello sebastian.graus@intropr.se
please delete extra spaces which is at last in function.php file.
not the whole code.
thankyou.
Forum: Fixing WordPress
In reply to: How to change permalinks without using the Dashboard???Please Make sure your .htaccess file is there in root directory of wordpress folder.
if no then create it and paste it in the root directory.and paste the below code in it.
# 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 WordPressthankyou
Forum: Fixing WordPress
In reply to: How to change permalinks without using the Dashboard???Hello flexomatic,
First of all please go to your database phpmyadmin.
then you can find table name “wp_options” click on this.then you can see a row with “option_name=permalink_structure”(you can find it in page number 2). you have to just edit the “option_value” field of “option_name=permalink_structure”.
you can edit by this :: “/%postname%” or “/%category%/%postname%”
or you can read more here about Permalinks :
http://codex.wordpress.org/Using_Permalinks
Thankyou