Changes between Version 9 and Version 10 of GenDol7TShooter


Ignore:
Timestamp:
Aug 26, 2010, 4:42:38 AM (14 years ago)
Author:
Andrew Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenDol7TShooter

    v9 v10  
    1 * '''[wiki:GenDol7TShooter#MyDolphinsiteshows500internalservererror My Dolphin site shows 500 internal server error]''' 
     1= Dolphin 7 Troubleshooter =  
     2If your web-server complies with [wiki:DolTech Dolphin Hosting Requirements] and you carefully followed al the steps described in 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]] 
    23 
    3 * '''[wiki:GenDol7TShooter#Someorallofmywidgetskeeponloadinganddonotwork. Some or all of my widgets keep on loading and do not work]''' 
    4 ---- 
     4 
     5 
     6== I see a blank page in the place of my Dolphin Home page. == 
     7 
     8Your server probably refuses to use relative paths, so that ''PHP''s' '''require_once''' instructions can't find the files specified. To resolve the problem you should add the following string as the first instruction in ''index.php'', ''inc/design.inc.php'' and ''admin/index.php''. 
     9 
     10{{{ 
     11ini_set("include_path", "path_to_script"); 
     12}}} 
     13 
     14You should replace "path_to_script" with the absolute path to your script's folder. 
     15 
     16 
     17== My page comes out gibberish. When I look at the source I see a lot of '''<?php ... ?>''' tags. == 
     18 
     19If 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.  
     20 
     21 
     22== After install my home page displays "Internal error 500". == 
     23 
     24Your 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. 
     25 
     26 
     27== I keep getting ''Database activation failed'' but I'm sure my configuration is correct. == 
     28  
     29Try resetting your ''MySQL'' password manually. If you have access to ''MySQL'' via shell, try issuing:  
     30{{{ 
     31SET PASSWORD FOR 'dolphinusername'@'hostname' = OLD_PASSWORD('password'); 
     32}}} 
     33 
     34If 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.     
     35 
     36 
     37== My security image doesn't show up on join_form.php. == 
     38 
     39Check 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'''. 
     40 
     41 
     42== My image/MP3/video uploads don't work. == 
     43 
     44Most probably, you have not set correct permissions for ''media/images/profile/'', ''media/sound/'' and ''media/video/''. These folders should have 777 permissions (readable, writable, executable). 
     45 
     46Your ''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. 
     47         
     48 
     49== Forum displays a blank page == 
     50 
     51Check if ''PHP'' is compiled with '''DOMXML''' and '''XSLT''' support. 
     52 
    553 
    654== My Dolphin site shows 500 internal server error == 
    755 
    8 Your PHP is most probably running in CGI mode. 
    9 The following instructions only apply to PHP running as CGI 
     56Your PHP is most probably running in CGI mode. The following instructions only apply to PHP running as CGI. 
    1057In this mode, some .htaccess instructions may be causing this problem. 
    1158First, you need to investigate your webserver error log file, for the exact error message, but most common problems are listed below: 
     
    17643) 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. 
    1865 
    19 ---- 
    2066 
    2167== Some or all of my widgets keep on loading and do not work. == 
 
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