Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Purchase without account with 2.3.1


Blin4ik

Recommended Posts

Hey,

 

I want to install the PWA function, but it is not so easy...

 

I have to replace some lines in "create_account.php" but

this lines does not exist in 2.3.1

 

      <tr>
       <td class="main"><b><?php echo CATEGORY_OPTIONS; ?></b></td>
     </tr>
     <tr>
       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
         <tr class="infoBoxContents">

 

there is no "CATEGORY_OPTIONS" , thats my problem now, I don't know what to do, the same problem

in header.php(other lines)

Link to comment
Share on other sites

I don't think it's been updated to work with 2.3.1

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

  • 2 months later...

I have the problem that the button on creating_account.php doesn't work. That means that I'm staying on the create_account.php page if i wanna continue to shipping options. That problem i have either if i use pwa or just creating an account on the standart way.

Link to comment
Share on other sites

Buttons that don't work at all when clicked usually mean your <form...> </form> tags are screwed up.

 

Can't say for sure without the URL.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Examine the HTML source for the page in question.

 

Count the number of <form...> and </form> tags.

 

They should appear in equal number in the active code.

 

If they don't - you have a problem.

 

Also be sure you don't have two <form..> tags in succession or two </form> tags in succession.

 

They must appear alternately ( <form...> </form> ) in the code.

 

If you have two <form..> tags or two </form> tags in succession - you have a problem.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Everything's alright with the <form>-Tags. It calls tep_draw_form and ends with </form> and both only once. Here th code if it helps:

 

<?php
/*
 $Id$

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2010 osCommerce

 Released under the GNU General Public License
*/

require('includes/application_top.php');

// PWA BOF
if (isset($HTTP_GET_VARS['guest']) && $cart->count_contents() < 1)
   tep_redirect(tep_href_link(FILENAME_SHOPPING_CART));
// PWA EOF
// needs to be included earlier to set the success message in the messageStack
require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CREATE_ACCOUNT);

