I created an XML sitemap. The file is set to filetype XML in the prefs for this file. When I try to view it in a browser, I get this error:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 36887 bytes) in /www/eh14227/broadway/expressionengine/libraries/Template.php on line 231
To test it in the most simple way, I took all EE tags out of the template in case I had something wrong, leaving just a bit of static code there:
<?xml version="1.0" encoding="UTF-8"?>
<urlset >
<url>
<loc>http://www.mysite.com/</loc>
<changefreq>yearly</changefreq>
0.6</priority>
</url>
</urlset>As you can see there is nothing here that should exceed any memory limits. When I take this same template and put it in my public folder to see as a static page, it works fine. What can possibly be wrong here?