Dear admin i`m back again with an question
I wanna use your file upload script
https://coursesweb.net/php-mysql/simple- ... -script_s2
sets maximum file size allowed (in KB). Is it posible to use maximum 600 MB for video-upload ?
php maximum upload file size
-
- Posts:282
- Location:Holland Rotterdam
php maximum upload file size
Admin
Posts:805
Hello,
I didn't test the script for large video file, but i think it is possible.
Anyway, it depends of the configurations set in php.ini.
For example, these three instructions in php.ini must have set at least 600 M:
- Also, the maxium memory limit allowed by the hosting server should be larger than post_max_size.
I didn't test the script for large video file, but i think it is possible.
Anyway, it depends of the configurations set in php.ini.
For example, these three instructions in php.ini must have set at least 600 M:
Code: Select all
memory_limit = 650M
upload_max_filesize = 600M
post_max_size = 602M
JanMolendijk
Posts:282
Dear admin this is standing in my php.ini:
Furter i have a simple computer with a experiabox for normal internet, where i host on my computer a website.
i did this with port-forward.
I don`t known the maxium memory limit allowed by the hosting server.
Must i still change the value in php.ini en try out or ???
Code: Select all
memory_limit 128M
upload_max_filesize 2M
post_max_size 8M
i did this with port-forward.
I don`t known the maxium memory limit allowed by the hosting server.
Must i still change the value in php.ini en try out or ???
Admin
Posts:805
I not have experience with hosting and server settings; but you can try to change those settings in php.ini and see if it works.
- After you make and save the changes, you must restart the server.
This is all I know about this subject.
- After you make and save the changes, you must restart the server.
This is all I know about this subject.
Similar Topics
- Change the max upload size in XAMPP
PHP - MySQL First post
Pleassant Marplo, hope all things are okey ?Last post
I have a question, I think I have server problem with uploading maximal upload-file (mb) is to less I...
Marplo in once thanks for the great suport - GET_id not working in UnLink (delete file)
PHP - MySQL First post
I searching for an hour for a solution; unlink seems not to work with GET idLast post
<?php
$id = (int) $_GET ;
echo $_GET ;
$file = fopen( '.$_GET...
Here is an answer `o god after 2 hours shame on me for this one`
<?php
$file_pointer = $_GET .'.txt';
if (!unlink($file_pointer)) {
echo (...