vinsux Posted July 13, 2012 Share Posted July 13, 2012 I don't have syntax error.. the funny thing is i can only upload up to 600kb file size.. i searched on google, i saw many articles said that change in php.ini file the upload_max_size and post_max_size.. but it's still 600kb please guys..... pleaseeee help me... it gives me a lot of headache.. :shrug: <form method="post" enctype="multipart/form-data"> <table width="350" border="0" cellpadding="1" cellspacing="1" class="box"> <tr> <td width="246"> <input type="hidden" name="MAX_FILE_SIZE" value="2000000"> <input name="userfile" type="file" id="userfile"> </td> <td width="80"><input name="upload" type="submit" class="box" id="upload" value=" Upload "></td> </tr> <td> <a href="download.php" class="normalMenu">View Downloads</a> </td> </table> </form> <?php if(isset($_POST['upload']) && $_FILES['userfile']['size'] > 0) { $fileName = $_FILES['userfile']['name']; $tmpName = $_FILES['userfile']['tmp_name']; $fileSize = $_FILES['userfile']['size']; $fileType = $_FILES['userfile']['type']; $fp = fopen($tmpName, 'r'); $content = fread($fp, filesize($tmpName)); $content = addslashes($content); fclose($fp); if(!get_magic_quotes_gpc()) { $fileName = addslashes($fileName); } $con = mysql_connect("localhost","root",""); //check or connected to server if(!$con) { die("could not connect to server".mysql_error()); } //select test database mysql_select_db("files", $con); $query = "INSERT INTO upload (name, size, type, content ) ". "VALUES ('$fileName', '$fileSize', '$fileType', '$content')"; mysql_query($query) or die('Error, query failed'); mysql_close($con); echo "<br>File $fileName uploaded<br>"; } ?> Link to comment https://forums.phpfreaks.com/topic/265622-php-upload-size-how-to-increase-the-max-upload-file-size/ Share on other sites More sharing options...
scootstah Posted July 13, 2012 Share Posted July 13, 2012 So... what did you change upload_max_size and post_max_size to? Did you restart Apache afterwards? What makes you think you are limited to 600KB? Link to comment https://forums.phpfreaks.com/topic/265622-php-upload-size-how-to-increase-the-max-upload-file-size/#findComment-1361316 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.