diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-07-08 09:09:22 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-07-08 09:09:22 +0000 |
commit | c014a32ec312d9f701962149b62d6119a5da6b99 (patch) | |
tree | 189857deb8de2d99221aebf0b453d0a4c6c719ae /templates/show_install_lang.inc.php | |
parent | 86a9ed00b3f418fef4db30dc4f49feb5b5e7ab72 (diff) | |
download | ampache-c014a32ec312d9f701962149b62d6119a5da6b99.tar.gz ampache-c014a32ec312d9f701962149b62d6119a5da6b99.tar.bz2 ampache-c014a32ec312d9f701962149b62d6119a5da6b99.zip |
add additional information during the install process
Diffstat (limited to 'templates/show_install_lang.inc.php')
-rw-r--r-- | templates/show_install_lang.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_install_lang.inc.php b/templates/show_install_lang.inc.php index c893ad15..a0f57d52 100644 --- a/templates/show_install_lang.inc.php +++ b/templates/show_install_lang.inc.php @@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -$prefix = dirname(__FILE__); +$prefix = realpath(dirname(__FILE__). "/../"); ?> <?php if (INSTALL != '1') { exit; } ?> <?php $results = 0; ?> @@ -43,10 +43,10 @@ $prefix = dirname(__FILE__); </p> <ul> <li><?php echo _('A MySQL Server with a username and password that can create/modify databases'); ?></li> - <li><?php echo sprintf(_("Your webserver has read access to the %s file and the %s file"),$prefix . '/sql/ampache.sql',$prefix . '/config/ampache.cfg.dist'); ?></li> + <li><?php echo sprintf(_("Your webserver has read access to the %s file and the %s file"),$prefix . '/sql/ampache.sql',$prefix . '/config/ampache.cfg.php.dist'); ?></li> </ul> <p> -<?php echo _("Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit /config/ampache.cfg.php"); ?> +<?php echo sprintf(_("Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit %s"),$prefix . '/config/ampache.cfg.php.dist'); ?> </p> <?php require_once 'templates/show_install_check.inc.php'; ?> </div> |