• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

PHP Warning: Directive 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown o

B

bbrian017

Guest
PHP Warning: Directive 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown on line 0

PHP Fatal error: require_once(): Failed opening required 'modules/rss_import/magpierss/rss_fetch.inc'

(include_path='.') in /var/www/vhosts/blogengage.com/httpdocs/modules/rss_import/rss_file.php on line 311

/*=======================================================================*\
Function: _response_to_rss
Purpose: parse an HTTP response object into an RSS object
Input: an HTTP response object (see Snoopy)
Output: parsed RSS object (see rss_parse)
\*=======================================================================*/
function _response_to_rss ($resp) {
$rss = new MagpieRSS( $resp->results, MAGPIE_OUTPUT_ENCODING, MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );

// if RSS parsed successfully
if ( $rss and !$rss->ERROR) {

// find Etag, and Last-Modified
foreach($resp->headers as $h) {
// 2003-03-02 - Nicola Asuni (www.tecnick.com) - fixed bug "Undefined offset: 1"
if (strpos($h, ": ")) {
list($field, $val) = explode(": ", $h, 2);
}
else {
$field = $h;
$val = "";
}

if ( $field == 'ETag' ) {
$rss->etag = $val;
}

if ( $field == 'Last-Modified' ) {
$rss->last_modified = $val;
}
}

return $rss;
} // else construct error message
else {
$errormsg = "Failed to parse RSS file.";

if ($rss) {
$errormsg .= " (" . $rss->ERROR . ")";
}
error_rss($errormsg);

return false;
} // end if ($rss and !$rss->error)
}

Any suggestions to what s happening? How to fix it?

Thanks,

Brian
 
Hello, for this error

PHP Warning: Directive 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown o

Remove

safe_mode = "On/Off" from your php.ini, so you don't have again this error. For the second error, is possible that your software don't like php53?
 
Why is it still used by plesk when installing php 5.3 set so? (safe mode)

With parallels hasn't removed it in the 5.3 installation?

Thanks.
 
Back
Top