How can I find out the path of the httpd.conf file on apache (PHP)? I do not know whether my script will be runned in windows apache or linux, i need to know where i can find th
This is a classic way to locate httpd.conf file:
# find / -name 'httpd.conf' -print
Also you can file locate the file using
locate httpd.conf