amberleighturner
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Constant 404 errorsNevermind. I figured out what should go in the .htaccess file.
For future reference I put this:
# BEGIN WordPress <IfModule mod_rewrite.c> ErrorDocument 404 /index.php?error=404 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>Forum: Fixing WordPress
In reply to: How to exclude parent category name, but not child categories?It looks like it has worked!
Thanks!
Forum: Fixing WordPress
In reply to: How to Put WordPress Together Again?From what I remember it should be in the database. The database has all of your settings too. You can always import the dump and go into the admin panel and check.
Forum: Fixing WordPress
In reply to: How to Put WordPress Together Again?It’s quite easy. Hopefully this article will help you import your dumped database.
http://www.convert-in.com/import-mysql-dump.htm
WordPress also has a feature to import the WordPress generated backup too. This is found under tools in the admin panel.
http://codex.wordpress.org/Importing_Content#WordPress
I hope this helps!
Forum: Fixing WordPress
In reply to: How to log into admin without using a widgetThere are two ways.
You can add the
wp_loginout()anywhere you want on your site. See http://codex.wordpress.org/Function_Reference/wp_loginout for more info.Another simple way is just to bookmark the wp-admin directory associated with your WordPress install. If you installed WordPress in the root directory of your site, then simply go to yourdomain.com/wp-admin and it will present a login page.
I hope this helps. If you don’t want your users to see the link, then the second option may be best.