source: trunk/install.php @ 5215

Last change on this file since 5215 was 5215, checked in by patdenice, 14 years ago

feature 1522: Move config_local.inc.php to local/config/config.inc.php

File size: 15.6 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
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// +-----------------------------------------------------------------------+
23
24//----------------------------------------------------------- include
25define('PHPWG_ROOT_PATH','./');
26
27include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
28
29@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
30//
31// addslashes to vars if magic_quotes_gpc is off this is a security
32// precaution to prevent someone trying to break out of a SQL statement.
33//
34if( !@get_magic_quotes_gpc() )
35{
36  if( is_array($_POST) )
37  {
38    while( list($k, $v) = each($_POST) )
39    {
40      if( is_array($_POST[$k]) )
41      {
42        while( list($k2, $v2) = each($_POST[$k]) )
43        {
44          $_POST[$k][$k2] = addslashes($v2);
45        }
46        @reset($_POST[$k]);
47      }
48      else
49      {
50        $_POST[$k] = addslashes($v);
51      }
52    }
53    @reset($_POST);
54  }
55
56  if( is_array($_GET) )
57  {
58    while( list($k, $v) = each($_GET) )
59    {
60      if( is_array($_GET[$k]) )
61      {
62        while( list($k2, $v2) = each($_GET[$k]) )
63        {
64          $_GET[$k][$k2] = addslashes($v2);
65        }
66        @reset($_GET[$k]);
67      }
68      else
69      {
70        $_GET[$k] = addslashes($v);
71      }
72    }
73    @reset($_GET);
74  }
75
76  if( is_array($_COOKIE) )
77  {
78    while( list($k, $v) = each($_COOKIE) )
79    {
80      if( is_array($_COOKIE[$k]) )
81      {
82        while( list($k2, $v2) = each($_COOKIE[$k]) )
83        {
84          $_COOKIE[$k][$k2] = addslashes($v2);
85        }
86        @reset($_COOKIE[$k]);
87      }
88      else
89      {
90        $_COOKIE[$k] = addslashes($v);
91      }
92    }
93    @reset($_COOKIE);
94  }
95}
96
97//----------------------------------------------------- variable initialization
98
99define('DEFAULT_PREFIX_TABLE', 'piwigo_');
100
101// Obtain various vars
102$dbhost = (!empty($_POST['dbhost'])) ? $_POST['dbhost'] : 'localhost';
103$dbuser = (!empty($_POST['dbuser'])) ? $_POST['dbuser'] : '';
104$dbpasswd = (!empty($_POST['dbpasswd'])) ? $_POST['dbpasswd'] : '';
105$dbname = (!empty($_POST['dbname'])) ? $_POST['dbname'] : '';
106$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : 'mysql';
107
108if (isset($_POST['install']))
109{
110  $table_prefix = $_POST['prefix'];
111}
112else
113{
114  $table_prefix = DEFAULT_PREFIX_TABLE;
115}
116
117$admin_name = (!empty($_POST['admin_name'])) ? $_POST['admin_name'] : '';
118$admin_pass1 = (!empty($_POST['admin_pass1'])) ? $_POST['admin_pass1'] : '';
119$admin_pass2 = (!empty($_POST['admin_pass2'])) ? $_POST['admin_pass2'] : '';
120$admin_mail = (!empty($_POST['admin_mail'])) ? $_POST['admin_mail'] : '';
121
122$infos = array();
123$errors = array();
124
125// database config file migration : mysql.inc.php et database.inc.php
126$old_config_file = PHPWG_ROOT_PATH . 'include/mysql.inc.php';
127$config_file = PHPWG_ROOT_PATH . 'local/config/database.inc.php';
128if (!file_exists($config_file) && file_exists($old_config_file))
129{
130  $step = 3;
131  include $old_config_file;
132  $file_content = '<?php
133$conf[\'dblayer\'] = \'mysql\';
134$conf[\'db_base\'] = \''.$cfgBase.'\';
135$conf[\'db_user\'] = \''.$cfgUser.'\';
136$conf[\'db_password\'] = \''.$cfgPassword.'\';
137$conf[\'db_host\'] = \''.$cfgHote.'\';
138
139$prefixeTable = \''.$prefixeTable.'\';
140
141define(\'PHPWG_INSTALLED\', true);
142define(\'PWG_CHARSET\', \''.PWG_CHARSET.'\');
143define(\'DB_CHARSET\', \''.DB_CHARSET.'\');
144define(\'DB_COLLATE\', \''.DB_COLLATE.'\');
145
146?'.'>';
147}
148// Open config.php ... if it exists
149elseif (@file_exists($config_file))
150{
151  include($config_file);
152  // Is Piwigo already installed ?
153  if (defined("PHPWG_INSTALLED"))
154  {
155    die('Piwigo is already installed');
156  }
157}
158
159$prefixeTable = $table_prefix;
160include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
161@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
162include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
163include(PHPWG_ROOT_PATH . 'include/constants.php');
164include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
165include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
166include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
167
168if (isset($_GET['language']))
169{
170  $language = strip_tags($_GET['language']);
171}
172else
173{
174  $language = 'en_UK';
175  // Try to get browser language
176  foreach (get_languages('utf-8') as $language_code => $language_name)
177  {
178    if (substr($language_code,0,2) == @substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2))
179    {
180      $language = $language_code;
181      break;
182    }
183  }
184}
185
186if ('fr_FR' == $language) {
187  define('PHPWG_DOMAIN', 'fr.piwigo.org');
188}
189else if ('de_DE' == $language) {
190  define('PHPWG_DOMAIN', 'de.piwigo.org');
191}
192else if ('es_ES' == $language) {
193  define('PHPWG_DOMAIN', 'es.piwigo.org');
194}
195else if ('pl_PL' == $language) {
196  define('PHPWG_DOMAIN', 'pl.piwigo.org');
197}
198else if ('zh_CN' == $language) {
199  define('PHPWG_DOMAIN', 'cn.piwigo.org');
200}
201else {
202  define('PHPWG_DOMAIN', 'piwigo.org');
203}
204define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
205
206if (empty($step) || ($step != 3))
207{
208  load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
209  load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
210  load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
211}
212header('Content-Type: text/html; charset=UTF-8');
213//------------------------------------------------- check php version
214if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
215{
216  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
217}
218
219//----------------------------------------------------- template initialization
220include( PHPWG_ROOT_PATH .'include/template.class.php');
221$template = new Template(PHPWG_ROOT_PATH.'admin/themes', 'roma');
222$template->set_filenames( array('install' => 'install.tpl') );
223if (!isset($step))
224{
225  $step = 1;
226}
227//---------------------------------------------------------------- form analyze
228if ( isset( $_POST['install'] ))
229{
230  if (($pwg_db_link = pwg_db_connect($_POST['dbhost'], $_POST['dbuser'], 
231                                     $_POST['dbpasswd'], $_POST['dbname']))!==false) 
232  {
233
234    array_push( $infos, l10n('Parameters are correct') );
235
236    $required_version = constant('REQUIRED_'.strtoupper($dblayer).'_VERSION');
237    if ( version_compare(pwg_get_db_version(), $required_version, '>=') )
238    {
239      $pwg_charset = 'utf-8';
240      $pwg_db_charset = 'utf8';
241      if ($dblayer=='mysql')
242      {
243        $install_charset_collate = "DEFAULT CHARACTER SET $pwg_db_charset";
244      }
245      else 
246      {
247        $install_charset_collate = '';
248      }
249    }
250    else
251    {
252      $pwg_charset = 'iso-8859-1';
253      $pwg_db_charset = 'latin1';
254      $install_charset_collate = '';
255      if ( !array_key_exists($language, get_languages($pwg_charset) ) )
256      {
257        $language='en_UK';
258      }
259    }
260  }
261  else
262  {
263    array_push( $errors, l10n('Can\'t connect to server') );
264  }
265
266  $webmaster = trim(preg_replace( '/\s{2,}/', ' ', $admin_name ));
267  if ( empty($webmaster))
268    array_push( $errors, l10n('enter a login for webmaster') );
269  else if ( preg_match( '/[\'"]/', $webmaster ) )
270    array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') );
271  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
272    array_push( $errors, l10n('please enter your password again') );
273  if ( empty($admin_mail))
274    array_push( $errors, l10n('mail address must be like xxx@yyy.eee (example : jack@altern.org)') );
275  else
276  {
277    $error_mail_address = validate_mail_address(null, $admin_mail);
278    if (!empty($error_mail_address))
279      array_push( $errors, $error_mail_address );
280  }
281
282  if ( count( $errors ) == 0 )
283  {
284    $step = 2;
285    $file_content = '<?php
286$conf[\'dblayer\'] = \''.$dblayer.'\';
287$conf[\'db_base\'] = \''.$dbname.'\';
288$conf[\'db_user\'] = \''.$dbuser.'\';
289$conf[\'db_password\'] = \''.$dbpasswd.'\';
290$conf[\'db_host\'] = \''.$dbhost.'\';
291
292$prefixeTable = \''.$table_prefix.'\';
293
294define(\'PHPWG_INSTALLED\', true);
295define(\'PWG_CHARSET\', \''.$pwg_charset.'\');
296define(\'DB_CHARSET\', \''.$pwg_db_charset.'\');
297define(\'DB_COLLATE\', \'\');
298
299?'.'>';
300
301    @umask(0111);
302    // writing the configuration file
303    if ( !($fp = @fopen( $config_file, 'w' )))
304    {
305      $html_content = htmlentities( $file_content, ENT_QUOTES );
306      $html_content = nl2br( $html_content );
307      $error_copy = l10n('Copy the text in pink between hyphens and paste it into the file "local/config/database.inc.php"(Warning : database.inc.php must only contain what is in pink, no line return or space character)');
308      $error_copy .= '<br>--------------------------------------------------------------------<br>';
309      $error_copy .= '<span class="sql_content">' . $html_content . '</span>';
310      $error_copy .= '<br>--------------------------------------------------------------------<br>';
311    }
312    @fputs($fp, $file_content, strlen($file_content));
313    @fclose($fp);
314
315    // tables creation, based on piwigo_structure.sql
316    execute_sqlfile(
317      PHPWG_ROOT_PATH.'install/piwigo_structure-'.$dblayer.'.sql',
318      DEFAULT_PREFIX_TABLE,
319      $table_prefix
320      );
321    // We fill the tables with basic informations
322    execute_sqlfile(
323      PHPWG_ROOT_PATH.'install/config.sql',
324      DEFAULT_PREFIX_TABLE,
325      $table_prefix
326      );
327
328    $query = '
329INSERT INTO '.$table_prefix.'config (param,value,comment)
330   VALUES (\'secret_key\',\'md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').')\',
331   \'a secret key specific to the gallery for internal use\');';
332    pwg_query($query);
333
334    // fill $conf global array
335    load_conf_from_db();
336
337    $insert = array(
338      'id' => 1,
339      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
340      );
341    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
342
343    // webmaster admin user
344    $inserts = array(
345      array(
346        'id'           => 1,
347        'username'     => $admin_name,
348        'password'     => md5($admin_pass1),
349        'mail_address' => $admin_mail,
350        ),
351      array(
352        'id'           => 2,
353        'username'     => 'guest',
354        ),
355      );
356    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
357
358    create_user_infos(array(1,2), array('language' => $language));
359
360    // Available upgrades must be ignored after a fresh installation. To
361    // make PWG avoid upgrading, we must tell it upgrades have already been
362    // made.
363    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
364    define('CURRENT_DATE', $dbnow);
365    $datas = array();
366    foreach (get_available_upgrade_ids() as $upgrade_id)
367    {
368      array_push(
369        $datas,
370        array(
371          'id'          => $upgrade_id,
372          'applied'     => CURRENT_DATE,
373          'description' => 'upgrade included in installation',
374          )
375        );
376    }
377    mass_inserts(
378      UPGRADE_TABLE,
379      array_keys($datas[0]),
380      $datas
381      );
382  }
383}
384
385//------------------------------------------------------ start template output
386if ($step == 3)
387{
388  @umask(0111);
389  // writing the new configuration file
390  if ( !($fp = @fopen( $config_file, 'w' )))
391  {
392    $html_content = htmlentities( $file_content, ENT_QUOTES );
393    $html_content = nl2br( $html_content );
394    $error_copy = l10n('Copy the text in pink between hyphens and paste it into the file "local/config/database.inc.php"(Warning : database.inc.php must only contain what is in pink, no line return or space character)');
395    $error_copy .= '<br>--------------------------------------------------------------------<br>';
396    $error_copy .= '<span class="sql_content">' . $html_content . '</span>';
397    $error_copy .= '<br>--------------------------------------------------------------------<br>';
398  } 
399  else 
400  {
401    @fputs($fp, $file_content, strlen($file_content));
402    @fclose($fp);
403
404    @unlink($old_config_file);
405    header("Location: index.php");
406    exit();
407  }
408
409  $template->assign(
410    array(
411      'T_CONTENT_ENCODING' => 'utf-8',
412      'migration' => true
413          ));
414}
415else
416{
417  $dbengines = available_engines();
418
419  foreach (get_languages('utf-8') as $language_code => $language_name)
420  {
421    if ($language == $language_code)
422    {
423      $template->assign('language_selection', $language_code);
424    }
425    $languages_options[$language_code] = $language_name;
426  }
427  $template->assign('language_options', $languages_options);
428
429  $template->assign(
430    array(
431      'T_CONTENT_ENCODING' => 'utf-8',
432      'RELEASE' => PHPWG_VERSION,
433      'F_ACTION' => 'install.php?language=' . $language,
434      'F_DB_ENGINES' => $dbengines,
435      'F_DB_LAYER' => $dblayer,
436      'F_DB_HOST' => $dbhost,
437      'F_DB_USER' => $dbuser,
438      'F_DB_NAME' => $dbname,
439      'F_DB_PREFIX' => $table_prefix,
440      'F_ADMIN' => $admin_name,
441      'F_ADMIN_EMAIL' => $admin_mail,
442      'L_INSTALL_HELP' => sprintf(l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
443      ));
444}
445
446//------------------------------------------------------ errors & infos display
447if ($step == 1)
448{
449  $template->assign('install', true);
450}
451elseif ($step == 3)
452{
453  if (isset($error_copy))
454  {
455    array_push($errors, $error_copy);
456  }
457}
458else
459{
460  array_push($infos, l10n('The configuration of Piwigo is finished, here is the next step<br><br>
461* go to the identification page and use the login/password given for webmaster<br>
462* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'));
463
464  if (isset($error_copy))
465  {
466    array_push($errors, $error_copy);
467  }
468  else
469  {
470    session_set_save_handler('pwg_session_open',
471      'pwg_session_close',
472      'pwg_session_read',
473      'pwg_session_write',
474      'pwg_session_destroy',
475      'pwg_session_gc'
476    );
477    if ( function_exists('ini_set') )
478    {
479      ini_set('session.use_cookies', $conf['session_use_cookies']);
480      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
481      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
482      ini_set('session.cookie_httponly', 1);
483    }
484    session_name($conf['session_name']);
485    session_set_cookie_params(0, cookie_path());
486    $user = build_user(1, true);
487    log_user($user['id'], false);
488  }
489
490  $template->assign(
491    'SUBSCRIBE_BASE_URL',
492    get_newsletter_subscribe_base_url($language)
493    );
494}
495if (count($errors) != 0)
496{
497  $template->assign('errors', $errors);
498}
499
500if (count($infos) != 0 )
501{
502  $template->assign('infos', $infos);
503}
504
505//----------------------------------------------------------- html code display
506$template->pparse('install');
507?>
Note: See TracBrowser for help on using the repository browser.