Patrick Simmons wrote: There should be a / after shoptalk
tomythius wrote: I also had to change:toCode: Select all
$server_url = $server_protocol . $server_name . $server_port . $script_name;
because urls weren't being presented correctly.Code: Select all
$server_url = $server_protocol . $server_name . $server_port . $script_name . '/';
Code: Select all
$server_url = $server_protocol . $server_name . $server_port . $script_name;
Code: Select all
$server_url = $server_protocol . $server_name . $server_port . $script_name . '/';
jhaskins wrote: Time for today's update. What's new:download here
- The missing slash in the forum path has been fixed
- If gzip compression is enabled for your board, the sitemap will be compressed
- It is no longer neccesary to supply a list of forum ids. All forums with publicly viewable topics ("Read" permission set to "ALL") will be included automatically. Thanks to Kieran007 for the sql to do this.
jhaskins wrote: Version 0.5.0 is now available. Besdies some minor cleanup, the main feature of this release is that it moves the configuration out of sitemap.php and into the admin panel. Installation instructions are in sitemap_mod.txt. I've installed this on a vaniila board and everything seems to be working fine, so I don't anticipate any major problems. If you do have any problems, just reply here as usual.
download here