The Windows Server php5.ini code to change upload limits in GoDaddy (FULL CODE!)
-
After two days of searching, sobbing, and, and breaking down into the fetal position– I have the Windows Server php5.ini code for GoDaddy! I’ve been using it, it works, and nothing else seems to have broken in the process.
Create a php5.ini file, copy the code below, and upload it to your root directory (and “recycle” your IIS applications via the hosting control center).
Awesomesauce.register_globals = off allow_url_fopen = off expose_php = Off max_input_time = 60 variables_order = "EGPCS" extension=php_mysql.dll extension_dir = C:\php5\ext upload_tmp_dir = /tmp precision = 12 SMTP = relay-hosting.secureserver.net url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" memory_limit = 75M ;change as needed post_max_size = 75M ;change as needed file_uploads = On upload_max_filesize = 75M ;change as needed
I found this via sitepoint.com
Good luck.
-R
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘The Windows Server php5.ini code to change upload limits in GoDaddy (FULL CODE!)’ is closed to new replies.