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.
56 lines
2.6 KiB
56 lines
2.6 KiB
Index: .htaccess.dist |
|
--- .htaccess.dist.orig 2008-10-31 10:04:18 +0100 |
|
+++ .htaccess.dist 2009-10-02 22:36:29 +0200 |
|
@@ -1,17 +1,9 @@ |
|
-# BEGIN PunBB |
|
|
|
-<IfModule mod_rewrite.c> |
|
-# MultiViews interfers with proper rewriting |
|
Options -MultiViews |
|
- |
|
RewriteEngine On |
|
- |
|
-# 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 |
|
RewriteRule . rewrite.php [L] |
|
-</IfModule> |
|
|
|
-# END PunBB |
|
\ No newline at end of file |
|
Index: admin/install.php |
|
--- admin/install.php.orig 2009-05-20 11:20:51 +0200 |
|
+++ admin/install.php 2009-10-02 22:36:15 +0200 |
|
@@ -222,25 +222,25 @@ |
|
<div class="sf-set set2"> |
|
<div class="sf-box text required"> |
|
<label for="fld3"><span><?php echo $lang_install['Database name'] ?> <em><?php echo $lang_install['Required'] ?></em></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" /></span> |
|
+ <span class="fld-input"><input id="fld3" type="text" name="req_db_name" size="35" maxlength="50" value="punbb"/></span> |
|
</div> |
|
</div> |
|
<div class="sf-set set3"> |
|
<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"> |
|
<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="password" name="db_password" size="35" /></span> |
|
+ <span class="fld-input"><input id="fld5" type="password" name="db_password" size="35" 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="20" maxlength="30" /></span> |
|
+ <span class="fld-input"><input id="fld6" type="text" name="db_prefix" size="20" maxlength="30" value=""/></span> |
|
</div> |
|
</div> |
|
</fieldset>
|
|
|