You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
3.2 KiB
58 lines
3.2 KiB
Index: .htaccess.dist |
|
--- .htaccess.dist.orig 2012-02-09 21:42:20.000000000 +0100 |
|
+++ .htaccess.dist 2013-01-03 19:12:55.000000000 +0100 |
|
@@ -12,6 +12,7 @@ |
|
|
|
# Uncomment and properly set the RewriteBase if the rewrite rules are not working properly |
|
#RewriteBase / |
|
+ RewriteBase /punbb |
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f |
|
RewriteCond %{REQUEST_FILENAME} !-d |
|
@@ -70,4 +71,4 @@ |
|
Options -Indexes |
|
</IfModule> |
|
|
|
-# END PunBB |
|
\ No newline at end of file |
|
+# END PunBB |
|
Index: admin/install.php |
|
--- admin/install.php.orig 2012-02-09 21:42:20.000000000 +0100 |
|
+++ admin/install.php 2013-01-03 19:15:00.000000000 +0100 |
|
@@ -234,31 +234,31 @@ |
|
<div class="sf-set set1" id="db_host_block"> |
|
<div class="sf-box text required"> |
|
<label for="db_host"><span><?php echo $lang_install['Database server'] ?></span> <small><?php echo $lang_install['Database server help'] ?></small></label><br /> |
|
- <span class="fld-input"><input id="db_host" type="text" name="req_db_host" value="localhost" size="35" maxlength="100" required /></span> |
|
+ <span class="fld-input"><input id="db_host" type="text" name="req_db_host" value="localhost" size="35" maxlength="100" value="localhost" required /></span> |
|
</div> |
|
</div> |
|
<div class="sf-set set2"> |
|
<div class="sf-box text required"> |
|
<label for="fld3"><span><?php echo $lang_install['Database name'] ?></span> <small><?php echo $lang_install['Database name help'] ?></small></label><br /> |
|
- <span class="fld-input"><input id="fld3" type="text" name="req_db_name" size="35" maxlength="50" required /></span> |
|
+ <span class="fld-input"><input id="fld3" type="text" name="req_db_name" size="35" maxlength="50" value="punbb" required /></span> |
|
</div> |
|
</div> |
|
<div class="sf-set set3" id="db_username_block"> |
|
<div class="sf-box text"> |
|
<label for="fld4"><span><?php echo $lang_install['Database username'] ?></span> <small><?php echo $lang_install['Database username help'] ?></small></label><br /> |
|
- <span class="fld-input"><input id="fld4" type="text" name="db_username" size="35" maxlength="50" /></span> |
|
+ <span class="fld-input"><input id="fld4" type="text" name="db_username" size="35" maxlength="50" value="punbb" /></span> |
|
</div> |
|
</div> |
|
<div class="sf-set set4" id="db_password_block"> |
|
<div class="sf-box text"> |
|
<label for="fld5"><span><?php echo $lang_install['Database password'] ?></span> <small><?php echo $lang_install['Database password help'] ?></small></label><br /> |
|
- <span class="fld-input"><input id="fld5" type="text" name="db_password" size="35" autocomplete="off" /></span> |
|
+ <span class="fld-input"><input id="fld5" type="text" name="db_password" size="35" autocomplete="off" value="punbb" /></span> |
|
</div> |
|
</div> |
|
<div class="sf-set set5"> |
|
<div class="sf-box text"> |
|
<label for="fld6"><span><?php echo $lang_install['Table prefix'] ?></span> <small><?php echo $lang_install['Table prefix help'] ?></small></label><br /> |
|
- <span class="fld-input"><input id="fld6" type="text" name="db_prefix" size="35" maxlength="30" /></span> |
|
+ <span class="fld-input"><input id="fld6" type="text" name="db_prefix" size="35" maxlength="30" value="" /></span> |
|
</div> |
|
</div> |
|
</fieldset>
|
|
|