Changes between Initial Version and Version 1 of DolCommonInstallProblemsFR


Ignore:
Timestamp:
Aug 8, 2007, 6:58:21 AM (17 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DolCommonInstallProblemsFR

    v1 v1  
     1== Common After-Installation problems == 
     2 
     3The following are some of the most common installation problems. For more information and troubleshooting for problems with your Dolphin installation, check out the [http://www.expertzzz.com/forumz/ Expertzzz.com forums]. 
     4 
     51. I see a blank page in the place of my Dolphin Home page. How do I fix this? 
     6 
     7Your server probably refuses to use relative paths, so that ''PHP''s' '''require_once''' instructions can't find the files specified. 
     8 
     9To resolve the problem you should add the following string as the first instruction in ''index.php'', ''inc/design.inc.php'' and ''admin/index.php''. 
     10 
     11{{{ 
     12ini_set("include_path", "path_to_script"); 
     13}}} 
     14 
     15You should replace "path_to_script" with the absolute path to your script's folder. 
     16 
     17 
     182. My page comes out gibberish. When I look at the source I see a lot of '''<?php ... ?>''' tags.  
     19 
     20If 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:DolTechFR requirements] to run Dolphin, that ''PHP'' is installed and configured properly, or contact your hosting provider or system administrator for assistance.  
     21 
     22 
     233. After install my home page displays "Internal error 500" 
     24 
     25Your 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. 
     26         
     27         
     284. I keep getting Database activation failed but I'm sure my configuration is correct. 
     29  
     30Try resetting your ''MySQL'' password manually. If you have access to ''MySQL'' via shell, try issuing:  
     31{{{ 
     32SET PASSWORD FOR 'dolphinusername'@'hostname' = OLD_PASSWORD('password'); 
     33}}} 
     34 
     35If 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. 
     36         
     37 
     385. My security image doesn't show up on join_form.php: 
     39 
     40Check if you have [http://www.boutell.com/gd/ GD library] installed and if it's compiled with ''True 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 -> Global settings -> Variables". 
     41 
     42 
     436. My image/MP3/video uploads aren't working. 
     44 
     45Most 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). 
     46 
     47Your ''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. 
     48         
     49 
     507. When I access Orca, I have this message '''"Sorry, site is unavailable now, please try again later."''' 
     51 
     52* Open http://mysite.com/orca/xml/orca.php?action=login_user in your browser, outpout must be valid '''xml'''. 
     53 
     54* If it works perfectly, check your ''PHP'' configuration for possibility to open outgoing connections from ''PHP'' and if '''fopen''' function is allowed. 
     55 
     56* If the above is fine, check your server configuration for outgoing '''http''' connections. 
     57 
     58 
     598. Orca displays a blank page 
     60 
     61Check if ''PHP'' is compiled with '''DOMXML''' and '''XSLT''' support. 
 
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