Quote
Error
SQL-query : [Edit]
DELETE FROM configuration WHERE configuration_group_id = '456'
MySQL said:
Table 'the-final-touch_net_1.configuration' doesn't exist
Is there any way to solve this please..
Thanks in advance.
Posted 20 September 2006, 15:06
Quote
Posted 20 September 2006, 16:50
Posted 21 September 2006, 02:45
Posted 21 September 2006, 17:50
Posted 21 September 2006, 19:34
Posted 02 October 2006, 17:26
Posted 05 October 2006, 03:23
Posted 05 October 2006, 07:39
Posted 07 October 2006, 03:15
Posted 08 October 2006, 01:34
zareen, on Nov 15 2005, 06:33 AM, said:
Posted 19 October 2006, 04:43
// add the products model to the breadcrumb trail
if (isset($HTTP_GET_VARS['products_id'])) {
$model_query = tep_db_query("select products_model from " . TABLE_PRODUCTS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
if (tep_db_num_rows($model_query)) {
$model = tep_db_fetch_array($model_query);
$breadcrumb->add($model['products_model'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS['products_id']));
}
}
and after add:
// include the articles functions
require(DIR_WS_FUNCTIONS . 'articles.php');
require(DIR_WS_FUNCTIONS . 'article_header_tags.php');
// calculate topic path
if (isset($HTTP_GET_VARS['tPath'])) {
$tPath = $HTTP_GET_VARS['tPath'];
} elseif (isset($HTTP_GET_VARS['articles_id']) && !isset($HTTP_GET_VARS['authors_id'])) {
$tPath = tep_get_article_path($HTTP_GET_VARS['articles_id']);
} else {
$tPath = '';
}
if (tep_not_null($tPath)) {
$tPath_array = tep_parse_topic_path($tPath);
$tPath = implode('_', $tPath_array);
$current_topic_id = $tPath_array[(sizeof($tPath_array)-1)];
} else {
$current_topic_id = 0;
}
// add topic names or the author name to the breadcrumb trail
if (isset($tPath_array)) {
for ($i=0, $n=sizeof($tPath_array); $i<$n; $i++) {
$topics_query = tep_db_query("select topics_name from " . TABLE_TOPICS_DESCRIPTION . " where topics_id = '" . (int)$tPath_array[$i] . "' and language_id = '" . (int)$languages_id . "'");
if (tep_db_num_rows($topics_query) > 0) {
$topics = tep_db_fetch_array($topics_query);
$breadcrumb->add($topics['topics_name'], tep_href_link(FILENAME_ARTICLES, 'tPath=' . implode('_', array_slice($tPath_array, 0, ($i+1)))));
} else {
break;
}
}
} elseif (isset($HTTP_GET_VARS['authors_id'])) {
$authors_query = tep_db_query("select authors_name from " . TABLE_AUTHORS . " where authors_id = '" . (int)$HTTP_GET_VARS['authors_id'] . "'");
if (tep_db_num_rows($authors_query)) {
$authors = tep_db_fetch_array($authors_query);
$breadcrumb->add('Articles by ' . $authors['authors_name'], tep_href_link(FILENAME_ARTICLES, 'authors_id=' . $HTTP_GET_VARS['authors_id']));
}
}
// add the articles name to the breadcrumb trail
if (isset($HTTP_GET_VARS['articles_id'])) {
$article_query = tep_db_query("select articles_name from " . TABLE_ARTICLES_DESCRIPTION . " where articles_id = '" . (int)$HTTP_GET_VARS['articles_id'] . "'");
if (tep_db_num_rows($article_query)) {
$article = tep_db_fetch_array($article_query);
if (isset($HTTP_GET_VARS['authors_id'])) {
$breadcrumb->add($article['articles_name'], tep_href_link(FILENAME_ARTICLE_INFO, 'authors_id=' . $HTTP_GET_VARS['authors_id'] . '&articles_id=' . $HTTP_GET_VARS['articles_id']));
} else {
$breadcrumb->add($article['articles_name'], tep_href_link(FILENAME_ARTICLE_INFO, 'tPath=' . $tPath . '&articles_id=' . $HTTP_GET_VARS['articles_id']));
}
}
}
Edited by Tsuri Japan, 19 October 2006, 04:45.
Posted 19 October 2006, 10:51
Posted 19 October 2006, 17:19
// verify the IP address if the feature is enabled
if (SESSION_CHECK_IP_ADDRESS == 'True') {
67.138.240.18_address = tep_get_ip_address();
if (!tep_session_is_registered('SESSION_IP_ADDRESS')) {
$SESSION_IP_ADDRESS = $ip_address;
tep_session_register('SESSION_IP_ADDRESS');
}
if ($SESSION_IP_ADDRESS != $ip_address) {
tep_session_destroy();
tep_redirect(tep_href_link(FILENAME_LOGIN));
}
}
Posted 28 October 2006, 04:19
Edited by genxer, 28 October 2006, 04:23.
Posted 06 November 2006, 12:50
claybaker, on Oct 5 2006, 03:23 AM, said:
Posted 08 November 2006, 10:57
Posted 09 November 2006, 03:48
Posted 09 November 2006, 14:24
zaxxon, on Nov 8 2006, 10:57 AM, said:
Posted 09 November 2006, 15:11
Edited by jchasick, 09 November 2006, 15:12.
Posted 13 November 2006, 03:35