source: trunk/install.php @ 5983

Last change on this file since 5983 was 5983, checked in by plg, 14 years ago

remove useless check of mysql.inc.php

File size: 14.0 KB
RevLine 
[218]1<?php
[354]2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[5196]5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
[2297]6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
[218]23
[367]24//----------------------------------------------------------- include
25define('PHPWG_ROOT_PATH','./');
[345]26
[3747]27@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
[367]28//
29// addslashes to vars if magic_quotes_gpc is off this is a security
30// precaution to prevent someone trying to break out of a SQL statement.
31//
[4006]32if( !@get_magic_quotes_gpc() )
[218]33{
[367]34  if( is_array($_POST) )
[218]35  {
[367]36    while( list($k, $v) = each($_POST) )
[218]37    {
[367]38      if( is_array($_POST[$k]) )
[218]39      {
[367]40        while( list($k2, $v2) = each($_POST[$k]) )
41        {
42          $_POST[$k][$k2] = addslashes($v2);
43        }
44        @reset($_POST[$k]);
[218]45      }
46      else
47      {
[367]48        $_POST[$k] = addslashes($v);
[218]49      }
50    }
[367]51    @reset($_POST);
52  }
53
[1855]54  if( is_array($_GET) )
55  {
56    while( list($k, $v) = each($_GET) )
57    {
58      if( is_array($_GET[$k]) )
59      {
60        while( list($k2, $v2) = each($_GET[$k]) )
61        {
62          $_GET[$k][$k2] = addslashes($v2);
63        }
64        @reset($_GET[$k]);
65      }
66      else
67      {
68        $_GET[$k] = addslashes($v);
69      }
70    }
71    @reset($_GET);
72  }
73
[367]74  if( is_array($_COOKIE) )
75  {
76    while( list($k, $v) = each($_COOKIE) )
[218]77    {
[367]78      if( is_array($_COOKIE[$k]) )
[218]79      {
[367]80        while( list($k2, $v2) = each($_COOKIE[$k]) )
81        {
82          $_COOKIE[$k][$k2] = addslashes($v2);
83        }
84        @reset($_COOKIE[$k]);
[218]85      }
86      else
87      {
[367]88        $_COOKIE[$k] = addslashes($v);
[218]89      }
90    }
[367]91    @reset($_COOKIE);
[218]92  }
[367]93}
[218]94
[367]95//----------------------------------------------------- variable initialization
[1147]96
[2339]97define('DEFAULT_PREFIX_TABLE', 'piwigo_');
[1147]98
[5239]99// default database engine proposed if severals are available
100// choices : sqlite, mysql, pgsql, pdo-sqlite
101// see include/dblayer/dblayers.inc.php
102define('DEFAULT_DB_ENGINE', 'mysql');
103
104// database engine default choice between sqlite (native or via pdo)
105// if the twice are available.
106define('DEFAULT_DB_SQLITE', 'native'); 
107
[1147]108if (isset($_POST['install']))
109{
[5220]110  $prefixeTable = $_POST['prefix'];
[1147]111}
112else
113{
[5220]114  $prefixeTable = DEFAULT_PREFIX_TABLE;
[1147]115}
[367]116
[5220]117include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
118@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
119
[5266]120// download database config file if exists
121if (!empty($_GET['dl']) && file_exists($conf['local_data_dir'].'/pwg_'.$_GET['dl']))
122{
123  $filename = $conf['local_data_dir'].'/pwg_'.$_GET['dl'];
124  header('Cache-Control: no-cache, must-revalidate');
125  header('Pragma: no-cache');
126  header('Content-Disposition: attachment; filename="database.inc.php"');
127  header('Content-Transfer-Encoding: binary');
128  header('Content-Length: '.filesize($filename));
129  echo file_get_contents($filename);
130  unlink($filename);
131  exit();
132} 
133
[5220]134// Obtain various vars
135$dbhost = (!empty($_POST['dbhost'])) ? $_POST['dbhost'] : 'localhost';
136$dbuser = (!empty($_POST['dbuser'])) ? $_POST['dbuser'] : '';
137$dbpasswd = (!empty($_POST['dbpasswd'])) ? $_POST['dbpasswd'] : '';
138$dbname = (!empty($_POST['dbname'])) ? $_POST['dbname'] : '';
[5239]139$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : DEFAULT_DB_ENGINE;
[5220]140
[367]141$admin_name = (!empty($_POST['admin_name'])) ? $_POST['admin_name'] : '';
142$admin_pass1 = (!empty($_POST['admin_pass1'])) ? $_POST['admin_pass1'] : '';
143$admin_pass2 = (!empty($_POST['admin_pass2'])) ? $_POST['admin_pass2'] : '';
144$admin_mail = (!empty($_POST['admin_mail'])) ? $_POST['admin_mail'] : '';
145
146$infos = array();
147$errors = array();
148
[5213]149$config_file = PHPWG_ROOT_PATH . 'local/config/database.inc.php';
[5983]150if (@file_exists($config_file))
[4423]151{
[529]152  include($config_file);
[2339]153  // Is Piwigo already installed ?
[529]154  if (defined("PHPWG_INSTALLED"))
155  {
[2339]156    die('Piwigo is already installed');
[529]157  }
[367]158}
159
[529]160include(PHPWG_ROOT_PATH . 'include/constants.php');
161include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
[1221]162include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
[529]163
[5357]164include(PHPWG_ROOT_PATH . 'admin/include/languages.class.php');
165$languages = new languages('utf-8');
166
[2248]167if (isset($_GET['language']))
[405]168{
[2248]169  $language = strip_tags($_GET['language']);
[367]170}
[2127]171else
[1855]172{
[2127]173  $language = 'en_UK';
[2248]174  // Try to get browser language
[5357]175  foreach ($languages->fs_languages as $language_code => $language_name)
[2248]176  {
177    if (substr($language_code,0,2) == @substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2))
178    {
179      $language = $language_code;
180      break;
181    }
182  }
[1855]183}
[367]184
[3197]185if ('fr_FR' == $language) {
186  define('PHPWG_DOMAIN', 'fr.piwigo.org');
187}
[5234]188else if ('it_IT' == $language) {
189  define('PHPWG_DOMAIN', 'it.piwigo.org');
190}
[4047]191else if ('de_DE' == $language) {
192  define('PHPWG_DOMAIN', 'de.piwigo.org');
193}
194else if ('es_ES' == $language) {
195  define('PHPWG_DOMAIN', 'es.piwigo.org');
196}
[4816]197else if ('pl_PL' == $language) {
198  define('PHPWG_DOMAIN', 'pl.piwigo.org');
199}
200else if ('zh_CN' == $language) {
201  define('PHPWG_DOMAIN', 'cn.piwigo.org');
202}
[5234]203else if ('hu_HU_CN' == $language) {
204  define('PHPWG_DOMAIN', 'hu.piwigo.org');
205}
206else if ('ru_RU_CN' == $language) {
207  define('PHPWG_DOMAIN', 'ru.piwigo.org');
208}
[3197]209else {
210  define('PHPWG_DOMAIN', 'piwigo.org');
211}
212define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
213
[5983]214load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
215load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
216load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
217
[4463]218header('Content-Type: text/html; charset=UTF-8');
[3203]219//------------------------------------------------- check php version
220if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
221{
222  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
223}
224
[367]225//----------------------------------------------------- template initialization
[3203]226include( PHPWG_ROOT_PATH .'include/template.class.php');
[5123]227$template = new Template(PHPWG_ROOT_PATH.'admin/themes', 'roma');
[4423]228$template->set_filenames( array('install' => 'install.tpl') );
229if (!isset($step))
230{
231  $step = 1;
232}
[529]233//---------------------------------------------------------------- form analyze
[5384]234include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
235include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
[5387]236include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
[5384]237
[367]238if ( isset( $_POST['install'] ))
239{
[5982]240  install_db_connect($infos, $errors);
241  pwg_db_check_charset();
[5384]242
[382]243  $webmaster = trim(preg_replace( '/\s{2,}/', ' ', $admin_name ));
244  if ( empty($webmaster))
[5021]245    array_push( $errors, l10n('enter a login for webmaster') );
[382]246  else if ( preg_match( '/[\'"]/', $webmaster ) )
[5207]247    array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') );
[382]248  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
[5021]249    array_push( $errors, l10n('please enter your password again') );
[382]250  if ( empty($admin_mail))
[5021]251    array_push( $errors, l10n('mail address must be like xxx@yyy.eee (example : jack@altern.org)') );
[2127]252  else
[382]253  {
[2124]254    $error_mail_address = validate_mail_address(null, $admin_mail);
[382]255    if (!empty($error_mail_address))
256      array_push( $errors, $error_mail_address );
257  }
[2127]258
[382]259  if ( count( $errors ) == 0 )
260  {
261    $step = 2;
[1147]262    $file_content = '<?php
[4410]263$conf[\'dblayer\'] = \''.$dblayer.'\';
[4280]264$conf[\'db_base\'] = \''.$dbname.'\';
265$conf[\'db_user\'] = \''.$dbuser.'\';
266$conf[\'db_password\'] = \''.$dbpasswd.'\';
267$conf[\'db_host\'] = \''.$dbhost.'\';
[1147]268
[5220]269$prefixeTable = \''.$prefixeTable.'\';
[1147]270
271define(\'PHPWG_INSTALLED\', true);
[5982]272define(\'PWG_CHARSET\', \'utf-8\');
273define(\'DB_CHARSET\', \'utf8\');
[2127]274define(\'DB_COLLATE\', \'\');
275
[1147]276?'.'>';
[2127]277
[382]278    @umask(0111);
279    // writing the configuration file
280    if ( !($fp = @fopen( $config_file, 'w' )))
[367]281    {
[5266]282      $tmp_filename = md5(uniqid(time()));
283      $fh = @fopen( $conf['local_data_dir'] . '/pwg_' . $tmp_filename, 'w' );
284      @fputs($fh, $file_content, strlen($file_content));
285      @fclose($fh);
286
[5571]287      $template->assign(
288        array(
289          'config_creation_failed' => true,
290          'config_url' => 'install.php?dl='.$tmp_filename,
291          'config_file_content' => $file_content,
292          )
[5266]293        );
[382]294    }
295    @fputs($fp, $file_content, strlen($file_content));
296    @fclose($fp);
[2127]297
[2339]298    // tables creation, based on piwigo_structure.sql
[1147]299    execute_sqlfile(
[4410]300      PHPWG_ROOT_PATH.'install/piwigo_structure-'.$dblayer.'.sql',
[1147]301      DEFAULT_PREFIX_TABLE,
[5982]302      $prefixeTable,
303      $dblayer
[1147]304      );
[382]305    // We fill the tables with basic informations
[1147]306    execute_sqlfile(
307      PHPWG_ROOT_PATH.'install/config.sql',
308      DEFAULT_PREFIX_TABLE,
[5982]309      $prefixeTable,
310      $dblayer
[1147]311      );
[218]312
[4410]313    $query = '
[5220]314INSERT INTO '.$prefixeTable.'config (param,value,comment)
[4410]315   VALUES (\'secret_key\',\'md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').')\',
316   \'a secret key specific to the gallery for internal use\');';
317    pwg_query($query);
318
[5341]319    // fill languages table
[5982]320    foreach ($languages->get_fs_languages() as $language_code => $language_name)
[5341]321    {
[5357]322      $languages->perform_action('activate', $language_code);
[5341]323    }
324
[1284]325    // fill $conf global array
326    load_conf_from_db();
327
[5340]328    // PWG_CHARSET is required for building the fs_themes array in the
329    // themes class
[5452]330    if (!defined('PWG_CHARSET'))
331    {
[5982]332      define('PWG_CHARSET', 'utf-8');
[5452]333    }
[5982]334    activate_core_themes();
[5340]335
[1284]336    $insert = array(
337      'id' => 1,
338      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
339      );
340    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
[2127]341
[382]342    // webmaster admin user
[1284]343    $inserts = array(
344      array(
345        'id'           => 1,
346        'username'     => $admin_name,
347        'password'     => md5($admin_pass1),
348        'mail_address' => $admin_mail,
349        ),
350      array(
351        'id'           => 2,
352        'username'     => 'guest',
353        ),
354      );
355    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
[801]356
[1930]357    create_user_infos(array(1,2), array('language' => $language));
[808]358
[1027]359    // Available upgrades must be ignored after a fresh installation. To
360    // make PWG avoid upgrading, we must tell it upgrades have already been
361    // made.
[4325]362    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
[1221]363    define('CURRENT_DATE', $dbnow);
364    $datas = array();
[1027]365    foreach (get_available_upgrade_ids() as $upgrade_id)
366    {
[1221]367      array_push(
368        $datas,
369        array(
370          'id'          => $upgrade_id,
371          'applied'     => CURRENT_DATE,
372          'description' => 'upgrade included in installation',
373          )
374        );
[1027]375    }
[1221]376    mass_inserts(
377      UPGRADE_TABLE,
378      array_keys($datas[0]),
379      $datas
380      );
[382]381  }
[367]382}
[218]383
[2248]384//------------------------------------------------------ start template output
[5983]385$dbengines = available_engines();
386
387foreach ($languages->fs_languages as $language_code => $language_name)
[4423]388{
[5983]389  if ($language == $language_code)
[4423]390  {
[5983]391    $template->assign('language_selection', $language_code);
[4423]392  }
[5983]393  $languages_options[$language_code] = $language_name;
[4423]394}
[5983]395$template->assign('language_options', $languages_options);
[4423]396
[5983]397$template->assign(
398  array(
399    'T_CONTENT_ENCODING' => 'utf-8',
400    'RELEASE' => PHPWG_VERSION,
401    'F_ACTION' => 'install.php?language=' . $language,
402    'F_DB_ENGINES' => $dbengines,
403    'F_DB_LAYER' => $dblayer,
404    'F_DB_HOST' => $dbhost,
405    'F_DB_USER' => $dbuser,
406    'F_DB_NAME' => $dbname,
407    'F_DB_PREFIX' => $prefixeTable,
408    'F_ADMIN' => $admin_name,
409    'F_ADMIN_EMAIL' => $admin_mail,
410    'L_INSTALL_HELP' => sprintf(l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
411    ));
[4423]412
[529]413//------------------------------------------------------ errors & infos display
[2747]414if ($step == 1)
415{
416  $template->assign('install', true);
417}
418else
419{
[5408]420  array_push(
421    $infos,
422    l10n('Congratulations, Piwigo installation is completed')
423    );
[2747]424
425  if (isset($error_copy))
426  {
427    array_push($errors, $error_copy);
428  }
[3715]429  else
430  {
431    session_set_save_handler('pwg_session_open',
432      'pwg_session_close',
433      'pwg_session_read',
434      'pwg_session_write',
435      'pwg_session_destroy',
436      'pwg_session_gc'
437    );
438    if ( function_exists('ini_set') )
439    {
440      ini_set('session.use_cookies', $conf['session_use_cookies']);
441      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
442      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
443      ini_set('session.cookie_httponly', 1);
444    }
445    session_name($conf['session_name']);
446    session_set_cookie_params(0, cookie_path());
447    $user = build_user(1, true);
448    log_user($user['id'], false);
449  }
[3382]450
451  $template->assign(
452    'SUBSCRIBE_BASE_URL',
453    get_newsletter_subscribe_base_url($language)
454    );
[2747]455}
[2248]456if (count($errors) != 0)
[367]457{
[2248]458  $template->assign('errors', $errors);
[367]459}
[218]460
[2248]461if (count($infos) != 0 )
[367]462{
[2248]463  $template->assign('infos', $infos);
[367]464}
[218]465
466//----------------------------------------------------------- html code display
[367]467$template->pparse('install');
[3203]468?>
Note: See TracBrowser for help on using the repository browser.