Can unlimited sitemap generator create sitemaps from .txt file?
« on: November 29, 2012, 08:33:08 PM »
I have numerous, very large websites that are WordPress based and have plugins that are currently generating my sitemaps, however, after trying the sitemap generator here I would prefer to use that.

I have a list with all of my URLs for each site (same as urllist.txt).  Is it possible to create my sitemaps from these urllist.txt files instead of scanning my sites with the inlimited version?

Thanks.
Re: Can unlimited sitemap generator create sitemaps from .txt file?
« Reply #1 on: November 30, 2012, 03:55:30 PM »
Hello,

you would need to convert this list to a simple html file so that generator crawler can process it, like:
<a href="yourlink1">1</a>
<a href="yourlink2">1</a>
etc.
Re: Can unlimited sitemap generator create sitemaps from .txt file?
« Reply #2 on: November 30, 2012, 09:30:34 PM »
Thanks for the reply.

I'll try this and let you know how I get on...

My URL's are in this format:

[ External links are visible to forum administrators only ]

Does anybody know of a regex search/replace command I can run in notepad++ to change my URL list to this format:

<a href="[ External links are visible to forum administrators only ]">here are my links</a>

Thank you.
Re: Can unlimited sitemap generator create sitemaps from .txt file?
« Reply #3 on: December 02, 2012, 07:04:17 PM »
Not sure about notepad++ regexp format, but you can try something like:
'([^\r\n]+)' => '<a href="$1">$1</a>'