$process = false;
if (isset($HTTP_POST_VARS['action']) && ($HTTP_POST_VARS['action'] == 'process') && isset($HTTP_POST_VARS['formid']) && ($HTTP_POST_VARS['formid'] == $sessiontoken)) {
   $process = true;

   if (ACCOUNT_GENDER == 'true') {
       if (isset($HTTP_POST_VARS['gender'])) {
           $gender = tep_db_prepare_input($HTTP_POST_VARS['gender']);
       } else {
           $gender = false;
       }
   }
   $firstname = tep_db_prepare_input($HTTP_POST_VARS['firstname']);
   $lastname = tep_db_prepare_input($HTTP_POST_VARS['lastname']);
   if (ACCOUNT_DOB == 'true')
       $dob = tep_db_prepare_input($HTTP_POST_VARS['dob']);
   $email_address = tep_db_prepare_input($HTTP_POST_VARS['email_address']);
   if (ACCOUNT_COMPANY == 'true')
       $company = tep_db_prepare_input($HTTP_POST_VARS['company']);
   $street_address = tep_db_prepare_input($HTTP_POST_VARS['street_address']);
   if (ACCOUNT_SUBURB == 'true')
       $suburb = tep_db_prepare_input($HTTP_POST_VARS['suburb']);
   $postcode = tep_db_prepare_input($HTTP_POST_VARS['postcode']);
   $city = tep_db_prepare_input($HTTP_POST_VARS['city']);
   if (ACCOUNT_STATE == 'true') {
       $state = tep_db_prepare_input($HTTP_POST_VARS['state']);
       if (isset($HTTP_POST_VARS['zone_id'])) {
           $zone_id = tep_db_prepare_input($HTTP_POST_VARS['zone_id']);
       } else {
           $zone_id = false;
       }
   }
   $country = tep_db_prepare_input($HTTP_POST_VARS['country']);
   $telephone = tep_db_prepare_input($HTTP_POST_VARS['telephone']);
   $fax = tep_db_prepare_input($HTTP_POST_VARS['fax']);
   if (isset($HTTP_POST_VARS['newsletter'])) {
       $newsletter = tep_db_prepare_input($HTTP_POST_VARS['newsletter']);
   } else {
       $newsletter = false;
   }
   $password = tep_db_prepare_input($HTTP_POST_VARS['password']);
   $confirmation = tep_db_prepare_input($HTTP_POST_VARS['confirmation']);

   $error = false;

   if (ACCOUNT_GENDER == 'true') {
       if (($gender != 'm') && ($gender != 'f')) {
           $error = true;

           $messageStack->add('create_account', ENTRY_GENDER_ERROR);
       }
   }

   if (strlen($firstname) < ENTRY_FIRST_NAME_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_FIRST_NAME_ERROR);
   }

   if (strlen($lastname) < ENTRY_LAST_NAME_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_LAST_NAME_ERROR);
   }

   if (ACCOUNT_DOB == 'true') {
       if ((is_numeric(tep_date_raw($dob)) == false) || (@checkdate(substr(tep_date_raw($dob), 4, 2), substr(tep_date_raw($dob), 6, 2), substr(tep_date_raw($dob), 0, 4)) == false)) {
           $error = true;

           $messageStack->add('create_account', ENTRY_DATE_OF_BIRTH_ERROR);
       }
   }

   if (strlen($email_address) < ENTRY_EMAIL_ADDRESS_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_EMAIL_ADDRESS_ERROR);
   } elseif (tep_validate_email($email_address) == false) {
       $error = true;

       $messageStack->add('create_account', ENTRY_EMAIL_ADDRESS_CHECK_ERROR);
   } else {
       // PWA BOF 2b
       $check_email_query = tep_db_query("select count(*) as total from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address) . "' and guest_account != '1'");
       // PWA EOF 2b
       $check_email = tep_db_fetch_array($check_email_query);
       if ($check_email['total'] > 0) {
           $error = true;

           $messageStack->add('create_account', ENTRY_EMAIL_ADDRESS_ERROR_EXISTS);
       }
   }

   if (strlen($street_address) < ENTRY_STREET_ADDRESS_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_STREET_ADDRESS_ERROR);
   }

   if (strlen($postcode) < ENTRY_POSTCODE_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_POST_CODE_ERROR);
   }

   if (strlen($city) < ENTRY_CITY_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_CITY_ERROR);
   }

   if (is_numeric($country) == false) {
       $error = true;

       $messageStack->add('create_account', ENTRY_COUNTRY_ERROR);
   }

   if (ACCOUNT_STATE == 'true') {
       $zone_id = 0;
       $check_query = tep_db_query("select count(*) as total from " . TABLE_ZONES . " where zone_country_id = '" . (int) $country . "'");
       $check = tep_db_fetch_array($check_query);
       $entry_state_has_zones = ($check['total'] > 0);
       if ($entry_state_has_zones == true) {
           $zone_query = tep_db_query("select distinct zone_id from " . TABLE_ZONES . " where zone_country_id = '" . (int) $country . "' and (zone_name = '" . tep_db_input($state) . "' or zone_code = '" . tep_db_input($state) . "')");
           if (tep_db_num_rows($zone_query) == 1) {
               $zone = tep_db_fetch_array($zone_query);
               $zone_id = $zone['zone_id'];
           } else {
               $error = true;

               $messageStack->add('create_account', ENTRY_STATE_ERROR_SELECT);
           }
       } else {
           if (strlen($state) < ENTRY_STATE_MIN_LENGTH) {
               $error = true;

               $messageStack->add('create_account', ENTRY_STATE_ERROR);
           }
       }
   }

   if (strlen($telephone) < ENTRY_TELEPHONE_MIN_LENGTH) {
       $error = true;

       $messageStack->add('create_account', ENTRY_TELEPHONE_NUMBER_ERROR);
   }


