Ik heb een vraag die jullie misschien wel kunnen beantwoorden.
Het gaat om: https://goaheadshowtime.nl/video-uploader/
Ik kan video's uploaden tot ongeveer 50M. Video van 65M lukken niet.
Volgens mij staan de instellingen ook gewoon goed. (https://gyazo.com/72ded3e349f9806fdb044fee80500739)
Mvg,
Mitchell
<!DOCTYPE html>
<html>
<head>
<title>Upload Video</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="screen">
<?php require ('dbconn.php'); ?>
</head>
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/bootstrap.js" type="text/javascript"></script>
<body>
<div class="row-fluid">
<div class="span12">
<div class="container">
<br>
<br>
<form method="post" enctype="multipart/form-data" >
<?php include 'action.php';?>
<h4> Select a Video : </h4>
<input name="MAX_FILESIZE" value='".(UPLOAD_MAX_FILE_SIZE*1024))."' type="hidden"/>
<input type="file" name="file" id="file" />
<br /><br />
<input type="submit" value="Click to Upload" />
</form>
<hr>
<!-- List of Videos -->
<h4>List of Videos:</h4>
<ul>
<?php
$query = $conn->query("SELECT * FROM videos");
while($row = $query->fetch()){
$video_id = $row['video_id'];
?>
Click to Watch ---><a href="#Video_Modal<?php echo $video_id; ?>" data-toggle="modal"><?php echo $row['title'];?> </a><br>
<?php include ('video_modal.php'); ?>
<?php
}
?>
</ul>
</div>
</div>
</div>
</body>
</html>