In qualche maniera, anche se non ne capisco granchè, sono riuscito ad installare la contrib scaricata da oscommerce.com S**e M*p MS2 - 2.3a per la mappa del sito ma alla fine del risultato da questo errore.Cosa posso fare per risolverlo?
1146 - Table 'flaspad_it_db.TABLE_INFOPAGES' doesn't exist
select infopages_id, v_order, visible, info_title, description from TABLE_INFOPAGES where visible = 1 and v_order > 0 order by v_order
[TEP STOP]
da questo sembra che manchi una tabella, ma non so come inserirla.
L'altro problema è il link Home Page sulla pagina iniziale....ho provato a cambiare di tutto ma non sono riuscito a fargli cambiare indirizzo per mettere il link giusto...
Qualcuno può aiutarmi?
Il link per dare un occhiata agli errori è: http://utenti.lycos.it/flaspad/shop/catalog
Il link Home Page e Site Map
Ho provato a cambiare il link define('HTTP_SERVER', 'http://utenti.lycos.it'); // eg, http://localhost ma non cambia proprio niente, anche se gli cambio indirizzo mi resta l'home page settata su 'http://utenti.lycos.it' mentre vorrei metterla in http://utenti.lycos.it/flaspad/shop/catalog
avevo trovato con cerca in giro per i forum qualcosa ma non ha funzionato
define('HTTP_SERVER', 'http://utenti.lycos.it'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'http://utenti.lycos.it/flaspad/shop/catalog');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', 'http://utenti.lycos.it/flaspad/shop/catalog');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', '/flaspad/shop/catalog/');
define('DIR_WS_HTTPS_CATALOG', '');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', '/data/members/free/tripod/it/f/l/a/flaspad/htdocs/shop/catalog/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
Grazie a chiunque possa aiutarmi....
Chiedo aiuti per due problemi....
Moderatore: mod Generali
Chiedo aiuti per due problemi....
Ultima modifica di flaspad il 14/11/2006, 19:27, modificato 2 volte in totale.
- DynamoEffects
- membro Junior
- Messaggi: 19
- Iscritto il: 13/05/2006, 17:48
- Località: RE
- Contatta:
Il problema e' che quella versione funziona solo se hai anche InfoPages installato. Cancelli quella versione dal tuo negozio e mettere questo versione:
http://www.oscommerce.com/community/contributions,3306
http://www.oscommerce.com/community/contributions,3306
Sto imparando l'italiano quindi correggi i miei errori se ce ne sono.
Ho provato ad installare la contrib che mi hai consigliato, ma ho riscontrato un problema a riguardo delle ultime righe del file readme.DynamoEffects ha scritto:Il problema e' che quella versione funziona solo se hai anche InfoPages installato. Cancelli quella versione dal tuo negozio e mettere questo versione:
http://www.oscommerce.com/community/contributions,3306
5) In admin/includes/filenames.php add the following before the closing ?>
ADD
//dynamic sitemap control
define('FILENAME_SITEMAP', 'sitemap.php');
======================================================================================================
6) In admin/includes/database_tables.php add the following before the closing ?>
ADD
//dynamic sitemap control
define('TABLE_SITEMAP_EXCLUDE', 'sitemap_exclude');
======================================================================================================
6) In admin/includes/boxes/tools.php
FIND:
'<a href="' . tep_href_link(FILENAME_WHOS_ONLINE) . '" class="menuBoxContentLink">' . BOX_TOOLS_WHOS_ONLINE . '</a>');
BEFORE IT ADD:
'<a href="' . tep_href_link(FILENAME_SITEMAP) . '" class="menuBoxContentLink">' . BOX_TOOLS_SITEMAP . '</a><br>' . //dynamic sitemap control
======================================================================================================
6) In admin/includes/boxes/tools.php
FIND:
define('BOX_TOOLS_WHOS_ONLINE', 'Who\'s Online');
AFTER IT ADD:
define('BOX_TOOLS_SITEMAP', 'Sitemap');
FIND:
define('IMAGE_UPLOAD', 'Upload');
AFTER IT ADD:
define('IMAGE_EXCLUDE', 'Exclude');
That should do it.
======================================================================================================
NOTES:
You should not get "unable to determine link" message, cause these boxes are not
displayed any more. There are some boxes and files excluded by default, cause they
have not standart format and would not be displayed anyway. But you can add them if you want.
Here is the support thread for this contribution:
http://forums.oscommerce.com/index.php? ... 7&t=157547
Non trovo queste stringhe sul mio admin/includes/boxes/tools.php
php
/*
$Id: tools.php,v 1.21 2003/07/09 01:18:53 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2002 osCommerce
Released under the GNU General Public License
*/
?>
<!-- tools //-->
<tr>
<td>
<?php
$heading = array();
$contents = array();
$heading[] = array('text' => BOX_HEADING_TOOLS,
'link' => tep_href_link(FILENAME_BACKUP, 'selected_box=tools'));
if ($selected_box == 'tools') {
$contents[] = array('text' =>
//Admin begin
// '<a href="' . tep_href_link(FILENAME_BACKUP) . '" class="menuBoxContentLink">' . BOX_TOOLS_BACKUP . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_BANNER_MANAGER) . '" class="menuBoxContentLink">' . BOX_TOOLS_BANNER_MANAGER . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_CACHE) . '" class="menuBoxContentLink">' . BOX_TOOLS_CACHE . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_DEFINE_LANGUAGE) . '" class="menuBoxContentLink">' . BOX_TOOLS_DEFINE_LANGUAGE . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_FILE_MANAGER) . '" class="menuBoxContentLink">' . BOX_TOOLS_FILE_MANAGER . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_MAIL) . '" class="menuBoxContentLink">' . BOX_TOOLS_MAIL . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_NEWSLETTERS) . '" class="menuBoxContentLink">' . BOX_TOOLS_NEWSLETTER_MANAGER . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_SERVER_INFO) . '" class="menuBoxContentLink">' . BOX_TOOLS_SERVER_INFO . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_WHOS_ONLINE) . '" class="menuBoxContentLink">' . BOX_TOOLS_WHOS_ONLINE . '</a><br>' .
// '<a href="' . tep_href_link(FILENAME_SITEMAP) . '" class="menuBoxContentLink">' . BOX_TOOLS_SITEMAP . '</a>') ;
tep_admin_files_boxes(FILENAME_BACKUP, BOX_TOOLS_BACKUP) .
tep_admin_files_boxes(FILENAME_BANNER_MANAGER, BOX_TOOLS_BANNER_MANAGER) .
tep_admin_files_boxes(FILENAME_CACHE, BOX_TOOLS_CACHE) .
tep_admin_files_boxes(FILENAME_DEFINE_LANGUAGE, BOX_TOOLS_DEFINE_LANGUAGE) .
tep_admin_files_boxes(FILENAME_FILE_MANAGER, BOX_TOOLS_FILE_MANAGER) .
tep_admin_files_boxes(FILENAME_MAIL, BOX_TOOLS_MAIL) .
tep_admin_files_boxes(FILENAME_NEWSLETTERS, BOX_TOOLS_NEWSLETTER_MANAGER) .
tep_admin_files_boxes(FILENAME_SERVER_INFO, BOX_TOOLS_SERVER_INFO) .
tep_admin_files_boxes(FILENAME_WHOS_ONLINE, BOX_TOOLS_WHOS_ONLINE));
//Admin end
}
$box = new box;
echo $box->menuBox($heading, $contents);
?>
</td>
</tr>
<!-- tools_eof //-->
Ultima modifica di flaspad il 14/11/2006, 19:17, modificato 1 volta in totale.