Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Access to admin panelYes, Thanks Esmi.
4 ways to fix this ! I never knew that.
Great !Forum: Fixing WordPress
In reply to: Access to admin panelJust logon directly to your database host (for example ‘phpmyadmin’).
Go to the “wp_options” table
Go to the “Site url” row
Click “Edit”
Change the Site URL value
Then click “Save” (Go)That’s it !
Forum: Fixing WordPress
In reply to: Changing url to subdirectoryHi,
You can try to do a Rewrite rule with help of your WordPress .Htaccess file.
1) Do a backup of your .Htaccess file. Because I don’t know if I’m in the right way.
2) You should have this content in your .Htaccess file (root/website/) :
# 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 WordPress3) Locate the line :
RewriteRule . /index.php [L]
and replace it by : (if your subdirectory is called “website”)
RewriteRule ^.*$ /website/index.php [L]4) If this doesn’t work, restore your backcup .Htaccess file
Forum: Fixing WordPress
In reply to: WordPress giving too much info to end users on DB error…oups, you’re right.
The reason why WordPress is unable to establish a database connection can vary. It could be that your database login credentials are wrong or have been changed. It could be that your database server is unresponsive. It could be that your database has been corrupted
I suggest you to read How to Fix the Error Establishing a Database Connection in WordPress
Forum: Fixing WordPress
In reply to: WordPress giving too much info to end users on DB errorHi,
You should check with your host provider what is the Display Error Level settings for PHP Errors.
More info : http://php.net/manual/en/errorfunc.configuration.php#ini.error-reporting
You will have to decrease the PHP Error Level to prevent users to get to much explicite error messages.
Forum: Fixing WordPress
In reply to: Home page reverts back to latest postsYou’re welcome.
Forum: Fixing WordPress
In reply to: 404 Error on admin panelDid you try to turn ON SecFilterEngine ?
SecFilterEngine on # 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 WordPressForum: Fixing WordPress
In reply to: Can't get the homepage to work & having diffuculty adding picturesYou’re welcome.
Forum: Fixing WordPress
In reply to: Can't get the homepage to work & having diffuculty adding picturesHi,
First, check the Home page settings.
Go to “Settings” and “Reading” and check if you do not have ticked the box
“Front page displays” –> “A Static page”
You shoould select “Your Latest Posts”, then save.
And retry to load the Home page.Forum: Fixing WordPress
In reply to: 404 Error on admin panelHi,
Can you copy/past the content of your .Htaccess file ?
It’s located in the root Directory of your website (www/.htaccess).Also copy/paste the content of your .Htaccess file that is located in the wp-admin folder
Forum: Fixing WordPress
In reply to: exclude a category from is_archive()?That sounds OK if you have not too much categories to hide.
Forum: Fixing WordPress
In reply to: list attachments by categoryHi,
As far as I know, and as by default an attachment post will inherit its parent terms, there is only one way to register attachment taxonomies :
Read WordPress Attachment Category/TermsForum: Fixing WordPress
In reply to: can't add / edit new post ( contains problem's image)Hi,
I suggest you to read Troubleshooting WordPress 3.5 Master List
Forum: Fixing WordPress
In reply to: Landing page optionsHi,
What does mean “Landing Page Options” ?
Forum: Fixing WordPress
In reply to: Images in main sidebarThere is no image at http://www.doonie.co.uk/wp-content/images/goodsurgeonguide-badge-180.gif
But if you put the image in http://www.doonie.co.uk/wp-content/images/goodsurgeonguide-badge-180.gif, leave as gif
and put this into the Widget box :
<img src="http://www.doonie.co.uk/wp-content/images/goodsurgeonguide-badge-180.gif" width="180" height="131">