Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
'1,2',
'order' => 'ASC',
'fields' => 'ids', // Only get post IDs
'post_type' => 'page',
'numberposts' => -1,
));
foreach($ids as $pid){
$data[$pid]['include'] = optPOST('include_pages_'.$pid);
$data[$pid]['priority'] = optPOST('changeprior_pages_'.$pid);
$data[$pid]['frequency'] = optPOST('changefreq_pages_'.$pid);
}
$data = json_encode($data);
update_option('sitepad_sitemap', $data);
$msg['success'] = "Sitemap settings have been saved successfully!";
}else{
$data = array();
$data = json_encode($data);
update_option('sitepad_sitemap', $data);
$msg['success'] = "Sitemap has been disabled successfully!";
}
return $msg;
}
// Fetch sitemap data
function sitepad_fetch_sitemap() {
$sitemap_data = get_option('sitepad_sitemap');
$sitemap_data = json_decode($sitemap_data, true);
// We do not have any sitemap data
if(empty($sitemap_data)){
return false;
}
if($sitemap_data['enable_sitemap'] == 'on'){
return json_encode($sitemap_data);
}
return false;
}
if(isset($_POST['sitemap_save'])){
$msg = sitepad_save_sitemap();
if(!empty($msg['success'])){
echo '
'.__($msg['success']).'
';
}else{
echo '
'.__('Unable to save siteMap data for some reason').'