mibe / FeedWriter

PHP Universal Feed Generator

Home Page:http://ajaxray.com/blog/php-universal-feed-generator-supports-rss-10-rss-20-and-atom

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example throws Internal Error 500 on use \FeedWriter\RSS2;

tomaszs opened this issue · comments

When i put into a function those lines:

include '../addons/rss/Item.php';
include '../addons/rss/Feed.php';
include '../addons/rss/RSS2.php';

date_default_timezone_set('UTC');

use \FeedWriter\RSS2;

I have internal server Error 500. If i remove "use" it works fine. I have good version of PHP

Can you give a bit more information about your system? What PHP version are you using? Can you also check the error logfile of your webserver for PHP errors?

Hello, Thanks for answer. I have PHP Version 5.3.29. I can not find any errors in error long, but it can also be that it was truncated or else

What happens when you remove the first backslash in the use line?

If the webserver's error log does not help, try setting PHP's configuration option error_log in your php.ini file or via a .htaccess directive (if you are using Apache). That should save the error message to a file (which must be writeable by the webserver).

The output of phpinfo() would probably also help.

Thanks for suggestions. I've had a little time, so i implemented code myself. I will be back when i will have new project to use FeedWriter.

Bummer! I had no luck reproducing this behaviour on my 5.3.29 installation... 😞