Any one who can help me,please!!!!!!!!!!!!!!!!
I have installed the info-unlimited-v2.07,but it does work.I insert two pieces of information into the database throgh http://localhost/admin,but when I open this url "http://localhost/information.php" it shows
Sorry. Page Not Found.
Then I trace the code and find that codes below of the catalog/information.php was executed
if(!isset($_GET['info_id']) || !tep_not_null($_GET['info_id']) || !is_numeric($_GET['info_id']) )
{
$title = 'Sorry. Page Not Found.'; $breadcrumb->add($INFO_TITLE, tep_href_link(FILENAME_INFORMATION, 'info_id=' . $_GET['info_id'], 'NONSSL'));
}
else
{
$info_id = intval($_GET['info_id']);
$information_query = tep_db_query("SELECT information_title, information_description FROM " . TABLE_INFORMATION . " WHERE visible='1' AND information_id='" . $info_id . "' and language_id='" . (int)$languages_id ."'");
$information = tep_db_fetch_array($information_query);
$title = stripslashes($information['information_title']);
$page_description = stripslashes($information['information_description']);
// Added as noticed by infopages module
if (!preg_match("/([\<])([^\>]{1,})*([\>])/i", $page_description))
{
$page_description = str_replace("\r\n", "<br>\r\n", $page_description);
}
$breadcrumb->add($title, tep_href_link(FILENAME_INFORMATION, 'info_id=' . $_GET['info_id'], 'NONSSL'));
}
Could someone tell me how to fix this problem,and any help will be very very very appreciated!