| Author |
Message |
dad7732 RavenNuke(tm) Development Team

Joined: Mar 18, 2007 Posts: 1174
|
Posted:
Wed Mar 17, 2010 8:31 am |
|
Running with the ForumsCollapsing block. When I click on the XML icon at the top of the block, I get this:
| Quote: | | The requested URL /invalidfeed2.html/ was not found on this server. |
"Feeds" is working ok.
Not running ShortLinks if that's the problem.
Cheers |
|
|
|
 |
nuken RavenNuke(tm) Development Team

Joined: Mar 11, 2007 Posts: 1435 Location: North Carolina
|
Posted:
Wed Mar 17, 2010 10:03 am |
|
In the block-ForumsCollapsing.php how is $backendForumsXML defined?
It should be | Code: | | $backendForumsXML = 'forumsbackend.php'; |
If it is correct, check your forumsbackend.php and make sure it has
| Code: | <?php
/************************************************************************/
/* nukeFEED
/* http://www.nukeSEO.com
/* Copyright � 2007 by Kevin Guske
/************************************************************************/
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (!defined('INCLUDE_PATH')) define('INCLUDE_PATH', './');
require_once 'config.php';
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
/*
* IF wrapper added by montego from http://montegoscripts.com for TegoNuke(tm) ShortLinks
*/
if (isset($tnsl_bUseShortLinks) && $tnsl_bUseShortLinks) {
header('Location: http://'.$host.$uri.'/feeds-2-rss20.xml');
} else {
header('Location: http://'.$host.$uri.'/modules.php?name=Feeds&fid=2&type=RSS20');
}
die();
?> |
|
|
|
|
 |
dad7732 RavenNuke(tm) Development Team

Joined: Mar 18, 2007 Posts: 1174
|
Posted:
Wed Mar 17, 2010 7:05 pm |
|
My forumsbackend.php is exactly the same as you posted. Also the ForumsCollapsing.php is as you posted as well.
Copy Link Location from the icon:
But when I click the icon I get the error message. Weird to say the least.
Cheers |
|
|
|
 |
nuken RavenNuke(tm) Development Team

Joined: Mar 11, 2007 Posts: 1435 Location: North Carolina
|
Posted:
Thu Mar 18, 2010 9:39 am |
|
I would make sure the feed is active in the feeds module. If the forums feed is active and working in feeds module, change the $backendForumsXML to match the rss feed from the forums feed. For example, mine is feeds-2-rss20.xml with shortlinks and modules.php?name=Feeds&fid=2&type=RSS2.0 without. |
|
|
|
 |
dad7732 RavenNuke(tm) Development Team

Joined: Mar 18, 2007 Posts: 1174
|
Posted:
Thu Mar 18, 2010 11:47 am |
|
Feeds is active, so I'll have to check the name and go from there or either remove that icon as there other links to "feeds" on the site.
Cheers |
|
|
|
 |
dad7732 RavenNuke(tm) Development Team

Joined: Mar 18, 2007 Posts: 1174
|
Posted:
Sat Mar 20, 2010 3:26 pm |
|
Update: Very perplexing to say the least. I have another domain with RN2.4 that is working 100%. Clicking the XML icon in ForumsCollapsing is working as intended. I copied the block-ForumsCollapsing.php, forumsbackend.php to the non-working domain and still doesn't work. Must be missing something else, even duplicated the feeds configuration, etc. and still doesn't work.
Cheers |
|
|
|
 |
|
|
|
|