Version: 2.03, by Atakan KOC
Developer Last Online: Mar 2023
Version: 3.5.8
Rating:
Released: 02-18-2006
Last Update: 04-08-2006
Installs: 91
DB Changes Uses Plugins Template Edits
Additional Files
No support by the author.
Atakan RSS View Feeds 2.03 :banana:
Installation
Please 2.00 previous version lift and again install...
Installation in two easy steps:
1. Upload all the files from the "files" directory in this zip into your forums directory.
2. Import product-1901.xml as a product. (Via "Plugin System" > "Manage Products" > "Add/Import Product" in your Admin CP.) Upgrade Info
Allow Overwrite [YES]
If you upgrate this sw you will have some problem, first you must remove the old versiyon and install the new version. Then you won't have any problem
Upload
Anybody have any luck fixing the "Syndicated content not available" message after installing this hack? Like a previous poster mentioned, my host is Dreamhost.
1 ka? tanesi işine yarar sanırım. Elimde genelde spor ağırlıklı linker var
arkadaslar yardim edin bunlari nereye ekleyecegiz bende cikmadi hepsini yaptim sayfa cikiyor bos
admin cpanleldede cikanin icnde sadece su var aktifte yaptim ama su yazi var
<p>Sorry, the board is unavailable at the moment while we are testing some functionality.</p>
<p>We will be back soon...</p>
Anybody have any luck fixing the "Syndicated content not available" message after installing this hack? Like a previous poster mentioned, my host is Dreamhost.
I was able to get this fixed. The reason it was breaking is that many hosting providers have disabled fopen. As mentioned in a previous post in this thread the fopen calls needed to be replaced with cURL. I did a little research to figure out what needed to be done.
You need to edit the includes/xmlparser.php file and replace the render_news function with the code below:
if (!xml_parse($xml_parser, $xml, True))
{
die(sprintf("XML error: %s at line %d",
xml_error_string(xml_get_error_code($xml_parser)),
xml_get_current_line_number($xml_parser)));
}
// Free up memory used by the XML parser
xml_parser_free($xml_parser);
}
I was able to get this fixed. The reason it was breaking is that many hosting providers have disabled fopen. As mentioned in a previous post in this thread the fopen calls needed to be replaced with cURL. I did a little research to figure out what needed to be done.
You need to edit the includes/xmlparser.php file and replace the render_news function with the code below:
if (!xml_parse($xml_parser, $xml, True))
{
die(sprintf("XML error: %s at line %d",
xml_error_string(xml_get_error_code($xml_parser)),
xml_get_current_line_number($xml_parser)));
}
// Free up memory used by the XML parser
xml_parser_free($xml_parser);
}