ci5ic Posted September 18, 2006 Share Posted September 18, 2006 So, I am writing an upload script (for MP3's) that will not allow me to upload a file larger than 2MB.I am unable to modify any settings in the php.ini because it is controlled by the hosting server that my page is on.I've tried adding various forms of the following to my script without any luck:ini_set("upload_max_filesize","8MB")ini_set("upload_max_filesize","800000"), etc.I've also tried using php's ftp_put function as well, but that does not seem to work either.is there any other way to circumvent the upload_max_filesize default settings?I looked and it seems that the post_max_size is set to 8MB, but that does me little good if the upload_max_filesize is still set at 2MB...Any ideas? Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/ Share on other sites More sharing options...
markbett Posted September 18, 2006 Share Posted September 18, 2006 umm try setting your php.ini file Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/#findComment-93810 Share on other sites More sharing options...
Daniel0 Posted September 18, 2006 Share Posted September 18, 2006 Did you put a hidden MAX_FILE_SIZE field in your form? Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/#findComment-93814 Share on other sites More sharing options...
ci5ic Posted September 18, 2006 Author Share Posted September 18, 2006 [quote author=markbett link=topic=108465.msg436359#msg436359 date=1158557598]umm try setting your php.ini file[/quote]If you read my post, you would notice that I do not have access to the php.ini file. I'm not the owner of the server.I did not put a MAX_FILE_SIZE field in my form, simply because it would be unnecessary. I don't plan to limit the filesize because the only files that will be uploaded are MP3's, and I don't expect any of my band members (the only people that will be authorized to upload) will take advantage of this. Plus, at this point, I'm just trying to get it to work for files larger than 2MB, not really concerned about limiting the max upload size yet...I thought that using PHP's ftp_put would work, but I can't seem to get that to work at all, regardless of file-size. Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/#findComment-94004 Share on other sites More sharing options...
Orio Posted September 18, 2006 Share Posted September 18, 2006 Maybe you could give them FTP access so they can upload these files directly...?Orio. Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/#findComment-94011 Share on other sites More sharing options...
ci5ic Posted September 18, 2006 Author Share Posted September 18, 2006 [quote author=Orio link=topic=108465.msg436571#msg436571 date=1158593008]Maybe you could give them FTP access so they can upload these files directly...?Orio.[/quote]The thought had crossed my mind, but most of them are not as tech saavy as I'd like them to be, and that's kinda what I was hoping to accomplish with PHP's ftp functions. Just want them to be able to upload, not give them access to all the other stuff I have out on the server... Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/#findComment-94029 Share on other sites More sharing options...
ci5ic Posted September 18, 2006 Author Share Posted September 18, 2006 Oh, and also making a .htaccess file does not work for me either. this is another function that has been turned off by my hosting company.Am I S.O.L.? Link to comment https://forums.phpfreaks.com/topic/21125-unable-to-upload-files-larger-than-2mb/#findComment-94129 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.