Changes between Version 5 and Version 6 of GenDolTShooter


Ignore:
Timestamp:
Dec 14, 2007, 10:42:23 AM (16 years ago)
Author:
IgorL
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenDolTShooter

    v5 v6  
    99    '''A:''' This is a common problem and most of the time it is caused by the following reasons: 
    1010 
    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. 
    1212 
    1313            2) You don't have .htaccess or have it corrupted in the '''ray''' folder. Here's the code that this file must contain: 
     
    3434 
    3535       '''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        }}} 
    4645 
    4746    If you can't solve these problems, you can disable '''Friendly profile permalinks''' in '''Settings -> Advanced Settings''' 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.
Fork me on GitHub