Hello
I recently installed Dolphin 6.1 on my server. In the process of setting up the software, it asked for the location of my php directory. How do i find that out? I have a Linux server.
Thank you
Hello I recently installed Dolphin 6.1 on my server. In the process of setting up the software, it asked for the location of my php directory. How do i find that out? I have a Linux server. Thank you |
you can ask your host - they should be able to tell you. or you might be able to find it on your hosts control panel somewhere under a php tab. they will generally list a little bit of information about how php is configured there. alternatively, you can also create a file with the following contents: <?php phoinfo(); ?> name this something like phpinfo.php and upload it to your server, then point your browser to yoursite.com/phpinfo.php. it will display a bunch of information about how php is configured. in the top block, under 'configure command' on my server, i see that it references a directory named /usr/local/php5 - which is where php is installed. things may be different on your server, this this might shed some light on things for you. |