easyphp
How to access site running apache server over lan without internet connection
In your httpd.conf make sure you have: Listen *:80 And if you are using VirtualHosts then set them as given below: NameVirtualHost * <VirtualHost *> … </VirtualHost>
OpenSSL not working on Windows, errors 0x02001003 0x2006D080 0x0E064002
The code below works as expected. BUT if you run openssl_error_string() after the openssl methods it shows error:0E06D06C:configuration file routines:NCONF_get_string:no value which is some notice I have not been able to find documentation on. Further note that according to http://www.php.net/manual/en/function.openssl-error-string.php you could be seeing mis-leading errors as error messages are queued: Be careful when using … Read more
How can I find the php.ini file used by the command line?
Just run php –ini and look for Loaded Configuration File in the output for the location of php.ini used by your CLI.