I don’t have any access to the php.ini and httpd.conf files. Are there any procedure to override (or add some) settings of php.ini and httpd.conf files from my php application?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For Apache configuration: this can (for certain settings) be done using
.htaccessfiles:You may be unable to change certain settings using
.htaccessfiles; the directives that you can use are specified in the main Apache configuration usingAllowOverridedirectives.For PHP settings: this can be done using the
ini_setfunction:This appendix shows you which settings can be changed from scripts.