source: trunk/install.php @ 5982

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

feature 1630: upgrade to Piwigo 2.1 :-)

bug 1604: only activate core themes not all themes.

File size: 15.7 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
27@set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
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//
32if( !@get_magic_quotes_gpc() )
33{
34  if( is_array($_POST) )
35  {
36    while( list($k, $v) = each($_POST) )
37    {
38      if( is_array($_POST[$k]) )
39      {
40        while( list($k2, $v2) = each($_POST[$k]) )
41        {
42          $_POST[$k][$k2] = addslashes($v2);
43        }
44        @reset($_POST[$k]);
45      }
46      else
47      {
48        $_POST[$k] = addslashes($v);
49      }
50    }
51    @reset($_POST);
52  }
53
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
74  if( is_array($_COOKIE) )
75  {
76    while( list($k, $v) = each($_COOKIE) )
77    {
78      if( is_array($_COOKIE[$k]) )
79      {
80        while( list($k2, $v2) = each($_COOKIE[$k]) )
81        {
82          $_COOKIE[$k][$k2] = addslashes($v2);
83        }
84        @reset($_COOKIE[$k]);
85      }
86      else
87      {
88        $_COOKIE[$k] = addslashes($v);
89      }
90    }
91    @reset($_COOKIE);
92  }
93}
94
95//----------------------------------------------------- variable initialization
96
97define('DEFAULT_PREFIX_TABLE', 'piwigo_');
98
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
108if (isset($_POST['install']))
109{
110  $prefixeTable = $_POST['prefix'];
111}
112else
113{
114  $prefixeTable = DEFAULT_PREFIX_TABLE;
115}
116
117include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
118@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
119
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
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'] : '';
139$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : DEFAULT_DB_ENGINE;
140
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
149// database config file migration : mysql.inc.php et database.inc.php
150$old_config_file = PHPWG_ROOT_PATH . 'include/mysql.inc.php';
151$config_file = PHPWG_ROOT_PATH . 'local/config/database.inc.php';
152if (!file_exists($config_file) && file_exists($old_config_file))
153{
154  $step = 3;
155  include $old_config_file;
156  $file_content = '<?php
157$conf[\'dblayer\'] = \'mysql\';
158$conf[\'db_base\'] = \''.$cfgBase.'\';
159$conf[\'db_user\'] = \''.$cfgUser.'\';
160$conf[\'db_password\'] = \''.$cfgPassword.'\';
161$conf[\'db_host\'] = \''.$cfgHote.'\';
162
163$prefixeTable = \''.$prefixeTable.'\';
164
165define(\'PHPWG_INSTALLED\', true);
166define(\'PWG_CHARSET\', \''.PWG_CHARSET.'\');
167define(\'DB_CHARSET\', \''.DB_CHARSET.'\');
168define(\'DB_COLLATE\', \''.DB_COLLATE.'\');
169
170?'.'>';
171}
172// Open config.php ... if it exists
173elseif (@file_exists($config_file))
174{
175  include($config_file);
176  // Is Piwigo already installed ?
177  if (defined("PHPWG_INSTALLED"))
178  {
179    die('Piwigo is already installed');
180  }
181}
182
183include(PHPWG_ROOT_PATH . 'include/constants.php');
184include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
185include(PHPWG_ROOT_PATH . 'admin/include/functions.php');
186
187include(PHPWG_ROOT_PATH . 'admin/include/languages.class.php');
188$languages = new languages('utf-8');
189
190if (isset($_GET['language']))
191{
192  $language = strip_tags($_GET['language']);
193}
194else
195{
196  $language = 'en_UK';
197  // Try to get browser language
198  foreach ($languages->fs_languages as $language_code => $language_name)
199  {
200    if (substr($language_code,0,2) == @substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2))
201    {
202      $language = $language_code;
203      break;
204    }
205  }
206}
207
208if ('fr_FR' == $language) {
209  define('PHPWG_DOMAIN', 'fr.piwigo.org');
210}
211else if ('it_IT' == $language) {
212  define('PHPWG_DOMAIN', 'it.piwigo.org');
213}
214else if ('de_DE' == $language) {
215  define('PHPWG_DOMAIN', 'de.piwigo.org');
216}
217else if ('es_ES' == $language) {
218  define('PHPWG_DOMAIN', 'es.piwigo.org');
219}
220else if ('pl_PL' == $language) {
221  define('PHPWG_DOMAIN', 'pl.piwigo.org');
222}
223else if ('zh_CN' == $language) {
224  define('PHPWG_DOMAIN', 'cn.piwigo.org');
225}
226else if ('hu_HU_CN' == $language) {
227  define('PHPWG_DOMAIN', 'hu.piwigo.org');
228}
229else if ('ru_RU_CN' == $language) {
230  define('PHPWG_DOMAIN', 'ru.piwigo.org');
231}
232else {
233  define('PHPWG_DOMAIN', 'piwigo.org');
234}
235define('PHPWG_URL', 'http://'.PHPWG_DOMAIN);
236
237if (empty($step) || ($step != 3))
238{
239  load_language('common.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
240  load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
241  load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8'));
242}
243header('Content-Type: text/html; charset=UTF-8');
244//------------------------------------------------- check php version
245if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<'))
246{
247  include(PHPWG_ROOT_PATH.'install/php5_apache_configuration.php');
248}
249
250//----------------------------------------------------- template initialization
251include( PHPWG_ROOT_PATH .'include/template.class.php');
252$template = new Template(PHPWG_ROOT_PATH.'admin/themes', 'roma');
253$template->set_filenames( array('install' => 'install.tpl') );
254if (!isset($step))
255{
256  $step = 1;
257}
258//---------------------------------------------------------------- form analyze
259include(PHPWG_ROOT_PATH .'include/dblayer/functions_'.$dblayer.'.inc.php');
260include(PHPWG_ROOT_PATH . 'admin/include/functions_install.inc.php');
261include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php');
262
263if ( isset( $_POST['install'] ))
264{
265  install_db_connect($infos, $errors);
266  pwg_db_check_charset();
267
268  $webmaster = trim(preg_replace( '/\s{2,}/', ' ', $admin_name ));
269  if ( empty($webmaster))
270    array_push( $errors, l10n('enter a login for webmaster') );
271  else if ( preg_match( '/[\'"]/', $webmaster ) )
272    array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') );
273  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
274    array_push( $errors, l10n('please enter your password again') );
275  if ( empty($admin_mail))
276    array_push( $errors, l10n('mail address must be like xxx@yyy.eee (example : jack@altern.org)') );
277  else
278  {
279    $error_mail_address = validate_mail_address(null, $admin_mail);
280    if (!empty($error_mail_address))
281      array_push( $errors, $error_mail_address );
282  }
283
284  if ( count( $errors ) == 0 )
285  {
286    $step = 2;
287    $file_content = '<?php
288$conf[\'dblayer\'] = \''.$dblayer.'\';
289$conf[\'db_base\'] = \''.$dbname.'\';
290$conf[\'db_user\'] = \''.$dbuser.'\';
291$conf[\'db_password\'] = \''.$dbpasswd.'\';
292$conf[\'db_host\'] = \''.$dbhost.'\';
293
294$prefixeTable = \''.$prefixeTable.'\';
295
296define(\'PHPWG_INSTALLED\', true);
297define(\'PWG_CHARSET\', \'utf-8\');
298define(\'DB_CHARSET\', \'utf8\');
299define(\'DB_COLLATE\', \'\');
300
301?'.'>';
302
303    @umask(0111);
304    // writing the configuration file
305    if ( !($fp = @fopen( $config_file, 'w' )))
306    {
307      $tmp_filename = md5(uniqid(time()));
308      $fh = @fopen( $conf['local_data_dir'] . '/pwg_' . $tmp_filename, 'w' );
309      @fputs($fh, $file_content, strlen($file_content));
310      @fclose($fh);
311
312      $template->assign(
313        array(
314          'config_creation_failed' => true,
315          'config_url' => 'install.php?dl='.$tmp_filename,
316          'config_file_content' => $file_content,
317          )
318        );
319    }
320    @fputs($fp, $file_content, strlen($file_content));
321    @fclose($fp);
322
323    // tables creation, based on piwigo_structure.sql
324    execute_sqlfile(
325      PHPWG_ROOT_PATH.'install/piwigo_structure-'.$dblayer.'.sql',
326      DEFAULT_PREFIX_TABLE,
327      $prefixeTable,
328      $dblayer
329      );
330    // We fill the tables with basic informations
331    execute_sqlfile(
332      PHPWG_ROOT_PATH.'install/config.sql',
333      DEFAULT_PREFIX_TABLE,
334      $prefixeTable,
335      $dblayer
336      );
337
338    $query = '
339INSERT INTO '.$prefixeTable.'config (param,value,comment)
340   VALUES (\'secret_key\',\'md5('.pwg_db_cast_to_text(DB_RANDOM_FUNCTION.'()').')\',
341   \'a secret key specific to the gallery for internal use\');';
342    pwg_query($query);
343
344    // fill languages table
345    foreach ($languages->get_fs_languages() as $language_code => $language_name)
346    {
347      $languages->perform_action('activate', $language_code);
348    }
349
350    // fill $conf global array
351    load_conf_from_db();
352
353    // PWG_CHARSET is required for building the fs_themes array in the
354    // themes class
355    if (!defined('PWG_CHARSET'))
356    {
357      define('PWG_CHARSET', 'utf-8');
358    }
359    activate_core_themes();
360
361    $insert = array(
362      'id' => 1,
363      'galleries_url' => PHPWG_ROOT_PATH.'galleries/',
364      );
365    mass_inserts(SITES_TABLE, array_keys($insert), array($insert));
366
367    // webmaster admin user
368    $inserts = array(
369      array(
370        'id'           => 1,
371        'username'     => $admin_name,
372        'password'     => md5($admin_pass1),
373        'mail_address' => $admin_mail,
374        ),
375      array(
376        'id'           => 2,
377        'username'     => 'guest',
378        ),
379      );
380    mass_inserts(USERS_TABLE, array_keys($inserts[0]), $inserts);
381
382    create_user_infos(array(1,2), array('language' => $language));
383
384    // Available upgrades must be ignored after a fresh installation. To
385    // make PWG avoid upgrading, we must tell it upgrades have already been
386    // made.
387    list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
388    define('CURRENT_DATE', $dbnow);
389    $datas = array();
390    foreach (get_available_upgrade_ids() as $upgrade_id)
391    {
392      array_push(
393        $datas,
394        array(
395          'id'          => $upgrade_id,
396          'applied'     => CURRENT_DATE,
397          'description' => 'upgrade included in installation',
398          )
399        );
400    }
401    mass_inserts(
402      UPGRADE_TABLE,
403      array_keys($datas[0]),
404      $datas
405      );
406  }
407}
408
409//------------------------------------------------------ start template output
410if ($step == 3)
411{
412  @umask(0111);
413  // writing the new configuration file
414  if ( !($fp = @fopen( $config_file, 'w' )))
415  {
416    $html_content = htmlentities( $file_content, ENT_QUOTES );
417    $html_content = nl2br( $html_content );
418   
419    $error_copy = l10n('An alternate solution is to copy the text in the box above and paste it into the file "local/config/database.inc.php" (Warning : database.inc.php must only contain what is in the textarea, no line return or space character)');
420    $error_copy .= '<br><br>';
421    $error_copy .= '<textarea rows="15" cols="70">'.$html_content.'</textarea>';
422  } 
423  else 
424  {
425    @fputs($fp, $file_content, strlen($file_content));
426    @fclose($fp);
427
428    @unlink($old_config_file);
429    header("Location: index.php");
430    exit();
431  }
432
433  $template->assign(
434    array(
435      'T_CONTENT_ENCODING' => 'utf-8',
436      'migration' => true
437      )
438    );
439}
440else
441{
442  $dbengines = available_engines();
443
444  foreach ($languages->fs_languages as $language_code => $language_name)
445  {
446    if ($language == $language_code)
447    {
448      $template->assign('language_selection', $language_code);
449    }
450    $languages_options[$language_code] = $language_name;
451  }
452  $template->assign('language_options', $languages_options);
453
454  $template->assign(
455    array(
456      'T_CONTENT_ENCODING' => 'utf-8',
457      'RELEASE' => PHPWG_VERSION,
458      'F_ACTION' => 'install.php?language=' . $language,
459      'F_DB_ENGINES' => $dbengines,
460      'F_DB_LAYER' => $dblayer,
461      'F_DB_HOST' => $dbhost,
462      'F_DB_USER' => $dbuser,
463      'F_DB_NAME' => $dbname,
464      'F_DB_PREFIX' => $prefixeTable,
465      'F_ADMIN' => $admin_name,
466      'F_ADMIN_EMAIL' => $admin_mail,
467      'L_INSTALL_HELP' => sprintf(l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
468      ));
469}
470
471//------------------------------------------------------ errors & infos display
472if ($step == 1)
473{
474  $template->assign('install', true);
475}
476elseif ($step == 3)
477{
478  if (isset($error_copy))
479  {
480    array_push($errors, $error_copy);
481  }
482}
483else
484{
485  array_push(
486    $infos,
487    l10n('Congratulations, Piwigo installation is completed')
488    );
489
490  if (isset($error_copy))
491  {
492    array_push($errors, $error_copy);
493  }
494  else
495  {
496    session_set_save_handler('pwg_session_open',
497      'pwg_session_close',
498      'pwg_session_read',
499      'pwg_session_write',
500      'pwg_session_destroy',
501      'pwg_session_gc'
502    );
503    if ( function_exists('ini_set') )
504    {
505      ini_set('session.use_cookies', $conf['session_use_cookies']);
506      ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
507      ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
508      ini_set('session.cookie_httponly', 1);
509    }
510    session_name($conf['session_name']);
511    session_set_cookie_params(0, cookie_path());
512    $user = build_user(1, true);
513    log_user($user['id'], false);
514  }
515
516  $template->assign(
517    'SUBSCRIBE_BASE_URL',
518    get_newsletter_subscribe_base_url($language)
519    );
520}
521if (count($errors) != 0)
522{
523  $template->assign('errors', $errors);
524}
525
526if (count($infos) != 0 )
527{
528  $template->assign('infos', $infos);
529}
530
531//----------------------------------------------------------- html code display
532$template->pparse('install');
533?>
Note: See TracBrowser for help on using the repository browser.