Welcome Guest, Not a member yet? Register   Sign In
Problem with FTP class
#1

[eluser]Unknown[/eluser]
i can't upload over 3mb in FTP class ..
and i edit php.ini : upload_max_filesize = 100M

Code:
ini_set('memory_limit', '100M');
set_time_limit(100000);

$config['hostname'] = 'ftp.myftp.com';
$config['username'] = 'username';
$config['password'] = 'password';
$config['debug'] = TRUE;
$config['passive']  = TRUE;
$this->ftp->connect($config);


What should I do ?? .. Help me !! plzz
#2

[eluser]LifeSteala[/eluser]
I think you need to change "post_max_size" and "upload_max_filesize" in your PHP.ini file or via ini_set() as you have done already. "memory_limit" is not the correct one.
#3

[eluser]Unknown[/eluser]
thank you ...




Theme © iAndrew 2016 - Forum software by © MyBB