Changes between Version 4 and Version 5 of GenDolTShooter


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

--

Legend:

Unmodified
Added
Removed
Modified
  • GenDolTShooter

    v4 v5  
    1 == Installation problems == 
    2  
    3  
    4 == Run-Time problems == 
    5  
    6     '''Q:''' I see this error on some of my site's pages: '''''Call to undefined function: mb_ereg_replace() in /home/content/g/a/r/garcometal/html/ohana/inc/utils.inc.php on line 120''''' 
     1== Q: I see this error on some of my site's pages: ''Call to undefined function: mb_ereg_replace() in /path_to_dolphin/inc/utils.inc.php on line 120'' == 
    72 
    83    '''A:''' This error and similar errors (yielding about functions starting with '''mb_''') refer to '''mbstring''' extension being absent from your PHP compilation. You should either re-compile it with '''--with-mbstring''' directive (under Linux) or uncomment '''extension=php_mbstring.dll''' in '''php.ini''' (under Windows). Then you should restart Apache web server. 
     
    105---- 
    116 
    12     '''Q:''' I get ''Uploading file error'' when uploading audio/video files in Ray Media and Video Players 
     7== Q: I get ''Uploading file error'' when uploading audio/video files in Ray Media and Video Players == 
    138 
    149    '''A:''' This is a common problem and most of the time it is caused by the following reasons: 
     
    3328                                 
    3429            6) You have PHP '''exec()''' function disabled on your server. Advise with your hosting provider in order to figure this out. 
     30 
     31---- 
     32 
     33== Q: When I try to open somebody's profile, I get this page: ''Not Found'' == 
     34 
     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    }}} 
     46 
     47    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