retain crawl_dump.log ?
« on: October 26, 2008, 01:13:09 PM »
Is there an easy way to prevent crawl_dump.log from being deleted when sitemap.xml is created?

Thanks
Mike
Re: retain crawl_dump.log ?
« Reply #1 on: October 26, 2008, 08:06:03 PM »
Hello,

please try to create php.ini file in generator folder with this line:
Code: [Select]
disable_functions = unlinkthat will disallow sitemap generator to delete any files (if your host allows custom php.ini's), including crawl_dump.log.
Re: retain crawl_dump.log ?
« Reply #2 on: October 27, 2008, 10:10:09 AM »
Thank you Oleg

In crawl_dump.log, some line items are in this format

 'us-products-dr.html' => 'us-products-DR.html',

What is the significance of =>   ?

Does this indicate a link, or a redirect?  It looks like the url on the left is linked from the url on the right, but I have not done an in-depth analysis.

Thanks
Mike
Re: retain crawl_dump.log ?
« Reply #3 on: October 27, 2008, 07:54:39 PM »
Hello,

this is the representation of PHP associative array, the left part is the "key" and the right part is "value" of array record.