Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Newer/Older Entries Not Working In Search ResultsHi,
Search PHP template is not the same that Category/Tag PHP template…
For a reason, your function is not generating the link :
<a href="http://...">Older Entries</a>
…As you can see, its only returns :
<li>« Older Entries</li>
…So, I think the PHP templates are not the problem, but if your function is in Function.php, look for an error here.
For example, a IF statement condition that is not filtering data correctly to display the links on the Search page template :
if ( is_category()...
ou
if ( is_tag()...If it’s a plugin, look for a solution with the plugin’s developper.
Forum: Fixing WordPress
In reply to: How to 404 Redirect Deleted Tag Pages?@Santash :
Davidjoseph doesn’t complain Google is still display these tag pages as indexed content… He complains that his website don’t return the 404 error as it’s usually the case if the tag doesn’t exist anymore.
So that means there is a deeper problem on his wordpress installation / theme.
Forum: Fixing WordPress
In reply to: How to 404 Redirect Deleted Tag Pages?Hi,
First of all, if you don’t get 404 error, what is the retuned message !
Are you still view the page content that is normally displayed for these tag page ?
Forum: Fixing WordPress
In reply to: "Fatal error" message when activating any pluginWhat’s the “Fatal Error” full message ?
Forum: Themes and Templates
In reply to: Theme with TWO SEPARATE navigation bars?Hi,
Try find a theme that match your need using this page :
http://wordpress.org/extend/themes/tag-filter/You can fine your search with colors, columns, width, features, etc…
I found this one :
http://wordpress.org/extend/themes/cw-redForum: Fixing WordPress
In reply to: site forwarding to 127.0.0.1 when liveYou’re in the right way esmi…
The exact error message is :
502 Bad Gateway ou Proxy ErrorForum: Fixing WordPress
In reply to: site forwarding to 127.0.0.1 when liveGood question esmi !
Forum: Fixing WordPress
In reply to: site forwarding to 127.0.0.1 when liveOK, so find why you get this.
Forum: Fixing WordPress
In reply to: site forwarding to 127.0.0.1 when liveI don’t know, it depends if the issue comes from a HTACCESS rule or not.
What kind of things do you find in the HTACCESS file ???Forum: Fixing WordPress
In reply to: Hide featured images from second post listed on page.You’re welcome.
Forum: Fixing WordPress
In reply to: site forwarding to 127.0.0.1 when liveIt’s like there was a ‘Rewrite Rule’ somewhere.
Forum: Fixing WordPress
In reply to: site forwarding to 127.0.0.1 when liveI saw… It’s very strange !
And if you get that all the time, check the file called HTACCESS in WWW folder.
Forum: Fixing WordPress
In reply to: Suggestions to stop spamOn my blog, I use :
-> Akismet (already installed with your WordPress)
-> Bad Behavior
Then, create an account here and get the API key for Bad Behavior here : https://www.projecthoneypot.org/httpbl_configure.php
-> Htaccess file like this example :# 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 # BEGIN File Permissions <Files .htaccess> Order allow,deny deny from all </Files> <files wp-config.php> Order allow,deny deny from all </files> <files wp-settings.php> Order allow,deny deny from all </files> # END # BEGIN Block by Country (IP Range) # http://incredibill.me/htaccess-block-country-ips # # Block from CHINA (CN) # deny from 1.0.1.0/24 deny from 1.0.2.0/23 deny from 1.0.8.0/21 deny from 1.0.32.0/19 deny from 1.1.0.0/24 deny from 1.1.2.0/23 deny from 1.1.4.0/22 deny from 1.1.8.0/21 deny from 1.1.16.0/20 deny from 1.1.32.0/19 deny from 1.2.0.0/23 deny from 1.2.2.0/24 deny from 1.2.4.0/24 deny from 1.2.5.0/24 deny from 1.2.6.0/23 deny from 1.2.8.0/21 deny from 1.2.16.0/20 deny from 1.2.32.0/19 deny from 1.2.64.0/18 ... ... # ENDYou can use http://incredibill.me/htaccess-block-country-ips to extract the IP Addresses Range in function of countries 😉
Forum: Fixing WordPress
In reply to: accidentally uploaded wp-config fileDo you remember your database server on the internet ?
Forum: Fixing WordPress
In reply to: accidentally uploaded wp-config fileHi,
No you can’t, except if your FTP server provider allows you backup features !