aboutsummaryrefslogtreecommitdiffstats
path: root/install.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-11-03 22:38:15 +0000
committerz0rglub <z0rglub@piwigo.org>2003-11-03 22:38:15 +0000
commitd6bb7649fc13703cdfd5c286a980b5ac0b70c988 (patch)
treede8a55fd3521d8ce8ed32b20e13c9db818f0c7ce /install.php
parent8cd1f12655629b62cdbbabc40a9ae112f220177c (diff)
- Modifications linked to the move of install.php to the root directory of
PhpWebGallery - define( CONSTANT, 'value' ) becomes define( "CONSTANT", 'value') git-svn-id: http://piwigo.org/svn/trunk@230 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install.php')
-rw-r--r--install.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/install.php b/install.php
index 3b5a4619f..6cfeeeaaa 100644
--- a/install.php
+++ b/install.php
@@ -18,19 +18,19 @@
***************************************************************************/
//-------------------------------------------------------------------- includes
-define( PREFIX_INCLUDE, '.' );
-include( '../include/vtemplate.class.php' );
-include( '../include/functions.inc.php' );
+define( "PREFIX_INCLUDE", '' );
+include( './include/vtemplate.class.php' );
+include( './include/functions.inc.php' );
//----------------------------------------------------- template initialization
$vtp = new VTemplate;
-$handle = $vtp->Open( '../template/default/admin/install.vtp' );
+$handle = $vtp->Open( './template/default/install.vtp' );
$vtp->setGlobalVar( $handle, 'release', '1.3' );
//-------------------------------------------------------------------- language
if ( isset( $_GET['language'] ) )
{
$isadmin = true;
$lang = array();
- include( '../language/'.$_GET['language'].'.php' );
+ include( './language/'.$_GET['language'].'.php' );
$tpl = array( 'step1_err_copy', 'step1_err_copy_2', 'step1_err_copy_next',
'errors_title', 'step1_title','step1_host','step1_host_info',
'step1_user','step1_user_info','step1_pass','step1_pass_info',
@@ -84,7 +84,7 @@ if ( $_GET['step'] == 1 )
$file_content.= "\n\$prefixeTable = '".$_POST['prefixeTable']."';";
$file_content.= "\n?>";
// writting the configuration file
- if ( $fp = @fopen( '../include/mysql.inc.php', 'a+' ) )
+ if ( $fp = @fopen( './include/mysql.inc.php', 'a+' ) )
{
fwrite( $fp, $file_content );
fclose( $fp );
@@ -93,7 +93,7 @@ if ( $_GET['step'] == 1 )
$cfgUser = '';
$cfgPassword = '';
$cfgBase = '';
- include( '../include/mysql.inc.php' );
+ include( './include/mysql.inc.php' );
$file_OK = false;
if ( @mysql_connect( $cfgHote, $cfgUser, $cfgPassword ) )
{
@@ -168,7 +168,7 @@ else if ( $_GET['step'] == 2 )
$errors = array();
$infos = array();
- include( '../include/mysql.inc.php' );
+ include( './include/mysql.inc.php' );
mysql_connect( $cfgHote, $cfgUser, $cfgPassword )
or die ( "Can't connect to database host" );
mysql_select_db( $cfgBase )
@@ -177,7 +177,7 @@ else if ( $_GET['step'] == 2 )
if ( !isset( $_POST['submit'] ) )
{
// tables creation, based on phpwebgallery_structure.sql
- $sql_lines = file( './phpwebgallery_structure.sql' );
+ $sql_lines = file( './admin/phpwebgallery_structure.sql' );
$query = '';
foreach ( $sql_lines as $sql_line ) {
$sql_line = trim( $sql_line );
@@ -283,7 +283,7 @@ else if ( $_GET['step'] == 2 )
else
{
$vtp->addSession( $handle, 'step0' );
- $languages = get_languages( '../language/' );
+ $languages = get_languages( './language/' );
foreach ( $languages as $language ) {
$vtp->addSession( $handle, 'language' );
$vtp->setVar( $handle, 'language.name', $language );