redbox
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Ping plugins to display the results of pinging and stop timeouts?I would also be interested in this. I’ve spent a lot of time watching the various weblog update services and have never ever seen my blog show up.
macmanx, can you explain what you meant by seeing a list of successful pings on the edit page? I can’t find that anywhere in wordpress. I’m using the latest release.
Thanks ??
Forum: Fixing WordPress
In reply to: Ping plugins to display the results of pinging and stop timeouts?I would also be interested in this. I’ve spent a lot of time watching the various weblog update services and have never ever seen my blog show up.
macmanx, can you explain what you meant by seeing a list of successful pings on the edit page? I can’t find that anywhere in wordpress. I’m using the latest release.
Thanks ??
Forum: Plugins
In reply to: Ratings PluginI spoke too soon! I uploaded the wp-settings.php file from version 1.5.1.3 and the ratings plugin is working now. However, I’m not sure if that poses any type of potential problem. Would anyone know if this will be a problem?
Forum: Plugins
In reply to: Ratings Pluginraanan_nyc, I had it working perfectly in 1.5.1.3 but it’s not working for me with the upgrade to 1.5.2
Did you manage to get it working?
Forum: Fixing WordPress
In reply to: feed/rss feed/atom in error logsThanks very much! Removing the index.php from the permalinks structure, then uploading the new htaccess file did the trick ??
Forum: Fixing WordPress
In reply to: feed/rss feed/atom in error logsThanks! The address is https://www.hoodiascam.com
Forum: Fixing WordPress
In reply to: feed/rss feed/atom in error logsThanks for the replies. I’m using the Permanlinks htaccess that was automatically created.
RewriteEngine On
RewriteBase /
RewriteRule ^index.php/archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^index.php/archives/category/?(.*) /index.php?category_name=$1 [QSA]
RewriteRule ^index.php/archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^index.php/archives/author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^index.php/archives/?([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^index.php/archives/?([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^index.php/archives/?([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1&withcomments=1 [QSA]
My categories work with the mod_rewrite, but the rss links don’t.
I appreciate any advice ??