// PWA BOF
   if (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) {
// PWA EOF

       if (strlen($password) < ENTRY_PASSWORD_MIN_LENGTH) {
           $error = true;

           $messageStack->add('create_account', ENTRY_PASSWORD_ERROR);
       } elseif ($password != $confirmation) {
           $error = true;

           $messageStack->add('create_account', ENTRY_PASSWORD_ERROR_NOT_MATCHING);
       }
// PWA BOF
   }
// PWA EOF

   if ($error == false) {
       // PWA BOF 2b
       if (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) {
           $dbPass = tep_encrypt_password($password);
           $guestaccount = '0';
       } else {
           $dbPass = 'null';
           $guestaccount = '1';
       }
   }
   // PWA EOF 2b

   if ($error == false) {
       $sql_data_array = array('customers_firstname' => $firstname,
           'customers_lastname' => $lastname,
           'customers_email_address' => $email_address,
           'customers_telephone' => $telephone,
           'customers_fax' => $fax,
           'customers_newsletter' => $newsletter,
           // PWA BOF 2b
           'customers_password' => $dbPass,
           'guest_account' => $guestaccount);
       // PWA EOF 2b

       if (ACCOUNT_GENDER == 'true')
           $sql_data_array['customers_gender'] = $gender;
       if (ACCOUNT_DOB == 'true')
           $sql_data_array['customers_dob'] = tep_date_raw($dob);

       tep_db_perform(TABLE_CUSTOMERS, $sql_data_array);

       $customer_id = tep_db_insert_id();

       $sql_data_array = array('customers_id' => $customer_id,
           'entry_firstname' => $firstname,
           'entry_lastname' => $lastname,
           'entry_street_address' => $street_address,
           'entry_postcode' => $postcode,
           'entry_city' => $city,
           'entry_country_id' => $country);

       if (ACCOUNT_GENDER == 'true')
           $sql_data_array['entry_gender'] = $gender;
       if (ACCOUNT_COMPANY == 'true')
           $sql_data_array['entry_company'] = $company;
       if (ACCOUNT_SUBURB == 'true')
           $sql_data_array['entry_suburb'] = $suburb;
       if (ACCOUNT_STATE == 'true') {
           if ($zone_id > 0) {
               $sql_data_array['entry_zone_id'] = $zone_id;
               $sql_data_array['entry_state'] = '';
           } else {
               $sql_data_array['entry_zone_id'] = '0';
               $sql_data_array['entry_state'] = $state;
           }
       }

       // PWA BOF
       if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest']))
           tep_session_register('customer_is_guest');
       // PWA EOF

       tep_db_perform(TABLE_ADDRESS_BOOK, $sql_data_array);

       $address_id = tep_db_insert_id();

       tep_db_query("update " . TABLE_CUSTOMERS . " set customers_default_address_id = '" . (int) $address_id . "' where customers_id = '" . (int) $customer_id . "'");

       tep_db_query("insert into " . TABLE_CUSTOMERS_INFO . " (customers_info_id, customers_info_number_of_logons, customers_info_date_account_created) values ('" . (int) $customer_id . "', '0', now())");

       if (SESSION_RECREATE == 'True') {
           tep_session_recreate();
       }

// PWA BOF
       if (isset($HTTP_GET_VARS['guest']) or isset($HTTP_POST_VARS['guest']))
           tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING));
// PWA EOF

       $customer_first_name = $firstname;
       $customer_default_address_id = $address_id;
       $customer_country_id = $country;
       $customer_zone_id = $zone_id;
       tep_session_register('customer_id');
       tep_session_register('customer_first_name');
       tep_session_register('customer_default_address_id');
       tep_session_register('customer_country_id');
       tep_session_register('customer_zone_id');

// reset session token
       $sessiontoken = md5(tep_rand() . tep_rand() . tep_rand() . tep_rand());

// restore cart contents
       $cart->restore_contents();

