Search found 4 matches
- Fri Jun 01, 2012 12:39 am
- Forum: Webhosting
- Topic: PHP file upload
- Replies: 8
- Views: 1912
Re: PHP file upload
error 2: file exceeded MAX_FILE_SIZE. I used the script right off php.net, and I think their form allows for 30KB. stupid me.
- Fri Jun 01, 2012 12:18 am
- Forum: Webhosting
- Topic: PHP file upload
- Replies: 8
- Views: 1912
Re: PHP file upload
I figured this out and it's a simple mistake. You have the input box set id="userfile" but you don't have any name="userfile" which is what you'd need instead. The error given is "undefined index", which means it doesn't know what "userfile" is, because of th...
- Mon May 28, 2012 5:35 pm
- Forum: Webhosting
- Topic: PHP file upload
- Replies: 8
- Views: 1912
Re: PHP file upload
I have tried it without access restrictions, I put the access restrictions on after seeing in another upload script tutorial (while trying to figure out why this doesn't work,) that more security needs to be put in place, you shouldn't just have a free spot to dump any kind of file freely and anonym...
- Mon May 28, 2012 1:39 pm
- Forum: Webhosting
- Topic: PHP file upload
- Replies: 8
- Views: 1912
PHP file upload
I'm pretty new to PHP, so there could be something I'm missing, but I'm trying to set up a basic php upload script using POST method. The site/murmur server is used for coordinating tabletop games online. We use a p2p connected program to view maps, character tokens, roll dice, etc. and this program...