Changes between Version 5 and Version 6 of GenDolTShooter
- Timestamp:
- Dec 14, 2007, 10:42:23 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GenDolTShooter
v5 v6 9 9 '''A:''' This is a common problem and most of the time it is caused by the following reasons: 10 10 11 1) You're trying to upload files bigger than 2 Megabytes which is the default value for PHP configuration. To fix it, edit '''php.ini''' file which is used as a configuration file by your PHP processor. You have to find two variables: '''upload_max_filesize''' and '' post_max_size''' and assign bigger values to them.11 1) You're trying to upload files bigger than 2 Megabytes which is the default value for PHP configuration. To fix it, edit '''php.ini''' file which is used as a configuration file by your PHP processor. You have to find two variables: '''upload_max_filesize''' and '''post_max_size''' and assign bigger values to them. 12 12 13 13 2) You don't have .htaccess or have it corrupted in the '''ray''' folder. Here's the code that this file must contain: … … 34 34 35 35 '''A:''' The problem is that your Apache server is not compiled with rewrite module or you don't have rewrite instructions in your Dolphin's root .htaccess file. These instructions should be as follows: 36 {{{ 37 <IfModule mod_rewrite.c> 38 RewriteEngine on 39 40 RewriteCond %{REQUEST_FILENAME} -f [OR] 41 RewriteCond %{REQUEST_FILENAME} -d 42 RewriteRule .+ - [L] 43 RewriteRule ^([A-Za-z0-9_-]+)$ profile.php?ID=$1 [QSA,L] 44 </IfModule> 45 }}} 36 {{{ 37 <IfModule mod_rewrite.c> 38 RewriteEngine on 39 RewriteCond %{REQUEST_FILENAME} -f [OR] 40 RewriteCond %{REQUEST_FILENAME} -d 41 RewriteRule .+ - [L] 42 RewriteRule ^([A-Za-z0-9_-]+)$ profile.php?ID=$1 [QSA,L] 43 </IfModule> 44 }}} 46 45 47 46 If you can't solve these problems, you can disable '''Friendly profile permalinks''' in '''Settings -> Advanced Settings'''