HOME SHELL

NULLCOMMUNITY
 LiteSpeed
 Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64
 safemode : OFF
 MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF
  >  / home / cuneytsener53 / kurumsal8.snrsoft.com.tr /

Server Ip : 172.67.216.244




Filename/home/cuneytsener53/kurumsal8.snrsoft.com.tr/sitemap.php
Size4.49 kb
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified10-Oct-2022 14:01
Last accessed05-Apr-2025 01:56
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
require_once 'adminx/system/db.php';
header('Content-Type: text/xml');

// General Setting Ask
$generalSettingAsk=$db->prepare("SELECT * FROM general_setting");
$generalSettingAsk->execute();
$generalSettingCheck=$generalSettingAsk->fetch(PDO::FETCH_ASSOC);

echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
echo "
<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">
<url>
<loc>" .$generalSettingCheck['site_url'] . "</loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
";
$allPostAsk=$db->prepare("SELECT * FROM posts WHERE post_type=:post_type");
$allCategoryAsk=$db->prepare("SELECT * FROM categories WHERE categories_type=:categories_type");


// Page Page
$allPostAsk->execute(array(
'post_type' => 'post_page'
));
while ($allPageCheck = $allPostAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allPageCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Post services
$allPostAsk->execute(array(
'post_type' => 'post_services'
));
while ($allServicesCheck = $allPostAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allServicesCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Post post
$allPostAsk->execute(array(
'post_type' => 'post_post'
));
while ($allPostCheck = $allPostAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allPostCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Post Project
$allPostAsk->execute(array(
'post_type' => 'post_projects'
));
while ($allProjectCheck = $allPostAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allProjectCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Post Notices
$allPostAsk->execute(array(
'post_type' => 'post_notices'
));
while ($allNoticesCheck = $allPostAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allNoticesCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Post Gallery
$allPostAsk->execute(array(
'post_type' => 'post_Gallery'
));
while ($allGalleryCheck = $allPostAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allGalleryCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Category Project
$allCategoryAsk->execute(array(
'categories_type' => 'project_categories'
));
while ($allProjectCatCheck = $allCategoryAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allProjectCatCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Category Post
$allCategoryAsk->execute(array(
'categories_type' => 'post_categories'
));
while ($allPostCatCheck = $allCategoryAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allPostCatCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}

// Category Post
$allCategoryAsk->execute(array(
'categories_type' => 'product_categories'
));
while ($allProductCatCheck = $allCategoryAsk->fetch(PDO::FETCH_ASSOC)){
echo '
<url>
<loc>'. $generalSettingCheck['site_url'] . $allProductCatCheck['seo_url'].' </loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
';
}
echo "</urlset>";
?>