summaryrefslogtreecommitdiffstats
path: root/templates/show_install.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-05-19 04:30:18 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-05-19 04:30:18 +0000
commit0a506696acf130d98840d1eaece532040f762308 (patch)
treeee75a7086430920089901b53b9cb786178f1e6e3 /templates/show_install.inc.php
parent1182401456cd2eb80e931e7d9449588f3241e2c9 (diff)
downloadampache-0a506696acf130d98840d1eaece532040f762308.tar.gz
ampache-0a506696acf130d98840d1eaece532040f762308.tar.bz2
ampache-0a506696acf130d98840d1eaece532040f762308.zip
add full path to needed files so there is no confusion
Diffstat (limited to 'templates/show_install.inc.php')
-rw-r--r--templates/show_install.inc.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/show_install.inc.php b/templates/show_install.inc.php
index afd68f33..9465ca3f 100644
--- a/templates/show_install.inc.php
+++ b/templates/show_install.inc.php
@@ -19,6 +19,7 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
if (INSTALL != '1') { exit; }
+$prefix = dirname(__FILE__);
$dir = is_rtl($htmllang) ? 'rtl' : 'ltr';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -43,7 +44,7 @@ $dir = is_rtl($htmllang) ? 'rtl' : 'ltr';
</p>
<ul>
<li><?php echo _("A MySQL Server with a username and password that can create/modify databases"); ?></li>
- <li><?php echo _("Your webserver has read access to the /sql/ampache.sql file and the /config/ampache.cfg.php.dist file"); ?></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>
</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"); ?>