| 
| 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 | 
|---|
|  | 
  Alessandro Nadalin - 2009-05-09 14:56:26Good, 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 );
 }
 |