// build the message content
       $name = $firstname . ' ' . $lastname;

       if (ACCOUNT_GENDER == 'true') {
           if ($gender == 'm') {
               $email_text = sprintf(EMAIL_GREET_MR, $lastname);
           } else {
               $email_text = sprintf(EMAIL_GREET_MS, $lastname);
           }
       } else {
           $email_text = sprintf(EMAIL_GREET_NONE, $firstname);
       }

       $email_text .= EMAIL_WELCOME . EMAIL_TEXT . EMAIL_CONTACT . EMAIL_WARNING;
       tep_mail($name, $email_address, EMAIL_SUBJECT, $email_text, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

       tep_redirect(tep_href_link(FILENAME_CREATE_ACCOUNT_SUCCESS, '', 'SSL'));
   }
}

// PWA BOF
if (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) {
   $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'));
} else {
   $breadcrumb->add(NAVBAR_TITLE_PWA, tep_href_link(FILENAME_CREATE_ACCOUNT, 'guest=guest', 'SSL'));
}
// PWA EOF

require(DIR_WS_INCLUDES . 'template_top.php');
require('includes/form_check.js.php');

// PWA BOF
if (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) {
   ?>
   <h1><?php echo HEADING_TITLE; ?></h1>
<?php } else { ?>
   <h1><?php echo HEADING_TITLE_PWA; ?></h1>
   <?php
}
// PWA EOF 

if ($messageStack->size('create_account') > 0) {
   echo $messageStack->output('create_account');
}
?>

<p><?php echo sprintf(TEXT_ORIGIN_LOGIN, tep_href_link(FILENAME_LOGIN, tep_get_all_get_params(), 'SSL')); ?></p>

<!-- PWA BOF //-->
<?php echo tep_draw_form('create_account', tep_href_link(FILENAME_CREATE_ACCOUNT, (isset($HTTP_GET_VARS['guest']) ? 'guest=guest' : ''), 'SSL'), 'post', 'onSubmit="return check_form(create_account);"') . tep_draw_hidden_field('action', 'process'); ?>
<!-- PWA EOF //-->

