- Posts: 1421
- Thank you received: 234
Unable to fetch feed
9 years 9 months ago #3158
by redactie
Replied by redactie on topic Unable to fetch feed
this covers the timespan je tried to fetch a feed?
Nothing that seems related
Nothing that seems related
Please Log in to join the conversation.
9 years 9 months ago #3162
by edawg
Replied by edawg on topic Unable to fetch feed
This is the section of code the error is reffering to. The actual line 242 is this part:
trigger_error( $errormsg, $lvl);
trigger_error( $errormsg, $lvl);
Code:
/*=======================================================================*\
Function: error
Purpose: set MAGPIE_ERROR, and trigger error
\*=======================================================================*/
function error ($errormsg, $lvl=E_USER_WARNING) {
global $MAGPIE_ERROR;
// append PHP's error message if track_errors enabled
if ( isset($php_errormsg) ) {
$errormsg .= " ($php_errormsg)";
}
if ( $errormsg ) {
$errormsg = "1 MagpieRSS: $errormsg";
$MAGPIE_ERROR = $errormsg;
trigger_error( $errormsg, $lvl);
}
}
function debug ($debugmsg, $lvl=E_USER_NOTICE) {
trigger_error("MagpieRSS [debug] $debugmsg", $lvl);
}
/*=======================================================================*\
Function: magpie_error
Purpose: accessor for the magpie error variable
\*=======================================================================*/
Please Log in to join the conversation.
9 years 9 months ago #3163
by redactie
Replied by redactie on topic Unable to fetch feed
that's just the error code in the script, it does not point to the actual cause.
did you try the manual thing as described in an earlier post?
did you try the manual thing as described in an earlier post?
Please Log in to join the conversation.
9 years 9 months ago #3164
by edawg
Replied by edawg on topic Unable to fetch feed
I am able to do it manually by uploading the file to my own server, then changing the feed-url.
When I pasted the original CJ feed url into my browser I got a warning that popped up and said..
Warning: Possible phishing site.
Then it displayed two buttons that said "Ignore Warning" or "Go Back". Could this be stopping the feed from working as it should?
When I pasted the original CJ feed url into my browser I got a warning that popped up and said..
Warning: Possible phishing site.
Then it displayed two buttons that said "Ignore Warning" or "Go Back". Could this be stopping the feed from working as it should?
Please Log in to join the conversation.
9 years 9 months ago #3165
by redactie
Replied by redactie on topic Unable to fetch feed
the CJ feed has a username/password in it that might confuse your browser.
it might as well confuse php depending on the security level/settings.
it might as well confuse php depending on the security level/settings.
Please Log in to join the conversation.
Time to create page: 0.350 seconds