source: trunk/identification.php @ 587

Last change on this file since 587 was 587, checked in by z0rglub, 19 years ago
  • function mysql_query replaced by pwg_query : the same with debugging features
  • by default, DEBUG is set to 0 (off)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// |                          identification.php                           |
4// +-----------------------------------------------------------------------+
5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
6// | branch        : BSF (Best So Far)                                     |
7// +-----------------------------------------------------------------------+
8// | file          : $RCSfile$
9// | last update   : $Date: 2004-10-30 15:42:29 +0000 (Sat, 30 Oct 2004) $
10// | last modifier : $Author: z0rglub $
11// | revision      : $Revision: 587 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28//--------------------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31
32//-------------------------------------------------------------- identification
33$errors = array();
34if (isset($_POST['login']))
35{
36  // retrieving the encrypted password of the login submitted
37  $query = '
38SELECT id, password
39  FROM '.USERS_TABLE.'
40  WHERE username = \''.$_POST['username'].'\'
41;';
42  $row = mysql_fetch_array(pwg_query($query));
43  if ($row['password'] == md5($_POST['password']))
44  {
45    $session_length = $conf['session_length'];
46    if ($conf['authorize_remembering']
47        and isset($_POST['remember_me'])
48        and $_POST['remember_me'] == 1)
49    {
50      $session_length = $conf['remember_me_length'];
51    }
52    $session_id = session_create($row['id'], $session_length);
53    redirect('category.php?id='.$session_id);
54  }
55  else
56  {
57    array_push( $errors, $lang['invalid_pwd'] );
58  }
59}
60//----------------------------------------------------- template initialization
61//
62// Start output of page
63//
64$title = $lang['ident_page_title'];
65include(PHPWG_ROOT_PATH.'include/page_header.php');
66
67$template->set_filenames( array('identification'=>'identification.tpl') );
68
69$template->assign_vars(
70  array(
71    'MAIL_ADMIN' => $conf['mail_webmaster'],
72   
73    'L_TITLE' => $lang['ident_title'],
74    'L_USERNAME' => $lang['login'],
75    'L_PASSWORD' => $lang['password'],
76    'L_LOGIN' => $lang['submit'],
77    'L_GUEST' => $lang['ident_guest_visit'],
78    'L_REGISTER' => $lang['ident_register'],
79    'L_FORGET' => $lang['ident_forgotten_password'],
80    'L_REMEMBER_ME'=>$lang['remember_me'],
81   
82    'T_STYLE' => $user['template'],
83   
84    'F_LOGIN_ACTION' => add_session_id('identification.php')
85    ));
86
87if ($conf['authorize_remembering'])
88{
89  $template->assign_block_vars('remember_me',array());
90}
91//-------------------------------------------------------------- errors display
92if ( sizeof( $errors ) != 0 )
93{
94  $template->assign_block_vars('errors',array());
95  for ( $i = 0; $i < sizeof( $errors ); $i++ )
96  {
97    $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
98  }
99}
100
101//-------------------------------------------------------------- visit as guest
102if ( $conf['access'] == 'free' )
103{
104  $template->assign_block_vars('free_access',array());
105}
106//----------------------------------------------------------- html code display
107$template->pparse('identification');
108include(PHPWG_ROOT_PATH.'include/page_tail.php');
109?>
Note: See TracBrowser for help on using the repository browser.