Lisa,
I did a copy and paste of the following from your path.php to mine, but when I add the updated version the browser can’t find my site.
$global_vars = array(
“bug_tracker_weblog” => “bug_tracker”,
“bug_tracker_template_group” => “bug_tracker”,
); // This array must be associative
This version works on my site:
<?php
// DO NOT ALTER THIS FILE UNLESS YOU HAVE A REASON TO
// Path to the directory containing your backend files
$system_path = “./xxxxxx/”;
$template_group = “”;
$template = “”;
$site_url = “”;
$site_index = “”;
?>
This version does not work on my site:
<?php
// DO NOT ALTER THIS FILE UNLESS YOU HAVE A REASON TO
// Path to the directory containing your backend files
$system_path = “./xxxxxx/”;
$template_group = “”;
$template = “”;
$site_url = “”;
$site_index = “”;
$global_vars = array(
“bug_tracker_weblog” => “bug_tracker”,
“bug_tracker_template_group” => “bug_tracker”,
); // This array must be associative
?>
Can you see what’s wrong?
Thanks.