I was having problems serving up my own RSS files is in my RSS widgets and also in RSS feeds I put into my pages. I went with an htaccess solution and it seems to work. Maybe this will help some others:
AuthName "restricted stuff"
AuthType Basic
AuthUserFile /path/to/.htpasswd
Require valid-user
Order deny,allow
Deny from all
Allow from XXX.XXX.XXX.XXX(host server IP)
Satisfy Any
The topic ‘Solution for RSS Feed Widget Problem’ is closed to new replies.