Hello,
index.php and browse.php are creating core files in my server. I was told that it does happen when a program crash. I was also told that you might know how to use the core files to debug the script. I can not upload the file here, they are too big. Where can I send them.
Note that if the scripts crash it might have some implication about the developpement of Indexu 3.3 further more if it happen to me it is likelly that it happen to other Indexu users.
I did look at my error log in the server, I did find countless occurence of:
PHP Code:
PHP Fatal error: Call to a member function on a non-object in /home/fishsigh/public_html/lib/category.class.php on line 336
How can I fix it?
Here is the line in contect.
PHP Code:
// method to display the category path
// -----------------------------------
function GetCategoryPath($cat,$file="") {
if(empty($file)) {
$query = "select path from idx_category_path where category_id=$cat";
$result = $this->db_connect->Execute($query);
(line 336) --> $path = $result->Fields("path");
}
else {
$query = "select path_with_url from idx_category_path where category_id=$cat";
$result = $this->db_connect->Execute($query);
$path = $result->Fields("path_with_url");
}
return $path;
}
Thank you


