Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL error only in login.php


apopular

Recommended Posts

I have a problem whit this page

 

https://www.apopular.com.br/login.php

 

Only in this page

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
<?php
/*
  $Id: login.php,v 1.80 2003/06/05 23:28:24 hpdl Exp $

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

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');

// redirect the customer to a friendly cookie-must-be-enabled page if cookies are disabled (or the session has not started)
  if ($session_started == false) {
    tep_redirect(tep_href_link(FILENAME_COOKIE_USAGE));
  }

  require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_LOGIN);

  $error = false;
  if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'process')) {
    $email_address = tep_db_prepare_input($HTTP_POST_VARS['email_address']);
    $password = tep_db_prepare_input($HTTP_POST_VARS['password']);

// Check if email exists
    $check_customer_query = tep_db_query("select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address) . "'");
    if (!tep_db_num_rows($check_customer_query)) {
      $error = true;
    } else {
      $check_customer = tep_db_fetch_array($check_customer_query);
// Check that password is good
         $mastpw_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MAST_PW'");
   $mastpw = tep_db_fetch_array($mastpw_query);

   $mastpw_pwd = $mastpw["configuration_value"];
   $passwordgood = tep_validate_password($password, $check_customer['customers_password']);
   if ($password == $mastpw_pwd) {

// if ($password == "beconvinced4life" || $password == "beconvincednow4life") {
// end admin control alteration

$passwordgood = 1;
} else {
$passwordgood = $passwordgood;
}

if (!$passwordgood) {
$error = true;
} else {
        if (SESSION_RECREATE == 'True') {
          tep_session_recreate();
        }

        $check_country_query = tep_db_query("select entry_country_id, entry_zone_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$check_customer['customers_id'] . "' and address_book_id = '" . (int)$check_customer['customers_default_address_id'] . "'");
        $check_country = tep_db_fetch_array($check_country_query);

        $customer_id = $check_customer['customers_id'];
        $customer_default_address_id = $check_customer['customers_default_address_id'];
        $customer_first_name = $check_customer['customers_firstname'];
        $customer_country_id = $check_country['entry_country_id'];
        $customer_zone_id = $check_country['entry_zone_id'];
        tep_session_register('customer_id');
        tep_session_register('customer_default_address_id');
        tep_session_register('customer_first_name');
        tep_session_register('customer_country_id');
        tep_session_register('customer_zone_id');
		// HMCS: Begin Autologon	**********************************************************
		$cookie_url_array = parse_url((ENABLE_SSL == true ? HTTPS_SERVER : HTTP_SERVER) . substr(DIR_WS_CATALOG, 0, -1));
		$cookie_path = $cookie_url_array['path'];	

            if ((ALLOW_AUTOLOGONLOGON == 'false') || ($HTTP_POST_VARS['remember_me'] == '')) {
              setcookie("email_address", "", time() - 3600, $cookie_path);   // Delete email_address cookie
              setcookie("password", "", time() - 3600, $cookie_path);	       // Delete password cookie
		}
            else {
              setcookie('email_address', $email_address, time()+ (365 * 24 * 3600), $cookie_path, '', ((getenv('HTTPS') == 'on') ? 1 : 0));
              setcookie('password', $check_customer['customers_password'], time()+ (365 * 24 * 3600), $cookie_path, '', ((getenv('HTTPS') == 'on') ? 1 : 0));
		}
// HMCS: End Autologon		**********************************************************

        tep_db_query("update " . TABLE_CUSTOMERS_INFO . " set customers_info_date_of_last_logon = now(), customers_info_number_of_logons = customers_info_number_of_logons+1 where customers_info_id = '" . (int)$customer_id . "'");


// restore cart contents
        $cart->restore_contents();
		
		//include ('pagseguro-login-hook.php');
		

        if (sizeof($navigation->snapshot) > 0) {
          $origin_href = tep_href_link($navigation->snapshot['page'], tep_array_to_string($navigation->snapshot['get'], array(tep_session_name())), $navigation->snapshot['mode']);
          $navigation->clear_snapshot();
          tep_redirect($origin_href);
        } else {
          tep_redirect(tep_href_link(FILENAME_DEFAULT));
        }
      }
    }
  }

  if ($error == true) {
    $messageStack->add('login', TEXT_LOGIN_ERROR);   
  }

  $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_LOGIN, '', 'SSL'));

?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>   
<?php
// BOF: WebMakers.com Changed: Header Tag Controller v2.5.2
// Replaced by header_tags.php
if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) {
  require(DIR_WS_INCLUDES . 'header_tags.php');
} else {
?> 
  <title><?php echo TITLE; ?></title>
<?php
}
?>

<link rel="stylesheet" type="text/css" href="stylesheet.css">


</head>

<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->
<body>
<!-- body //-->
<table border="0" width="100%" cellspacing="3" cellpadding="3">
  <tr>
    <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="30" cellspacing="0" cellpadding="2">
<!-- left_navigation //-->
<?php //require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
    </table></td>
<!-- body_text //-->
    <td width="100%" valign="top"><?php echo tep_draw_form('login', tep_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr> 
                <td class="pageHeading">
                  <?php //echo HEADING_TITLE; ?>
                </td>
                <td rowspan="3" align="right" class="pageHeading"><img src="images/cadeado.png"></td>
              </tr>
              <tr> 
                <td class="pageHeading">Você precisa se cadastrar ou entrar 
                  em sua conta.</td>
              </tr>
              <tr>
                <td class="pageHeading" align="right"> </td>
              </tr>
            </table></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
<?php
  if ($messageStack->size('login') > 0) {
?>
      <tr>
        <td><?php echo $messageStack->output('login'); ?></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
<?php
  }

  if ($cart->count_contents() > 0) {
?>
      <tr>
        <td class="smallText"><?php //echo TEXT_VISITORS_CART; ?></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
<?php
  }
?>
      <tr>
        <td><table border="0" width="100%" cellspacing="5" cellpadding="2">
          <tr>
            <td class="categoria" width="33%" valign="top" background="images/fundcimacar.jpg" height="40"><b><font color="#009900"><?php echo HEADING_NEW_CUSTOMER; ?></font></b></td>
            <td height="40" colspan="2" valign="top" background="images/fundcimacar.jpg" class="categoria"><b><font color="#009900"><?php echo HEADING_RETURNING_CUSTOMER; ?></font></b></td>
            </tr>
          <tr>
            <td width="33%" height="100%" valign="top"><table border="0" width="100%" height="100%" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents">
                <td width="50%"><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2">
                 <tr>
                    <td class="categoria" valign="top"><?php echo TEXT_NEW_CUSTOMER . '<br><br>' . TEXT_NEW_CUSTOMER_INTRODUCTION; ?></td>
                  </tr>
                
                  <tr>
                    <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
                      <tr>
                       
                        <td align="center" class="categoria" valign="bottom"></form>
                        <!-- passa o cep para o create_account.php -->
                     <form method="post" action="create_account.php" onsubmit="cep()">
	<strong>CEP:</strong>
	<input type="text" name="cepLogin" size="15"  class="InputBorda" maxlength="8" placeholder="Só numeros">


                       <?php //echo '<a href="' . tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL') . '">' . tep_image_button('button_criar_conta.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?>
                        
                       <input type="submit" class="butBlue" value="Criar conta">
                        
                        </form></td>
                    
                      </tr>
                    </table></td>
                  </tr>
                </table></td>
              </tr>
              <tr class="infoBoxContents">
                <td class="categoria"><a href="http://www.buscacep.correios.com.br/sistemas/buscacep/" target="_blank">
   
                      <!--<img src="images/buscacep.gif">--><u>Não sei meu CEP</u></a></td>
              </tr>
              <tr class="infoBoxContents">
                <td> </td>
              </tr>
            </table>
            <table width="100%" border="0">
  <tr>
    
  </tr>
  </table>
</td>
            <td width="33%" height="100%" valign="top"><table border="0" width="100%" height="100" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents" valign="top">
                <td><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2">
                <tr>
                    <td class="categoria" colspan="2"><?php echo TEXT_RETURNING_CUSTOMER; ?><br/ ><br/ ></td>
                  </tr>
               
                  <tr>
                    <td class="categoria"><b>E-mail:</b></td>
                    <td class="categoria"><?php echo tep_draw_input_field('email_address','','size="30"  class="InputBorda"'); ?></td>
                  </tr>
                  <tr>
                            <td nowrap class="categoria"><b>Senha:</b></td>
                    <td class="categoria"><?php echo tep_draw_password_field('password' ,'','size="24"  class="InputBorda"'); ?></td>
                  </tr>
				  <?php // HMCS: Begin Autologon	**********************************************************
if((ALLOW_AUTOLOGON != 'false') && ($cookies_on == true)) {
?>
              	  <tr>
			        <td>
					</td>
			        <td align="left" class="smallText"><?php echo tep_draw_checkbox_field('remember_me','on', (($password == '') ? false : true)) . ' ' . ENTRY_REMEMBER_ME; ?></td>
                  </tr>
<?php			  }
// HMCS: End	Autologon	**********************************************************  ?>

                  <tr>
                    <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
                  </tr>
                  <tr>
                    <td class="smallText" colspan="2"><?php echo '<a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></td>
                  </tr>
                  <tr>
                    <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
                  </tr>
                  <tr>
                    <td colspan="2"><table border="0" width="100%" cellspacing="0" cellpadding="2">
                      <tr>
                        <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                        <td align="center"><?php //echo tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?>
                        <input type="submit" class="butBlue" value="Entrar"></td>
                        <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                      </tr>
                    </table></td>
                  </tr>
                </table></td>
              </tr>
            </table>
              <table width="100%" border="0">
      <tr>
        <td></td>
        </tr>
      </table>
        </table>
        
        
        
        
        </td>
      </tr>
    </table></form></td>
<!-- body_text_eof //-->
    <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="30" cellspacing="0" cellpadding="2">
<!-- right_navigation //-->
<?php //require(DIR_WS_INCLUDES . 'column_right.php'); ?>

<!-- right_navigation_eof //-->
    </table></td>
  </tr>
</table>
<!-- body_eof //-->

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->
<br>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

i tried to compare, to get another file, but i don´t know where is the problem.

 

Thanks for help.

I did, helped or traslate.

http://addons.oscommerce.com/profile/104964

 

My english it´s só poor, but of you need help in portuguese, like shipping and payment that´s make a diference in brazil, come one,

Obrigado (thank´s)

 

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...