
This is really stressing me out! For the life of me I can't understand why...
http://www.gymnasticsvillage.com/about- ... ays-2.html works but
http://www.gymnasticsvillage.com/about-us/holidays.html doesn't when they're both using the same template.
Stab in the dark but I've pasted the config file below...I set the heirarchy to 'false' but that didn't do anything. I set the global setting to NOT use heirarchy - per what I found in the forums - still nada!
I purposely removed the password stuff:
<?php
# CMS Made Simple Configuration File
# Documentation: /doc/CMSMS_config_reference.pdf
#
$config['dbms'] = 'mysql';
$config['db_hostname'] = 'localhost';
$config['db_username'] = '';
$config['db_password'] = '';
$config['db_name'] = '';
$config['db_prefix'] = 'cms_';
$config['db_port'] = 0;
$config['root_url'] = 'http://www.gymnasticsvillage.com';
$config['timezone'] = 'America/New_York';
$config['default_encoding'] = 'utf-8';
$config['url_rewriting'] = 'mod_rewrite';
#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '.html';
#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy? (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = 'false';
#If using none of the above options, what should we be using for the query string
#variable? (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';
?>