atulkul Posted January 20, 2009 Share Posted January 20, 2009 Hi everyone, i am new to this forum and i would appreciate if someone could give a quick solution to this: i am running PHP Version 5.2.3 under IIS 5.1 with Server API -> ISAPI (localhost) under windows Is there a way to override my master php.ini(located in path enviromental variable) file settings so that each php website has it's own custom php.ini file for example webiste1 needs register_global = on where website2 needs register_global = on. How can accomplish this? Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/ Share on other sites More sharing options...
Dowdy Posted January 20, 2009 Share Posted January 20, 2009 you could write a .htaccess file for each of your websites that would allow you to change rules such as register_globals for each site Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741098 Share on other sites More sharing options...
gevans Posted January 20, 2009 Share Posted January 20, 2009 Well, so far not a great start, Register Globals is deprecated and will be removed in PHP 6.0 but some servers will allow you to put a php.ini in your root which will over ride the standard settings. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741100 Share on other sites More sharing options...
atulkul Posted January 20, 2009 Author Share Posted January 20, 2009 sorry also , i want to increase upload_max_filesize and i will have to create custom php.ini . Its poddible through .htaccess but it works only on apache but i need it to happen in IIS 5, I think there is something with PHPRC variable , we need to set export phprc = \path\to\customphpini . I tried a lot but nothing happened , does any one know the detailed process to create a custom php.ini to work on IIS Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741113 Share on other sites More sharing options...
redarrow Posted January 20, 2009 Share Posted January 20, 2009 register_global = on very bad programming dont use it. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741136 Share on other sites More sharing options...
atulkul Posted January 20, 2009 Author Share Posted January 20, 2009 Hello all, i want to increase upload_max_filesize , pls let me know its very urgent. Also it to happen in IIS as i know how to do in Apache Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741141 Share on other sites More sharing options...
redarrow Posted January 20, 2009 Share Posted January 20, 2009 ini_set('max_upload_filesize', 8388608); Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741144 Share on other sites More sharing options...
atulkul Posted January 20, 2009 Author Share Posted January 20, 2009 ini_set('max_upload_filesize', 8388608); Are you sure , have u ever tried this ... Because as far i know we cannot increase upload_max_filesize by ini_set . If you are dam sure pls let me know. It would be really thankfull if it get works. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741145 Share on other sites More sharing options...
revraz Posted January 20, 2009 Share Posted January 20, 2009 Have you tried to see? ini_set('max_upload_filesize', 8388608); Are you sure , have u ever tried this ... Because as far i know we cannot increase upload_max_filesize by ini_set . If you are dam sure pls let me know. It would be really thankfull if it get works. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741149 Share on other sites More sharing options...
redarrow Posted January 20, 2009 Share Posted January 20, 2009 dont forget to use bytes, to work out the number off bytes you need. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741154 Share on other sites More sharing options...
PFMaBiSmAd Posted January 20, 2009 Share Posted January 20, 2009 max_upload_filesize is not settable in a script. Please read the manual. max_upload_filesize is settable on a PHP_INI_PERDIR basis, meaning: "Entry can be set in php.ini, .htaccess or httpd.conf" If you don't have access to the master php.ini, a local php.ini (when php is running as a CGI application), a .htaccess file (when php is running as an Apache module), or httpd.conf (Apache only), then you are out of luck. If php is running as a CGI application, you should be able to configure php to use a local php.ini. For IIS where php is running as a server module ISAPI, your only choice is the master php.ini. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741155 Share on other sites More sharing options...
atulkul Posted January 20, 2009 Author Share Posted January 20, 2009 max_upload_filesize is not settable in a script. Please read the manual. max_upload_filesize is settable on a PHP_INI_PERDIR basis, meaning: "Entry can be set in php.ini, .htaccess or httpd.conf" If you don't have access to the master php.ini, a local php.ini (when php is running as a CGI application), a .htaccess file (when php is running as an Apache module), or httpd.conf (Apache only), then you are out of luck. If php is running as a CGI application, you should be able to configure php to use a local php.ini. For IIS where php is running as a server module ISAPI, your only choice is the master php.ini. Thanks actually i m looking for this type of post.Please let me know how to install php with CGI application Please provide steps or any link. Actually you are write if its CGI then we can override php.ini by writing Export PHPRC = \path\to\localphpini , please also tell me reg. this i.e. how to set local php.ini etc Pls its really urgent Thanks ! Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741164 Share on other sites More sharing options...
atulkul Posted January 21, 2009 Author Share Posted January 21, 2009 Hi, Please let me know how to override master php.ini file. Please tell me the steps I have setup PHP5 with CGI application and its on IIS 6.Everything is setup. I have written export PHPRC = "C:\Inetpub\wwwroot\test2" in my master php.ini i.e. at C:\windows\php.ini at the very top of page.(test2 is my project) And included copy of php.ini in my project.(test2 folder) But still when i run <?php phpinfo ?> in my project , it still show master php.ini as a loaded configuration file , I want here the local php.ini file which is stored in local folder (test2) Please its really very urgent, Pls can u give reply within one hr or so. Quote Link to comment https://forums.phpfreaks.com/topic/141589-override-phpini-pls-its-urgent/#findComment-741991 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.