ATOM RSS Feed Errors Out

Get help with installation and running phpBB 3.2.x here. Please do not post bug reports, feature requests, or extension related questions here.
Post Reply
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

ATOM RSS Feed Errors Out

Post by imatthews »

My phpBB 3.2 forum (recently upgraded from 3.1) RSS link http://www.commodore.ca/forum/feed.php results in "No input file specified." and my RSS WordPress Widget shows "RSS Error: A feed could not be found at http://www.commodore.ca/forum/feed.php. A feed with an invalid mime type may fall victim to this error, or SimplePie was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed."

I read a number of other forums discussing similar issues when one of the posts includes quotation mark, but I have not seen that.

Thoughts?
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

Re: ATOM RSS Feed Errors Out

Post by imatthews »

bump...

Does anyone have any ideas?
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
janus_zonstraal
Registered User
Posts: 6414
Joined: Sat Aug 30, 2014 1:30 pm

Re: ATOM RSS Feed Errors Out

Post by janus_zonstraal »

there is a redirect on that link to http://www.commodore.ca/forum/app.php/feed
And there isn't a feed.
The same happens on your FAQ

Maybe something in your htaccess or on the server.
Sorry! My English is bat ;) !!!
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

Re: ATOM RSS Feed Errors Out

Post by imatthews »

The only thing that has changed recently was the upgrade to the lastest phpBB.

Does anyone have any idea's what specifically I can check/change?
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
janus_zonstraal
Registered User
Posts: 6414
Joined: Sat Aug 30, 2014 1:30 pm

Re: ATOM RSS Feed Errors Out

Post by janus_zonstraal »

Post your htaccess here please
Sorry! My English is bat ;) !!!
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

Re: ATOM RSS Feed Errors Out

Post by imatthews »

Code: Select all

<IfModule mod_rewrite.c>
RewriteEngine on

#
# Uncomment the statement below if URL rewriting doesn't
# work properly. If you installed phpBB in a subdirectory
# of your site, properly set the argument for the statement.
# e.g.: if your domain is test.com and you installed phpBB
# in http://www.test.com/phpBB/index.php you have to set
# the statement RewriteBase /phpBB/
#
#RewriteBase /

#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]

#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
#Options +FollowSymLinks
</IfModule>

# With Apache 2.4 the "Order, Deny" syntax has been deprecated and moved from
# module mod_authz_host to a new module called mod_access_compat (which may be
# disabled) and a new "Require" syntax has been introduced to mod_authz_host.
# We could just conditionally provide both versions, but unfortunately Apache
# does not explicitly tell us its version if the module mod_version is not
# available. In this case, we check for the availability of module
# mod_authz_core (which should be on 2.4 or higher only) as a best guess.
<IfModule mod_version.c>
	<IfVersion < 2.4>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfVersion>
	<IfVersion >= 2.4>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfVersion>
</IfModule>
<IfModule !mod_version.c>
	<IfModule !mod_authz_core.c>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfModule>
	<IfModule mod_authz_core.c>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfModule>
</IfModule>
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

Re: ATOM RSS Feed Errors Out

Post by imatthews »

Bump... does anyone have any thoughts on this?
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
janus_zonstraal
Registered User
Posts: 6414
Joined: Sat Aug 30, 2014 1:30 pm

Re: ATOM RSS Feed Errors Out

Post by janus_zonstraal »

Did you ask your host if there is a redirect on your site, or are you on a windows server maybe?
Sorry! My English is bat ;) !!!
User avatar
Ger
Registered User
Posts: 2107
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: ATOM RSS Feed Errors Out

Post by Ger »

I don't have a solution ATM, but it might help to fill in and post the Support Request Template to get some more information.

edit:
Seems like a generic Symfony exception. Might want to check this with your host: https://wilt.isaac.su/articles/symfony2 ... specified-
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

Re: ATOM RSS Feed Errors Out

Post by imatthews »

I am on a Linux server and there is no redirect. Any other ideas?
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
janus_zonstraal
Registered User
Posts: 6414
Joined: Sat Aug 30, 2014 1:30 pm

Re: ATOM RSS Feed Errors Out

Post by janus_zonstraal »

There is a redirect but you have to find him, did you ask your host?
Sorry! My English is bat ;) !!!
User avatar
Ger
Registered User
Posts: 2107
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: ATOM RSS Feed Errors Out

Post by Ger »

Have you checked my previous link?
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
imatthews
Registered User
Posts: 43
Joined: Mon Oct 04, 2004 11:14 pm
Location: Calgary, Alberta
Contact:

Re: ATOM RSS Feed Errors Out

Post by imatthews »

I saw it, but in my hurry I thought it was part of your signature.

I did not have a PHP.INI so I called GoDaddy and confirmed I should just create one. I put a php.ini in the root and have cgi.fix_pathinfo=1 as the only entry in it. Then I ended all of the running tasks on my GoDaddy hosting account, and refreshed https://www.commodore.ca/forum/app.php/feed but found the same error.

Do you think I missed something?
_______________________
Ian Matthews
see www.Commodore.ca
For 8 Bit Commodore History, News and Discussion
see: www.URTech.ca
For modern PC tech tips and news
User avatar
Ger
Registered User
Posts: 2107
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: ATOM RSS Feed Errors Out

Post by Ger »

I have no clue about how Godaddy runs things, so you should refer to them.
Usually when you edit your php.ini you have to restart your server (apachte/nginx) to let the changes take effect.

If that doesn't work, you really need to start filling in the support request template.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
Post Reply

Return to “[3.2.x] Support Forum”