[Comoblog-commit] comoblog/_install step_1.php, 1.7, 1.8 step_2.php, 1.1.1.1, 1.2 step_3.php, 1.1.1
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2007-03-19 10:47:04
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv2218/_install Modified Files: step_1.php step_2.php step_3.php step_4.php step_5.php Log Message: Fix: 1519966 - Installation issues under php5.0. Patch in SF by krkstrk Index: step_2.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/step_2.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- step_2.php 16 Aug 2005 05:49:44 -0000 1.1.1.1 +++ step_2.php 19 Mar 2007 10:46:59 -0000 1.2 @@ -7,7 +7,10 @@ if ($_SESSION['step'] < 1) { Header('Location: step_1.php'); exit(); +} else { + $_SESSION['step'] = 2; } + require_once (dirname(__FILE__).'/../include/config.inc.php'); // now I can include the real config.inc.php file! @@ -47,7 +50,6 @@ $res = mysql_query($query); // redirect to step 3 - $_SESSION['step'] = 2; Header ('Location: step_3.php'); exit(); } Index: step_5.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/step_5.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- step_5.php 7 Oct 2005 13:21:21 -0000 1.2 +++ step_5.php 19 Mar 2007 10:46:59 -0000 1.3 @@ -7,6 +7,8 @@ if ($_SESSION['step'] < 4) { Header('Location: step_4.php'); exit(); +} else { + $_SESSION['step'] = 5; } require (dirname(__FILE__).'/../include/config.inc.php'); // now I can include the real config.inc.php file! @@ -44,7 +46,6 @@ $res = mysql_query($sql); // redirect to step 5 - $_SESSION['step'] = 5; Header ('Location: ok.php'); exit(); } Index: step_3.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/step_3.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- step_3.php 16 Aug 2005 05:49:44 -0000 1.1.1.1 +++ step_3.php 19 Mar 2007 10:46:59 -0000 1.2 @@ -27,7 +27,10 @@ if ($_SESSION['step'] < 2) { Header('Location: step_2.php'); exit(); +} else { + $_SESSION['step'] = 3; } + require_once (dirname(__FILE__).'/../include/config.inc.php'); // now I can include the real config.inc.php file! require_once ('../include/xtemplate.inc.php'); @@ -91,7 +94,6 @@ // redirect to step 4 - $_SESSION['step'] = 3; Header ('Location: step_4.php'); exit(); } Index: step_1.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/step_1.php,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- step_1.php 17 Nov 2006 00:50:45 -0000 1.7 +++ step_1.php 19 Mar 2007 10:46:59 -0000 1.8 @@ -9,6 +9,8 @@ if ($_SESSION['step'] < 0) { Header('Location: step_0.php'); exit(); +} else { + $_SESSION['step'] = 1; } require ('../include/xtemplate.inc.php'); @@ -210,7 +212,6 @@ @chmod (dirname(__FILE__).'/../include/param.inc.'. $_SERVER['SERVER_NAME'].'.php', 0600); // redirect to step 2 - $_SESSION['step'] = 1; Header ('Location: step_2.php'); exit(); } Index: step_4.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/step_4.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- step_4.php 16 Aug 2005 05:49:44 -0000 1.1.1.1 +++ step_4.php 19 Mar 2007 10:46:59 -0000 1.2 @@ -7,7 +7,9 @@ if ($_SESSION['step'] < 3) { Header('Location: step_3.php'); exit(); -} +} else { + $_SESSION['step'] = 4; +} require (dirname(__FILE__).'/../include/config.inc.php'); // now I can include the real config.inc.php file! @@ -55,7 +57,6 @@ $res = mysql_query($sql); // redirect to step 5 - $_SESSION['step'] = 4; Header ('Location: step_5.php'); exit(); } |