##  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## /MOD Title: Advanced site map hack                                   \
##{ MOD Author:                                                          }
##{      /\      l        l  TTTTTTTTT  TTTTTTTTT  TTTTTTTTT  l\      l  }
##{     /  \     l        l /               l          l      l \     l  }
##{    /    \    l        l l               l          l      l  \    l  }
##{   /~~~~~~\   l        l \________       l          l      l   \   l  }
##{  /        \  l        l          \      l          l      l    \  l  }
##{ /          \ l        l           l     l          l      l     \ l  }
##{/            \ \_______/  ________/      l       ___l___   l      \l  }
##{< admin@acoolsite.info > http://www.acoolsite.info                    }
##{ MOD Description: This mod adds a site map to your site for better    }
##{  		     search engine indexing. The site map includes       }
##{		     all of your catagories, forums, threads and users.  }
##{		                                                         }
##{                                                                      }
##{ MOD Version: 1.0.2                                                   }
##{                                                                      }
##{ Installation Level: Easy                                             }
##{ Installation Time: 5 minutes                                         }
##{                                                                      }
##{ Files To Edit: /templates/subsilver/overall_footer.php               }
##{ 	  	  includes/page_header.php 				 }
##{		  viewonline.php                                         }
##{		  admin/index.php                                        }
##{		  language/lang_english/lang_main.php                    }
##{		  includes/constants.php                                 }
##{ 						                         }
##{ Included Files: sitemap.gif                                          }
##{		    sitemap.php	                                         }
##{		    sitemap.tpl                                          }
## \                sitemap_logo.jpg                                    /
##  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## / Author Notes:                                                      \
##{ I hope you like the modification! If you have any suggestions        }
##{ of what else I should add to the site map, or any problems           }
##{ with it, just give me an email at admin@acoolsite.info               }
## \                                                                    /
##  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## / MOD History:                                                       \
##{  Version: 1.0.2 Fixed a syntax error.                                }
##{  Version: 1.0.1 Fixed some errors that were brought up.              }
## \ Version: 1.0.0 First version                                       /
##  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## / Before Adding This MOD To Your Forum, You Should Back Up           \
##{ All Files Related To This MOD                                        }
## \                                                                    /
##  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#
#--------------[ COPY ]-------------
#

sitemap.gif to images/sitemap.gif
sitemap_logo.jpg to images/sitemap_logo.jpg
sitemap.php to sitemap.php
sitemap.tpl to /templates/subSilver/

# 
#-----[ OPEN ]------------------------------------------ 
#

/templates/subSilver/overall_footer.php

# 
#-----[ FIND ]------------------------------------------ 
#

Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> &copy; 2001, 2005 phpBB Group<br />{TRANSLATION_INFO}

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#

<p align=center><a href="/sitemap.php"><img src="/images/sitemap.gif"></a>

# 
#-----[ OPEN ]------------------------------------------ 
# 
includes/page_header.php

# 
#-----[ FIND ]------------------------------------------ 
# 
	'U_GROUP_CP' => append_sid('groupcp.'.$phpEx),

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
	'L_SITEMAP' => $lang['Sitemap'],
	'U_SITEMAP' => append_sid('sitemap.'.$phpEx),
# 
#-----[ OPEN ]------------------------------------------ 
# 
viewonline.php

# 
#-----[ FIND ]------------------------------------------ 
# 
				case PAGE_FAQ:
					$location = $lang['Viewing_FAQ'];
					$location_url = "faq.$phpEx";
					break;

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
				case PAGE_SITEMAP:
					$location = $lang['Sitemap'];
					$location_url = "sitemap.$phpEx";
					break;
# 
#-----[ OPEN ]------------------------------------------ 
# 
admin/index.php

# 
#-----[ FIND ]------------------------------------------ 
# 
						case PAGE_FAQ:
							$location = $lang['Viewing_FAQ'];
							$location_url = "index.$phpEx?pane=right";
							break;

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
						case PAGE_SITEMAP:
							$location = $lang['Sitemap'];
							$location_url = "sitemap.$phpEx?pane=right";
							break;

# 
#-----[ FIND ]------------------------------------------ 
# 
					case PAGE_FAQ:
						$location = $lang['Viewing_FAQ'];
						$location_url = "index.$phpEx?pane=right";
						break;

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
					case PAGE_SITEMAP:
						$location = $lang['Sitemap'];
						$location_url = "sitemap.$phpEx?pane=right";
						break;

# 
#-----[ OPEN ]------------------------------------------ 
# 
language/lang_english/lang_main.php

# 
#-----[ FIND ]------------------------------------------ 
# 
?>

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 
$lang['Sitemap'] = 'Sitemap';

# 
#-----[ OPEN ]------------------------------------------ 
# 
includes/constants.php

# 
#-----[ FIND ]------------------------------------------ 
# 
define('PAGE_GROUPCP', -11);

# 
#-----[ AFTER,  ADD ]------------------------------------------ 
# 
define('PAGE_SITEMAP', -1045);
	
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM