Unsolved

This post is more than 5 years old

5078

September 7th, 2008 06:00

Help with PHP file for changing uploading limit on hosting - Dreamweaver/CuteFTP8

Hi!

 

I am using GoDaddy for hosting and need to upload a file that is greter than their limit. I have found a short description on how to do this by altering the PHP.INI file. Now to the problem. The hosting doesn't come with an .INI file so I have to create one. How do I do this? I have Dreamweaver but can only create .PHP files...do I just create a PHP file and change its name to .INI and upload it with CuteFTP? The second question has to do with the file itself. This is the code that has to be included:

 

memory_limit = 64M
post_max_size = 64M
file_uploads = On
upload_max_filesize = 64M

 

Can I just upload that data in the PHP file or do I need to include other info?

 

Many thanks
Dan

4.4K Posts

September 8th, 2008 03:00

It's a PHP settings (in your php.ini file). Specifically check the post_max_size and upload_max_filesize settings in php.ini.

 

You can edit the php.ini file with any text editor such as notepad.

 

This web page may shed some light on the issue for you.

http://drupal.org/node/109994

 

 

No Events found!

Top