Right! Manually removing the .php from the url makes it work.
*Now* I found a new problem. I went to my developers tool kit (what an awesome tool! Couldn't work without it.) and entered "main_page=infopages.php" to find what pages to edit and received the following error when attempting to search:
Code:
Warning: dir(/home/httpd/vhosts/freshabundance.com/httpdocs//_private) [function.dir]: failed to open dir: Permission denied in
/home/httpd/vhosts/freshabundance.com/httpdocs/admin/developers_tool_kit.php on line 36
Fatal error: Call to a member function read() on a non-object in /home/httpd/vhosts/freshabundance.com/httpdocs/admin/developers_tool_kit.php on line 38
I'm guessing it's another PHP 5 error.
Here is the applicable code from developers_tool_kit.php lines 34 through 47
Code:
// add directory name to the sub_dir_files list;
$sub_dir_files[] = $dirName;
$d = dir($dirName);
$file_extension = '.php';
while($entry = $d->read()) {
if ($entry != "." && $entry != "..") {
if (is_dir($dirName."/".$entry)) {
if ($entry == 'CVS') {
// skip
} else {
getDirList($dirName."/".$entry);
}
} else {
if (substr($entry, strrpos($entry, '.')) == $file_extension) {
jacque