PHP Classes

Good, but with some server configuration the generated sitema...

Recommend this page to a friend!

      Site Map Generator  >  All threads  >  Good, but with some server...  >  (Un) Subscribe thread alerts  
Subject:Good, but with some server...
Summary:Package rating comment
Messages:1
Author:Alessandro Nadalin
Date:2009-05-09 14:56:26
 

 

Alessandro Nadalin rated this package as follows:

Utility: Good
Consistency: Good
Examples: Sufficient

  1. Good, but with some server...   Reply   Report abuse  
Picture of Alessandro Nadalin Alessandro Nadalin - 2009-05-09 14:56:26
Good, but with some server configuration the generated sitemap containes link with duplicated directory separators.

You can temporarely solve it working on generateSiteMap() method, at line 0 after the foreach cicle start:

while ( strpos( $url, "//" ) )
{
$url = str_replace( "//", "/", $url );
}