Well i am using a allery script here http://lockerzshare.in/prizegallery/ whenever i try to upload a pic i keep getting Request Entity Too Large The requested resource /prizegallery/member.php does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Code (markup): What exactly does this mean and how can we fix it
You should use POST in the upload request. Not GET. Get has limitation about the amount of data that can be send. In the <form> in the HTML just put method="POST". Default value is GET, so you have to explicit define it.
well the code says <form method="post" action="./member.php" enctype="multipart/form-data" onsubmit="uploadbutton.disabled=true;"> so its already using POST
That maybe but it may user something else along the line such as: file.php?url=<?php echo $_POST['url']; ?> PHP: I've seen such stuff, used within ajax & jquery based scripts.