aboutsummaryrefslogtreecommitdiffstats
path: root/install.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-04-02 13:05:53 +0000
committerplegall <plg@piwigo.org>2010-04-02 13:05:53 +0000
commite0317e195b6232090129f39939a86923ccc304ed (patch)
tree5ae54761fed329e50b5db621c1e9caa124d6e336 /install.php
parent783c21a8fd7185f8e2d8c63880a616dba7a95ccb (diff)
Improve the install confirmation page: dedicated button to download the
database.inc.php file. git-svn-id: http://piwigo.org/svn/trunk@5571 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install.php')
-rw-r--r--install.php27
1 files changed, 12 insertions, 15 deletions
diff --git a/install.php b/install.php
index 92c8d7a0b..7ddd080b7 100644
--- a/install.php
+++ b/install.php
@@ -335,17 +335,13 @@ define(\'DB_COLLATE\', \'\');
@fputs($fh, $file_content, strlen($file_content));
@fclose($fh);
- $error_copy = l10n('Creation of config file local/config/database.inc.php failed.');
- $error_copy .= sprintf('<br><a href="install.php?dl=%s">%s</a> %s',
- $tmp_filename,
- l10n('You can download the config file'),
- l10n('and upload it to local/config directory of your installation.')
+ $template->assign(
+ array(
+ 'config_creation_failed' => true,
+ 'config_url' => 'install.php?dl='.$tmp_filename,
+ 'config_file_content' => $file_content,
+ )
);
-
- $error_copy .= '<br><br>';
- $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)');
- $error_copy .= '<br><br>';
- $error_copy .= '<textarea rows="15" cols="70">' . $file_content . '</textarea>';
}
@fputs($fp, $file_content, strlen($file_content));
@fclose($fp);
@@ -443,10 +439,10 @@ if ($step == 3)
{
$html_content = htmlentities( $file_content, ENT_QUOTES );
$html_content = nl2br( $html_content );
- $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)');
- $error_copy .= '<br>--------------------------------------------------------------------<br>';
- $error_copy .= '<span class="sql_content">' . $html_content . '</span>';
- $error_copy .= '<br>--------------------------------------------------------------------<br>';
+
+ $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)');
+ $error_copy .= '<br><br>';
+ $error_copy .= '<textarea rows="15" cols="70">'.$html_content.'</textarea>';
}
else
{
@@ -462,7 +458,8 @@ if ($step == 3)
array(
'T_CONTENT_ENCODING' => 'utf-8',
'migration' => true
- ));
+ )
+ );
}
else
{