Welcome to Geeklog, Anonymous Monday, December 23 2024 @ 06:40 pm EST
Geeklog Forums
PHP ERROR _ HELP
Santosh
Anonymous
Hi,
I was trying to upload a story to my site when I got the following error. Could someone tell me what could be wrong and what I need to do next to rectify this bug?
Thank you,
santosh
Warning: synd_updatefeed(/home/vedanta/public_html/vedanta/system/classes/RSS-0.9x.feed.class.php): failed to open stream: No such file or directory in /home/vedanta/public_html/vedanta/system/lib-syndication.php on line 614
Fatal error: synd_updatefeed(): Failed opening required '/home/vedanta/public_html/vedanta/system/classes/RSS-0.9x.feed.class.php' (include_path='/home/vedanta/public_html/vedanta/system/pear/:.:/usr/lib/php:/usr/local/lib/php') in /home/vedanta/public_html/vedanta/system/lib-syndication.php on line 614
I was trying to upload a story to my site when I got the following error. Could someone tell me what could be wrong and what I need to do next to rectify this bug?
Thank you,
santosh
Warning: synd_updatefeed(/home/vedanta/public_html/vedanta/system/classes/RSS-0.9x.feed.class.php): failed to open stream: No such file or directory in /home/vedanta/public_html/vedanta/system/lib-syndication.php on line 614
Fatal error: synd_updatefeed(): Failed opening required '/home/vedanta/public_html/vedanta/system/classes/RSS-0.9x.feed.class.php' (include_path='/home/vedanta/public_html/vedanta/system/pear/:.:/usr/lib/php:/usr/local/lib/php') in /home/vedanta/public_html/vedanta/system/lib-syndication.php on line 614
12
11
Quote
Status: offline
Dirk
Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
When you save a new story, Geeklog will update your site's RSS feed to include that new story. Looks like that failed in your case.
Which Geeklog version are you running?
The error message looks like you've mixed code from 1.4.0 with an earlier version. Did you do an upgrade recently? If so, you may have missed a few files during the update ...
bye, Dirk
Which Geeklog version are you running?
The error message looks like you've mixed code from 1.4.0 with an earlier version. Did you do an upgrade recently? If so, you may have missed a few files during the update ...
bye, Dirk
8
12
Quote
Santosh
Anonymous
Dirk,
that was really brilliant deduction.
Yes...i did an upgrade recently. And l think ur heading the right way... so what do i do now next? plz help
that was really brilliant deduction.
Yes...i did an upgrade recently. And l think ur heading the right way... so what do i do now next? plz help
8
10
Quote
Status: offline
Dirk
Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
As I said, you probably missed a few files during the upgrade.
Start with uploading all the files in the system directory (and all its subdirectories) again (make a backup of your lib-custom.php if you have any custom code in there) and see if that helps.
bye, Dirk
Start with uploading all the files in the system directory (and all its subdirectories) again (make a backup of your lib-custom.php if you have any custom code in there) and see if that helps.
bye, Dirk
10
9
Quote
Santosh
Anonymous
Dirk,
I tried deleting the directory from the root, untarred the file from fantasticobackup as instructed but now i continue to get this error.
Warning: main(/home/vedanta/public_html/vedanta/plugins/links/functions.inc): failed to open stream: No such file or directory in /home/vedanta/public_html/vedanta/lib-common.php on line 6108
Fatal error: main(): Failed opening required '/home/vedanta/public_html/vedanta/plugins/links/functions.inc' (include_path='/home/vedanta/public_html/vedanta/system/pear/:.:/usr/lib/php:/usr/local/lib/php') in /home/vedanta/public_html/vedanta/lib-common.php on line 6108
What next???
I tried deleting the directory from the root, untarred the file from fantasticobackup as instructed but now i continue to get this error.
Warning: main(/home/vedanta/public_html/vedanta/plugins/links/functions.inc): failed to open stream: No such file or directory in /home/vedanta/public_html/vedanta/lib-common.php on line 6108
Fatal error: main(): Failed opening required '/home/vedanta/public_html/vedanta/plugins/links/functions.inc' (include_path='/home/vedanta/public_html/vedanta/system/pear/:.:/usr/lib/php:/usr/local/lib/php') in /home/vedanta/public_html/vedanta/lib-common.php on line 6108
What next???
12
9
Quote
Status: offline
Dirk
Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
Read the error messages carefully - they are giving you all the information you need.
"No such file or directory" means that the file mentioned was not found at that place. Which means that either it's simply not there or that the path is wrong.
bye, Dirk
"No such file or directory" means that the file mentioned was not found at that place. Which means that either it's simply not there or that the path is wrong.
bye, Dirk
9
8
Quote
Dave1
Anonymous
Dudes,
I was getting this same error. I reinstalled the tarball, updated to sr7 of 1.3.11 and still no change. I thought I had restored my previous database, but aparently not or something else oddball.
Here is what I did to fix it: (a hack, but at least it works)
line 613 of file lib-syndication.php
insert: $A['format'] = 'rss';
Here is what the section looks like after patching:
{
global $_CONF, $_TABLES, $_SYND_DEBUG;
$result = DB_query( "SELECT * FROM {$_TABLES['syndication']} WHERE fid = $fid");
$A = DB_fetchArray( $result );
if( $A['is_enabled'] == 1 )
{
$A['format'] = 'rss';
require_once( $_CONF['path_system'] . 'classes/' . $A['format']
. '.feed.class.php' );
$feed = new $A['format']();
So if you have a failed upgrade to 1.4 like I did, unless you can figure out how to downgrade the database, you're stuck with this hack.
I was getting this same error. I reinstalled the tarball, updated to sr7 of 1.3.11 and still no change. I thought I had restored my previous database, but aparently not or something else oddball.
Here is what I did to fix it: (a hack, but at least it works)
line 613 of file lib-syndication.php
insert: $A['format'] = 'rss';
Here is what the section looks like after patching:
Text Formatted Code
function SYND_updateFeed( $fid ){
global $_CONF, $_TABLES, $_SYND_DEBUG;
$result = DB_query( "SELECT * FROM {$_TABLES['syndication']} WHERE fid = $fid");
$A = DB_fetchArray( $result );
if( $A['is_enabled'] == 1 )
{
$A['format'] = 'rss';
require_once( $_CONF['path_system'] . 'classes/' . $A['format']
. '.feed.class.php' );
$feed = new $A['format']();
So if you have a failed upgrade to 1.4 like I did, unless you can figure out how to downgrade the database, you're stuck with this hack.
9
6
Quote
All times are EST. The time is now 06:40 pm.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content