problem upload

donate1719

New Member
YetiShare User
Aug 19, 2012
4
0
0
this is a very script. thank!

but i got 1 problem...

i already set in php.ini
upload_max_filesize = 4488M
post_max_size = 4488M

but i tried to upload files over 100mb = Error: File received has zero size.

own dedicated server.
 

donate1719

New Member
YetiShare User
Aug 19, 2012
4
0
0
i already set all types of files accpet.i tried to upload these extension files EXAMPLE.ISO.001
EXAMPLE.ISO.002
EXAMPLE.ISO.003
etc...
 

donate1719

New Member
YetiShare User
Aug 19, 2012
4
0
0
javascript:forumcode(':cry:');javascript:forumcode(':-javascript:forumcode(':-o');?');

when the support team will answer our question???
 

localhost

New Member
YetiShare User
Jul 7, 2012
47
0
0
www.droidbin.com
I'm not from the support team, but will try to help..

Are you running the script on your own server? If so, are you "editing" the correct php.ini file?

IE: My own server (Debian Squeeze) does have 3 different php,ini files:

/etc/php5/apache2/php.ini
/etc/php5/cgi/php.ini
/etc/php5/cli/php.ini

I can run websites in 3 different modes!

To liste the php.ini file that you are using use the following command from cli:
php -i

To see what the php.ini is set to you can use:
php -i | grep upload_max_filesize
upload_max_filesize => 600M => 600M

In my case it's set to 600M (as in 600MB)
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
@donate1719 - this is a community support forum as it says on the initial forum page, we don't always monitor these forum, you're much better emailing us if you have an urgent question.

What does a phpinfo() say if the maximum size supported on your server? You can create one by creating a new php script with the following:

<?php
phpinfo();

Upload it to your server and load it via the browser.

As for the file type issue, did you add 001, 002 etc to the permitted file types?

Thanks @localhost for your help once again, much appreciated.