When I extract the Serendipity archive, the directories that created are:
- bundled-libs
CVS
deployment
docs
htmlarea
include
lang
plugins
P.s. This has happened with all the releases I've tried. Maybe it's WinRAR ?
Danke schön and all that !
Code: Select all
if ( is_array($errors = serendipity_checkInstallation()) ) {
foreach ( $errors as $error ) {
echo '<div class="serendipityAdminMsgError">'. $error .'</div>';
}
$from = $_POST;
/* Back to configuration, user did something wrong */
$serendipity['GET']['step'] = $serendipity['POST']['step'];
} else {
/* We're good, move to install process */
$serendipity['GET']['step'] = 3;
}
Code: Select all
echo 'INSTALLER DIAGNOSIS INIT...<br />';
if ( is_array($errors = serendipity_checkInstallation()) ) {
echo 'INSTALLER ERROR!<br />';
print_r($errors);
foreach ( $errors as $error ) {
echo '<div class="serendipityAdminMsgError">'. $error .'</div>';
}
echo 'GOING BACK TO PREVIOUS STEP!<br />';
$from = $_POST;
/* Back to configuration, user did something wrong */
$serendipity['GET']['step'] = $serendipity['POST']['step'];
} else {
echo 'INSTALLER SUCCESSFUL!<br />';
/* We're good, move to install process */
$serendipity['GET']['step'] = 3;
}
Code: Select all
The database you specified does not exist.
The mySQL error was: Access denied for user ''@'localhost' to database 'serendipity'
Code: Select all
<?php # $Id: serendipity_lang_en.inc.php,v 1.146 2005/03/13 14:14:37 garvinhicking Exp $
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
# All rights reserved. See LICENSE file for licensing details
@define('LANG_CHARSET', 'ISO-8859-1');