Changes between Version 15 and Version 16 of GenDol7TShooter


Ignore:
Timestamp:
Aug 31, 2011, 1:59:51 PM (13 years ago)
Author:
IgorL
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenDol7TShooter

    v15 v16  
    22If your web-server complies with [wiki:DolTech Dolphin Hosting Requirements] and you carefully followed al the steps described in [wiki:DetailedInstall Dolphin 7 Installation Guide], your site should work just fine. In some (rare) cases, you may encounter a problem. In this document we gather the most common known issues and their possible solutions.[[BR]] 
    33 
    4 -- 
     4---- 
    55 
    66== I see a blank page in the place of my Dolphin Home page. == 
     
    1414You should replace "path_to_script" with the absolute path to your script's folder. 
    1515 
    16 -- 
     16---- 
    1717 
    1818== My page comes out gibberish. When I look at the source I see a lot of '''<?php ... ?>''' tags. == 
     
    2020If the '''<?php ?>''' tags are being sent to the browser, it means your ''PHP'' is not working properly. All ''PHP'' code is supposed to be executed before the server sends the resulting ''HTML'' to your web browser. Make sure your web server meets the [wiki:DolTech requirements] to run Dolphin, that ''PHP'' is installed and configured properly, or contact your hosting provider or system administrator for assistance.  
    2121 
    22 -- 
     22---- 
    2323 
    2424== After install my home page displays "Internal error 500". == 
     
    2626Your server probably doesn't accept '''.htaccess''' files (folder configuration files). In this case, delete '''.htaccess''' file from the folder that doesn't open or refer to your hosting provider for a reference what it should be replaced with. 
    2727 
    28 -- 
     28---- 
    2929 
    3030== I keep getting ''Database activation failed'' but I'm sure my configuration is correct. == 
     
    3737If you are using a version of ''MySQL'' prior to 4.1, use PASSWORD instead of OLD_PASSWORD. If you do not have shell access, you should be able to simply enter the above into an ''SQL query'' in ''phpMyAdmin''. Failing that, you may need to use your host's control panel to reset the password for your database user.     
    3838 
    39 -- 
     39---- 
    4040 
    4141== My security image doesn't show up on join_form.php. == 
     
    4343Check if you have [http://www.boutell.com/gd/ GD library] installed and if it's compiled with ''Free Type fonts'' library. If GD library is not installed, you should install the latest version of [http://www.imagemagick.org ImageMagick] and disable '''Use GD library for image processing in '''Admin panel -> Settings -> Advanced Settings'''. 
    4444 
    45 -- 
     45---- 
    4646 
    4747== My image/MP3/video uploads don't work. == 
     
    5151Your ''PHP'' may be also configured to upload files under specific limit. In this case, check ''php.ini'' (PHP configuration file) and edit the settings for ''"upload_max_filesize"'' statement. 
    5252         
    53 -- 
     53---- 
    5454 
    5555== Forum displays a blank page == 
     
    5757Check if ''PHP'' is compiled with '''DOMXML''' and '''XSLT''' support. 
    5858 
    59 -- 
     59---- 
    6060 
    6161== My Dolphin site shows 500 internal server error == 
     
    69693) All Dolphin files and folders should have your FTP user as their owner. If it is not so, this can be another reason of the problem. 
    7070 
    71 -- 
     71---- 
    7272 
    7373== Some or all of my Flash apps keep on loading and do not work. == 
     
    107107'''''MODULE_NAME''''' stands for '''board''', '''chat''', '''desktop''', '''im''', '''mp3''', '''photo''', '''video''' or '''video_comments'''. 
    108108 
    109 -- 
     109---- 
    110110 
    111111== When I upload a video it always says "video is being processed" == 
     
    1171173) Your server may not support H264 codec and thus can't process videos. In this case, the codec should be disabled in "Admin Panel -> Modules -> Flash Apps -> Video Player -> Settings". 
    118118 
    119 -- 
     119---- 
    120120 
    121121== I have installed/created a new template for Dolphin and the Forum stopped to work == 
     
    134134 
    135135now you only need to go to '''Admin Panel -> Modules -> Orca Forum -> Manage Forum''' and recompile your languages. 
     136 
     137---- 
     138 
     139== I get "allowed memory size exhausted error" == 
     140 
     141This error comes from unsufficient PHP settings. I will show you how to change some PHP settings to prevent this kind of error and some other errors, too. 
     142 
     1431) If PHP is running as an Apache module. 
     144Open the file ".htaccess" in Dolphin installation directory and add these at the very end of it: 
     145{{{ 
     146php_flag allow_url_include Off 
     147php_value upload_max_filesize 128M 
     148php_value post_max_size 256M 
     149php_value memory_limit 128M 
     150php_value max_input_time 3000 
     151php_value max_execution_time 3000 
     152php_flag magic_quotes_gpc Off 
     153php_flag short_open_tag On 
     154 
     155}}} 
     156 
     1572) If PHP is running as CGI or FastCGI application. 
     158Open the file "php.ini" in Dolphin installation directory or create a new one. 
     159Add these lines at the very end of the file: 
     160{{{ 
     161magic_quotes_gpc = Off 
     162safe_mode = Off 
     163allow_url_include = Off 
     164allow_url_fopen = On 
     165register_globals = Off 
     166upload_max_filesize = 128M 
     167post_max_size = 256M 
     168memory_limit = 128M 
     169max_input_time = 3000 
     170max_execution_time = 3000 
     171short_open_tag = On 
     172 
     173}}} 
     174 
     175You need to place this file in every sub-directory of your Dolphin folder. 
     176This can be done by running the following command in your SSH shell: 
     177{{{ 
     178cd dolphin_dir 
     179find ./ -type d -exec cp php.ini {} \; 
     180rm -rf ./flash/modules/*/skins/php.ini ./flash/modules/*/langs/php.ini ./modules/boonex/forum/install/langs/php.ini ./modules/boonex/forum/integrations/base/langs/php.ini 
     181 
     182}}} 
     183'''dolphin_dir''' should be replaced by the full path to Dolphin directory, for example "/home/user/public_html/" 
 
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