Problema cambio indirizzo spedizioni
Moderatore: mod Generali
Problema cambio indirizzo spedizioni
Ciao ragà
Quando eseguo un ordine e clicco per cambiare indirizzo di destinazione ecco cosa succede:
Parse error: parse error in D:\Inetpub\webs\sitomio.itx\includes\modules\checkout_new_address.php on line 132
Cosa vuol dire? Ho controllato il suddetto file ma la riga 132 risulta vuota ed è l'ultima del file.
Se qualcuno può aiutarmi grazie mille in anticipo
Quando eseguo un ordine e clicco per cambiare indirizzo di destinazione ecco cosa succede:
Parse error: parse error in D:\Inetpub\webs\sitomio.itx\includes\modules\checkout_new_address.php on line 132
Cosa vuol dire? Ho controllato il suddetto file ma la riga 132 risulta vuota ed è l'ultima del file.
Se qualcuno può aiutarmi grazie mille in anticipo
E' dura!!!!!!!!!!!
Re: Problema cambio indirizzo spedizioni
Qualcuno ha mai provato sul proprio sito ad utilizzare questa funzione di cambio indirizzo? Se si e se funziona mi può dare qualche dritta?albasoft ha scritto:Ciao ragà
Quando eseguo un ordine e clicco per cambiare indirizzo di destinazione ecco cosa succede:
Parse error: parse error in D:\Inetpub\webs\sitomio.itx\includes\modules\checkout_new_address.php on line 132
Cosa vuol dire? Ho controllato il suddetto file ma la riga 132 risulta vuota ed è l'ultima del file.
Se qualcuno può aiutarmi grazie mille in anticipo
Ciaooo e grazie 1000 in anticipo
M.
E' dura!!!!!!!!!!!
Re: Problema cambio indirizzo spedizioni
Potrebbe essere una parentesi non chiusa all'interno del filealbasoft ha scritto:Ciao ragà
Parse error: parse error in D:\Inetpub\webs\sitomio.itx\includes\modules\checkout_new_address.php on line 132
Cosa vuol dire? Ho controllato il suddetto file ma la riga 132 risulta vuota ed è l'ultima del file.
'iao
Sergio
http://www.oscomtemplate.com - E' disponibile il nuovo pacchetto free con forum di supporto
http://www.semilandia.it
http://www.semilandia.it
Re: Problema cambio indirizzo spedizioni
Anche se non ho modificato il file contenuto nel totalpack?Bass ha scritto:Potrebbe essere una parentesi non chiusa all'interno del filealbasoft ha scritto:Ciao ragà
Parse error: parse error in D:\Inetpub\webs\sitomio.itx\includes\modules\checkout_new_address.php on line 132
Cosa vuol dire? Ho controllato il suddetto file ma la riga 132 risulta vuota ed è l'ultima del file.
'iao
Sergio
Controllerò comunque.
E' dura!!!!!!!!!!!
Ancora cambio indirizzo spedizioni: problema
Ecco il file, cosa c'é ch non va? Mi dà errore parse etc...
<?php
/*
$Id: checkout_new_address.php,v 1.4 2003/06/09 22:49:57 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
if (!isset($process)) $process = false;
?>
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<?php
if (ACCOUNT_GENDER == 'true') {
if (isset($gender)) {
$male = ($gender == 'm') ? true : false;
$female = ($gender == 'f') ? true : false;
} else {
$male = false;
$female = false;
}
?>
<tr>
<td class="main"><?php echo ENTRY_GENDER; ?></td>
<td class="main"><?php echo tep_draw_radio_field('gender', 'm', $male) . ' ' . MALE . ' ' . tep_draw_radio_field('gender', 'f', $female) . ' ' . FEMALE . ' ' . (tep_not_null(ENTRY_GENDER_TEXT) ? '<span class="inputRequirement">' . ENTRY_GENDER_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<tr>
<td class="main"><?php echo ENTRY_FIRST_NAME; ?></td>
<td class="main"><?php echo tep_draw_input_field('firstname') . ' ' . (tep_not_null(ENTRY_FIRST_NAME_TEXT) ? '<span class="inputRequirement">' . ENTRY_FIRST_NAME_TEXT . '</span>': ''); ?></td>
</tr>
<tr>
<td class="main"><?php echo ENTRY_LAST_NAME; ?></td>
<td class="main"><?php echo tep_draw_input_field('lastname') . ' ' . (tep_not_null(ENTRY_LAST_NAME_TEXT) ? '<span class="inputRequirement">' . ENTRY_LAST_NAME_TEXT . '</span>': ''); ?></td>
</tr>
<!--PIVACF start-->
<?php
if (ACCOUNT_CF == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_CF; ?></td>
<td class="main"><?php echo tep_draw_input_field('cf') . ' ' . (tep_not_null(ENTRY_CF_TEXT) ? '<span class="inputRequirement">' . ENTRY_CF_TEXT . '</span>': ''); ?></td>
</tr>
<!--PIVACF end-->
<?php
if (ACCOUNT_COMPANY == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_COMPANY; ?></td>
<td class="main"><?php echo tep_draw_input_field('company') . ' ' . (tep_not_null(ENTRY_COMPANY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COMPANY_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<!--PIVACF start-->
<?php
if (ACCOUNT_PIVA == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_PIVA; ?></td>
<td class="main"><?php echo tep_draw_input_field('piva') . ' ' . (tep_not_null(ENTRY_PIVA_TEXT) ? '<span class="inputRequirement">' . ENTRY_PIVA_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<!--PIVACF end-->
<tr>
<td class="main"><?php echo ENTRY_STREET_ADDRESS; ?></td>
<td class="main"><?php echo tep_draw_input_field('street_address') . ' ' . (tep_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="inputRequirement">' . ENTRY_STREET_ADDRESS_TEXT . '</span>': ''); ?></td>
</tr>
<?php
if (ACCOUNT_SUBURB == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_SUBURB; ?></td>
<td class="main"><?php echo tep_draw_input_field('suburb') . ' ' . (tep_not_null(ENTRY_SUBURB_TEXT) ? '<span class="inputRequirement">' . ENTRY_SUBURB_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<tr>
<td class="main"><?php echo ENTRY_POST_CODE; ?></td>
<td class="main"><?php echo tep_draw_input_field('postcode') . ' ' . (tep_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="inputRequirement">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?></td>
</tr>
<tr>
<td class="main"><?php echo ENTRY_CITY; ?></td>
<td class="main"><?php echo tep_draw_input_field('city') . ' ' . (tep_not_null(ENTRY_CITY_TEXT) ? '<span class="inputRequirement">' . ENTRY_CITY_TEXT . '</span>': ''); ?></td>
</tr>
<?php
if (ACCOUNT_STATE == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_STATE; ?></td>
<td class="main">
<?php
if ($process == true) {
if ($entry_state_has_zones == true) {
$zones_array = array();
$zones_query = tep_db_query("select zone_name from " . TABLE_ZONES . " where zone_country_id = '" . (int)$country . "' order by zone_name");
while ($zones_values = tep_db_fetch_array($zones_query)) {
$zones_array[] = array('id' => $zones_values['zone_name'], 'text' => $zones_values['zone_name']);
}
echo tep_draw_pull_down_menu('state', $zones_array);
} else {
echo tep_draw_input_field('state');
}
} else {
echo tep_draw_input_field('state');
}
if (tep_not_null(ENTRY_STATE_TEXT)) echo ' <span class="inputRequirement">' . ENTRY_STATE_TEXT;
?>
</td>
</tr>
<?php
}
?>
<tr>
<td class="main"><?php echo ENTRY_COUNTRY; ?></td>
<td class="main"><?php echo tep_get_country_list('country') . ' ' . (tep_not_null(ENTRY_COUNTRY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COUNTRY_TEXT . '</span>': ''); ?></td>
</tr>
</table>
<!-- checkout_new_address_eof //-->
<?php
/*
$Id: checkout_new_address.php,v 1.4 2003/06/09 22:49:57 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
if (!isset($process)) $process = false;
?>
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<?php
if (ACCOUNT_GENDER == 'true') {
if (isset($gender)) {
$male = ($gender == 'm') ? true : false;
$female = ($gender == 'f') ? true : false;
} else {
$male = false;
$female = false;
}
?>
<tr>
<td class="main"><?php echo ENTRY_GENDER; ?></td>
<td class="main"><?php echo tep_draw_radio_field('gender', 'm', $male) . ' ' . MALE . ' ' . tep_draw_radio_field('gender', 'f', $female) . ' ' . FEMALE . ' ' . (tep_not_null(ENTRY_GENDER_TEXT) ? '<span class="inputRequirement">' . ENTRY_GENDER_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<tr>
<td class="main"><?php echo ENTRY_FIRST_NAME; ?></td>
<td class="main"><?php echo tep_draw_input_field('firstname') . ' ' . (tep_not_null(ENTRY_FIRST_NAME_TEXT) ? '<span class="inputRequirement">' . ENTRY_FIRST_NAME_TEXT . '</span>': ''); ?></td>
</tr>
<tr>
<td class="main"><?php echo ENTRY_LAST_NAME; ?></td>
<td class="main"><?php echo tep_draw_input_field('lastname') . ' ' . (tep_not_null(ENTRY_LAST_NAME_TEXT) ? '<span class="inputRequirement">' . ENTRY_LAST_NAME_TEXT . '</span>': ''); ?></td>
</tr>
<!--PIVACF start-->
<?php
if (ACCOUNT_CF == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_CF; ?></td>
<td class="main"><?php echo tep_draw_input_field('cf') . ' ' . (tep_not_null(ENTRY_CF_TEXT) ? '<span class="inputRequirement">' . ENTRY_CF_TEXT . '</span>': ''); ?></td>
</tr>
<!--PIVACF end-->
<?php
if (ACCOUNT_COMPANY == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_COMPANY; ?></td>
<td class="main"><?php echo tep_draw_input_field('company') . ' ' . (tep_not_null(ENTRY_COMPANY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COMPANY_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<!--PIVACF start-->
<?php
if (ACCOUNT_PIVA == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_PIVA; ?></td>
<td class="main"><?php echo tep_draw_input_field('piva') . ' ' . (tep_not_null(ENTRY_PIVA_TEXT) ? '<span class="inputRequirement">' . ENTRY_PIVA_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<!--PIVACF end-->
<tr>
<td class="main"><?php echo ENTRY_STREET_ADDRESS; ?></td>
<td class="main"><?php echo tep_draw_input_field('street_address') . ' ' . (tep_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="inputRequirement">' . ENTRY_STREET_ADDRESS_TEXT . '</span>': ''); ?></td>
</tr>
<?php
if (ACCOUNT_SUBURB == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_SUBURB; ?></td>
<td class="main"><?php echo tep_draw_input_field('suburb') . ' ' . (tep_not_null(ENTRY_SUBURB_TEXT) ? '<span class="inputRequirement">' . ENTRY_SUBURB_TEXT . '</span>': ''); ?></td>
</tr>
<?php
}
?>
<tr>
<td class="main"><?php echo ENTRY_POST_CODE; ?></td>
<td class="main"><?php echo tep_draw_input_field('postcode') . ' ' . (tep_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="inputRequirement">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?></td>
</tr>
<tr>
<td class="main"><?php echo ENTRY_CITY; ?></td>
<td class="main"><?php echo tep_draw_input_field('city') . ' ' . (tep_not_null(ENTRY_CITY_TEXT) ? '<span class="inputRequirement">' . ENTRY_CITY_TEXT . '</span>': ''); ?></td>
</tr>
<?php
if (ACCOUNT_STATE == 'true') {
?>
<tr>
<td class="main"><?php echo ENTRY_STATE; ?></td>
<td class="main">
<?php
if ($process == true) {
if ($entry_state_has_zones == true) {
$zones_array = array();
$zones_query = tep_db_query("select zone_name from " . TABLE_ZONES . " where zone_country_id = '" . (int)$country . "' order by zone_name");
while ($zones_values = tep_db_fetch_array($zones_query)) {
$zones_array[] = array('id' => $zones_values['zone_name'], 'text' => $zones_values['zone_name']);
}
echo tep_draw_pull_down_menu('state', $zones_array);
} else {
echo tep_draw_input_field('state');
}
} else {
echo tep_draw_input_field('state');
}
if (tep_not_null(ENTRY_STATE_TEXT)) echo ' <span class="inputRequirement">' . ENTRY_STATE_TEXT;
?>
</td>
</tr>
<?php
}
?>
<tr>
<td class="main"><?php echo ENTRY_COUNTRY; ?></td>
<td class="main"><?php echo tep_get_country_list('country') . ' ' . (tep_not_null(ENTRY_COUNTRY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COUNTRY_TEXT . '</span>': ''); ?></td>
</tr>
</table>
<!-- checkout_new_address_eof //-->
E' dura!!!!!!!!!!!
Re: Ancora cambio indirizzo spedizioni: problema
Prova ad aggiungere queste righealbasoft ha scritto:Ecco il file, cosa c'é ch non va? Mi dà errore parse etc...
Codice: Seleziona tutto
<?php
}
?>
'iao
Sergio
http://www.oscomtemplate.com - E' disponibile il nuovo pacchetto free con forum di supporto
http://www.semilandia.it
http://www.semilandia.it
ancora errore
Ciao Sergio,
se inserisco le righe che mi hai suggerito nel codice l'errore parse me lo genera alla riga 41 invece che all'ultima riga.
Boh? Così a prima vista scorrendo il codice mi sembra tutto ok ....
Non sono un gran lume in fatto di programmazione e quindi può darsi che mi sia scappato qualcosa ehehhe
Cmq grazie 1000 lo stesso.
P.S. Se c'è qualche buon'anima che mi fa un copia e incolla del proprio ... aah magari ....
se inserisco le righe che mi hai suggerito nel codice l'errore parse me lo genera alla riga 41 invece che all'ultima riga.
Boh? Così a prima vista scorrendo il codice mi sembra tutto ok ....
Non sono un gran lume in fatto di programmazione e quindi può darsi che mi sia scappato qualcosa ehehhe
Cmq grazie 1000 lo stesso.
P.S. Se c'è qualche buon'anima che mi fa un copia e incolla del proprio ... aah magari ....
E' dura!!!!!!!!!!!
Risolto problema cambio indirizzo
Sergio, sei un mitooooooo
Ho risolto grazieeee
Ho inserito il pezzettino di codice alla riga 56 e ora tutto funzionaaaa, ancora grazieeee 1000
Ho risolto grazieeee
Ho inserito il pezzettino di codice alla riga 56 e ora tutto funzionaaaa, ancora grazieeee 1000
E' dura!!!!!!!!!!!