Jump to content

ci5ic

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ci5ic's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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.?
  2. I agree... What I do is write a script that uploads the image to a specific directory, renaming it using php's date() function. Then, I insert into a database the new name of the uploaded image, as well as any other data I want to associate with the image (comments, who uploaded the image, the upload date, file size, etc.). Then, when I want to display the image, I run a MySQL query for the information, and use the image name in the database to display the image, like such: $imagefile = mysql_result($result,$i,"imagefile"); print "<IMG SRC='../images/$imagefile'>"; very simple....
  3. [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...
  4. [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.
  5. 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?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.