34 | | == I see a blank page in the place of my Dolphin Home page. == |
35 | | |
36 | | Your 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''. |
37 | | |
38 | | {{{ |
39 | | ini_set("include_path", "path_to_script"); |
40 | | }}} |
41 | | |
42 | | You should replace "path_to_script" with the absolute path to your script's folder. |
| 34 | == I see a blank page in the place of the page == |
| 35 | |
| 36 | Blank page usually means some PHP error. If '''display_errors''' option is turned off, then just blank page appears. You need to check PHP error log file for the exact error, or enable '''display_errors''' PHP setting - then instead of blank page you will see the error message. You maybe will need to ask your hosting support to change this setting. The error message will give you some clues about the source of the problem. |
| 37 | |
| 38 | You can check your PHP setting in Dolphin Admin Panel > Tools > Host Tools > PHP Info |