| 26 | |
| 27 | ---- |
| 28 | |
| 29 | == '''''How can I check PHP settings on my server?''''' == |
| 30 | |
| 31 | To check the installed extensions and PHP settings, you need to create a php file, for example '''info.php''' with the following contents: |
| 32 | {{{ |
| 33 | <?php |
| 34 | phpinfo(); |
| 35 | ?> |
| 36 | }}} |
| 37 | |
| 38 | The settings, such as '''register_globals''', '''safe_mode''', '''disabled_functions''' and '''allow_url_include''', will be displayed in the '''PHP Core''' table on the page. |
| 39 | |
| 40 | This table will be followed by smaller tables for every installed extension, such as '''gd''', '''xslt''', '''dom'''. |
| 41 | |
| 42 | The same page can also be accessed when in Dolphin Admin Panel by navigating to '''admin/phpinfo.php'''. |
| 43 | |