Problema visualizzazione oggetti

Postate qui discussioni di carattere generale riguardo a problemi di installazione e configurazione di osCommerce

Moderatore: mod Generali

Rispondi
valerio
membro Junior
membro Junior
Messaggi: 5
Iscritto il: 16/11/2006, 9:53

Problema visualizzazione oggetti

Messaggio da valerio »

Ciao a tutti. Ho un problemino . Ho installato oscommerce, tutto bene. L'unico problema che ho, per ora, è che se clicco sull'immagine di un prodotto per vederlo in particolare mi fuori la scritta;
Firefox non riesce a contattare il server sisme-italia.comdir_ws_http_catalogproduct_info.php.


Con IE mi da la classica Pagina non trovata.

Se invece guardo l'anteprima dall'admin è tutto ok.

Qualcuno sa dirmi qualcosa?

Grazie mille.

Valerio
Avatar utente
DynamoEffects
membro Junior
membro Junior
Messaggi: 19
Iscritto il: 13/05/2006, 17:48
Località: RE
Contatta:

Messaggio da DynamoEffects »

Il problema e' con il tuo /includes/configure.php. Metti il tuo file qua, senza password, e poi possiamo trovare il problema.

Anche, puoi provare a metter questa riga in /includes/configure.php:

define('DIR_WS_HTTP_CATALOG', '/');
Sto imparando l'italiano quindi correggi i miei errori se ce ne sono.
valerio
membro Junior
membro Junior
Messaggi: 5
Iscritto il: 16/11/2006, 9:53

Messaggio da valerio »

:cry: ho provato ad aggiungere la riga, ma mi da' errore

Il file è cosi :

<?php
// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://sisme-italia.com'); // eg, http://localhost - should not be NULL for productive servers
define('HTTPS_SERVER', 'https://www.sisme-italia.com'); // eg, https://localhost - should not be NULL for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname
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', DIR_WS_CATALOG . 'pub/');
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace whit your local path. (eg, /usl/local/apache/htdocs)
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers
define('DB_SERVER_USERNAME', 'USER');
define('DB_SERVER_PASSWORD', 'PASSWORD');
define('DB_DATABASE', 'DB');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>

:) grazie mille per la tua disponibilità
8) Valerio
valerio
membro Junior
membro Junior
Messaggi: 5
Iscritto il: 16/11/2006, 9:53

Messaggio da valerio »

:cry: ho provato ad aggiungere la riga, ma mi da' errore

Il file è cosi :

<?php
// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://sisme-italia.com'); // eg, http://localhost - should not be NULL for productive servers
define('HTTPS_SERVER', 'https://www.sisme-italia.com'); // eg, https://localhost - should not be NULL for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname
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', DIR_WS_CATALOG . 'pub/');
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace whit your local path. (eg, /usl/local/apache/htdocs)
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers
define('DB_SERVER_USERNAME', 'USER');
define('DB_SERVER_PASSWORD', 'PASSWORD');
define('DB_DATABASE', 'DB');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>

:) grazie mille per la tua disponibilità
8) Valerio
Avatar utente
DynamoEffects
membro Junior
membro Junior
Messaggi: 19
Iscritto il: 13/05/2006, 17:48
Località: RE
Contatta:

Messaggio da DynamoEffects »

<?php
// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://sisme-italia.com'); // eg, http://localhost - should not be NULL for productive servers
define('HTTPS_SERVER', 'https://www.sisme-italia.com'); // eg, https://localhost - should not be NULL for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_WS_HTTP_CATALOG', DIR_WS_CATALOG);
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname
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', DIR_WS_CATALOG . 'pub/');
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace whit your local path. (eg, /usl/local/apache/htdocs)
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers
define('DB_SERVER_USERNAME', 'USER');
define('DB_SERVER_PASSWORD', 'PASSWORD');
define('DB_DATABASE', 'DB');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>
Sto imparando l'italiano quindi correggi i miei errori se ce ne sono.
valerio
membro Junior
membro Junior
Messaggi: 5
Iscritto il: 16/11/2006, 9:53

Messaggio da valerio »

:? nix.... niente da fare.... continua a dirmi
sisme-italia.comdir_ws_http_catalogproduct_info.php.

pero' ho provato una cosa, se tolgo la scritta dir_ws_http e aggiungo uno / prima di catalog e uno dopo ( /catalog/ ) funziona.

Grazie per la tua disponibilità

8) Valerio
valerio
membro Junior
membro Junior
Messaggi: 5
Iscritto il: 16/11/2006, 9:53

Messaggio da valerio »

:) funzionaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

evvaiiiiiiiiiiiiiiiiiiiiiiii :D :D :D :D :D :D :D :D :D :D :D


Grazie mille. grazie
Mi hai fatto un favorissimo
Ciao, Valerio
Rispondi