<div class="contentContainer">
   <div>
       <span class="inputRequirement" style="float: right;"><?php echo FORM_REQUIRED_INFORMATION; ?></span>
       <h2><?php echo CATEGORY_PERSONAL; ?></h2>
   </div>

   <div class="contentText">
       <table border="0" cellspacing="2" cellpadding="2" width="100%">

           <?php
           if (ACCOUNT_GENDER == 'true') {
               ?>

               <tr>
                   <td class="fieldKey"><?php echo ENTRY_GENDER; ?></td>
                   <td class="fieldValue"><?php echo tep_draw_radio_field('gender', 'm') . '  ' . MALE . '  ' . tep_draw_radio_field('gender', 'f') . '  ' . FEMALE . ' ' . (tep_not_null(ENTRY_GENDER_TEXT) ? '<span class="inputRequirement">' . ENTRY_GENDER_TEXT . '</span>' : ''); ?></td>
               </tr>

               <?php
           }
           ?>

           <tr>
               <td class="fieldKey"><?php echo ENTRY_FIRST_NAME; ?></td>
               <td class="fieldValue"><?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="fieldKey"><?php echo ENTRY_LAST_NAME; ?></td>
               <td class="fieldValue"><?php echo tep_draw_input_field('lastname') . ' ' . (tep_not_null(ENTRY_LAST_NAME_TEXT) ? '<span class="inputRequirement">' . ENTRY_LAST_NAME_TEXT . '</span>' : ''); ?></td>
           </tr>

           <?php
           if (ACCOUNT_DOB == 'true') {
               ?>

               <tr>
                   <td class="fieldKey"><?php echo ENTRY_DATE_OF_BIRTH; ?></td>
                   <td class="fieldValue"><?php echo tep_draw_input_field('dob', '', 'id="dob"') . ' ' . (tep_not_null(ENTRY_DATE_OF_BIRTH_TEXT) ? '<span class="inputRequirement">' . ENTRY_DATE_OF_BIRTH_TEXT . '</span>' : ''); ?><script type="text/javascript">$('#dob').datepicker({dateFormat: '<?php echo JQUERY_DATEPICKER_FORMAT; ?>', changeMonth: true, changeYear: true, yearRange: '-100:+0'});</script></td>
               </tr>

               <?php
           }
           ?>

           <tr>
               <td class="fieldKey"><?php echo ENTRY_EMAIL_ADDRESS; ?></td>
               <td class="fieldValue"><?php echo tep_draw_input_field('email_address') . ' ' . (tep_not_null(ENTRY_EMAIL_ADDRESS_TEXT) ? '<span class="inputRequirement">' . ENTRY_EMAIL_ADDRESS_TEXT . '</span>' : ''); ?></td>
           </tr>
       </table>
   </div>

   <?php
   if (ACCOUNT_COMPANY == 'true') {
       ?>

       <h2><?php echo CATEGORY_COMPANY; ?></h2>

       <div class="contentText">
           <table border="0" cellspacing="2" cellpadding="2" width="100%">
               <tr>
                   <td class="fieldKey"><?php echo ENTRY_COMPANY; ?></td>
                   <td class="fieldValue"><?php echo tep_draw_input_field('company') . ' ' . (tep_not_null(ENTRY_COMPANY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COMPANY_TEXT . '</span>' : ''); ?></td>
               </tr>
           </table>
       </div>

       <?php
   }
   ?>

   <h2><?php echo CATEGORY_ADDRESS; ?></h2>

   <div class="contentText">
       <table border="0" cellspacing="2" cellpadding="2" width="100%">
           <tr>
               <td class="fieldKey"><?php echo ENTRY_STREET_ADDRESS; ?></td>
               <td class="fieldValue"><?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="fieldKey"><?php echo ENTRY_SUBURB; ?></td>
                   <td class="fieldValue"><?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="fieldKey"><?php echo ENTRY_POST_CODE; ?></td>
               <td class="fieldValue"><?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="fieldKey"><?php echo ENTRY_CITY; ?></td>
               <td class="fieldValue"><?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="fieldKey"><?php echo ENTRY_STATE; ?></td>
                   <td class="fieldValue">
                       <?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 . '</span>';
                       ?>
                   </td>
               </tr>

               <?php
           }
           ?>

           <tr>
               <td class="fieldKey"><?php echo ENTRY_COUNTRY; ?></td>
               <td class="fieldValue"><?php echo tep_get_country_list('country') . ' ' . (tep_not_null(ENTRY_COUNTRY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COUNTRY_TEXT . '</span>' : ''); ?></td>
           </tr>
       </table>
   </div>

   <h2><?php echo CATEGORY_CONTACT; ?></h2>

   <div class="contentText">
       <table border="0" cellspacing="2" cellpadding="2" width="100%">
           <tr>
               <td class="fieldKey"><?php echo ENTRY_TELEPHONE_NUMBER; ?></td>
               <td class="fieldValue"><?php echo tep_draw_input_field('telephone') . ' ' . (tep_not_null(ENTRY_TELEPHONE_NUMBER_TEXT) ? '<span class="inputRequirement">' . ENTRY_TELEPHONE_NUMBER_TEXT . '</span>' : ''); ?></td>
           </tr>
           <tr>
               <td class="fieldKey"><?php echo ENTRY_FAX_NUMBER; ?></td>
               <td class="fieldValue"><?php echo tep_draw_input_field('fax') . ' ' . (tep_not_null(ENTRY_FAX_NUMBER_TEXT) ? '<span class="inputRequirement">' . ENTRY_FAX_NUMBER_TEXT . '</span>' : ''); ?></td>
           </tr>
       </table>
   </div>
   <?php
// PWA BOF
   if (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) {
// PWA EOF
       ?>
       <div class="contentText">
           <table border="0" cellspacing="2" cellpadding="2" width="100%">
               <tr>
                   <td class="fieldKey"><?php echo ENTRY_NEWSLETTER; ?></td>
                   <td class="fieldValue"><?php echo tep_draw_checkbox_field('newsletter', '1') . ' ' . (tep_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="inputRequirement">' . ENTRY_NEWSLETTER_TEXT . '</span>' : ''); ?></td>
               </tr>
           </table>
       </div>

       <h2><?php echo CATEGORY_PASSWORD; ?></h2>

       <div class="contentText">
           <table border="0" cellspacing="2" cellpadding="2" width="100%">
               <tr>
                   <td class="fieldKey"><?php echo ENTRY_PASSWORD; ?></td>
                   <td class="fieldValue"><?php echo tep_draw_password_field('password') . ' ' . (tep_not_null(ENTRY_PASSWORD_TEXT) ? '<span class="inputRequirement">' . ENTRY_PASSWORD_TEXT . '</span>' : ''); ?></td>
               </tr>
               <tr>
                   <td class="fieldKey"><?php echo ENTRY_PASSWORD_CONFIRMATION; ?></td>
                   <td class="fieldValue"><?php echo tep_draw_password_field('confirmation') . ' ' . (tep_not_null(ENTRY_PASSWORD_CONFIRMATION_TEXT) ? '<span class="inputRequirement">' . ENTRY_PASSWORD_CONFIRMATION_TEXT . '</span>' : ''); ?></td>
               </tr>
           </table>
       </div>
       <?php
// PWA BOF
   } else {
       echo tep_draw_hidden_field('guest', 'guest');
   }
// PWA EOF    
   ?>

   <div class="buttonSet">
       <span class="buttonAction"><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'person', null, 'primary'); ?></span>
   </div>
</div>

</form>

<?php
require(DIR_WS_INCLUDES . 'template_bottom.php');
require(DIR_WS_INCLUDES . 'application_bottom.php');
?>

Link to comment
Share on other sites

If you want any more from me you'll have to post a link to the store or PM me a link.

 

I can't solve it by looking at code until I know for sure what the problem is.

 

You can't tell anything by looking at the code yet because you aren't for sure what the problem is.

 

After the problem has be diagnosed, then looking at code will probably help.

 

So give me a link one way or the other or stick a fork in me 'cuz I'm done...

:huh:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

What browser are you using?

:unsure:

 

The button on the create account page works with both my browsers (IE7 andf FF3.0)

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Tested on Firefox 5; the button works just fine. It does just reload the page instead of showing the success page. Maybe that's what you meant to say?

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

So the button is actually working just fine, but the result of that action isn't correct. That means you have something wrong in the top part of that page. Look carefully at any changes you have made in that area.

 

You also need to find out what errors are being generated. Ask your host where the PHP error log is, then examine it for errors on this page. If you can't view the error log, find this line in includes/application_top.php:

 

  error_reporting(E_ALL & ~E_NOTICE);

and change it to this:

 

  error_reporting( E_ALL );

The errors should now show on the page.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

Notice: Constant already defined in /var/customers/webs/nstiller/Omikron-neu/catalog/includes/application_top.php on line 71

 

That's the only error I get, but I also already get it when i go to the checkout. The line it calls is

define($configuration['cfgKey'], $configuration['cfgValue']);

.

 

The error_log doesn't say anything...

 

Greetings,

Mainz007

Link to comment
Share on other sites

That constant is defined in the configuration table in your database. Search for that constant in the key field, and delete all but the first result.

 

That won't fix the problem with create_account.php. Upload the stock file and try that. If it works, and it should, then you will need to put your changes back in, one at a time, and test after every change. When you find the change that breaks the code, post it here.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

The "defined constant" was an empty database row :D

 

I made every step again for the third or fourth time but this time i checked after every step. And some one wants to piss me off, because it works now :( :D So thanks to everyone!

Link to comment
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...