Recent Global Posts Not working for me.

I have put both of these files (widget-recent-global-posts.php and

post-indexer.php) in my wp-content/mu-plugins folder I added the line of code to my .htaccess file which is copied below. All I get is the error message copied below. Something is weird and I have 5 hours in on try to install this simple plugin…please help!

404 Not Found

The requested URL /global-posts-feed/ does not exist.

RewriteEngine On

RewriteBase /

#uploaded files

RewriteRule ^(.*/)?global-posts-feed/(.*) wp-content/recent-global-posts-feed.php [L]

RewriteRule ^(.*/)?files/$ index.php [L]

RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

# add a trailing slash to /wp-admin

RewriteCond %{REQUEST_URI} ^.*/wp-admin$

RewriteRule ^(.+)$ $1/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]

RewriteCond %{REQUEST_FILENAME} -d

RewriteRule . – [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]

RewriteRule . index.php [L]

#RewriteEngine On

# WORDPRESS MU Hosted on Addon Domain

#

# Replace addondomain and addon_folder values below with the real domain.com and folder’s name

#

# Skip rewrite if subdomain is www (we already know where http://www.addondomain.com is hosted, thanks to apache)

#RewriteCond %{HTTP_HOST} !^www. [NC]

# Extract (required) subdomain to %1

#RewriteCond %{HTTP_HOST} ^([^.]+).amongstit.com(:80)?$

# Rewrite to /addon_folder/URL-path

#RewriteRule (.*) /amongst/$1 [L]

<IfModule mod_security.c>

<Files async-upload.php>

SecFilterEngine Off

SecFilterScanPOST Off

</Files>

</IfModule>

  • Andrew
    • Champion of Loops

    Hiya,

    I think you may have two plugins confused. There’s a widget plugin and a feed plugin. You’re referencing the widget plugin file (widget-recent-global-posts.php) but are expecting a feed at "/global-posts-feed/". If you want the feed at "/global-posts-feed/" you need to install the feed plugin.

    Thanks,

    Andrew