merhabalar,
sitemap oluşturma dosyası uzerinde calışıyorum. hata verdi sebebini bulamadım sizce neden olabilir? Eğer vt den cekmeden diziye url lerden cektirirsem problem cıkmıyor.

Kodlar:
PHP:
save('../sitemap.xml'); // Save sitemap // Action 3. Update a last modification date (e.g. when you update existing content) // Each URL in the sitemap has an MD5 attribute so uniquely reference it $_sitemap = new sitemap; $_sitemap->load(); $_sitemap->editrow(md5($urls[1])); // Action 4. Delete a URL from the sitemap (e.g. when a URL is no longer available on your site) $_sitemap = new sitemap; $_sitemap->load(); $_sitemap->deleterow(md5($urls[2])); ?>