Всем привет. Подскажите как осуществить затею. Есть таблица base_foto В ней ячейки id / name / sid / pod.
id - Присваивается автоматически
name - Имя загруженного фото
sid - ID статьи к которому загрузили фото
pod - Подпись.
Есть скрипт ajax (+php) загрузки изображений на сервер. Не знаю как выставить лимит на загрузку изображений к статье. Хочу сделать так:
ajax запрос на подсчет количества изображений к статье, лимит у нас 20. Если число = 20, прекращаем возможность загружать изображения. Скрипт сам прикреплю, может кто сталкивался с ним.
во время загрузки считай уже прикрепленные файлы
ramzes, Можешь помочь с кодом? Я не программист, делаю все методом народного тыка...
vfaste, поменяйте ваш script.js на этот
script.js (+/-)
$(function(){
var ul = $('#upload ul');
var counter = 0;
$('#drop a').click(function(){
// Simulate a click on the file input button
// to show the file browser dialog
$(this).parent().find('input').click();
});
// Initialize the jQuery File Upload plugin
$('#upload').fileupload({
// This element will accept file drag/drop uploading
dropZone: $('#drop'),
// This function is called when a file is added to the queue;
// either via the browse button, or via drag/drop:
add: function (e, data) {
if(counter >= 20){
data.context.addClass('error');
}else{
// Выводим сообщение о допустимых типах файлов
if(data.files[0]['type'] != 'image/png' && data.files[0]['type'] != 'image/jpg' && data.files[0]['type'] != 'image/jpeg'){ alert("Можно загрузить только файлы с расширениями: .png, .jpg, .jpeg"); return; }
var tpl = $('<li class="working"><input type="text" value="0" data-width="48" data-height="48"'+
' data-fgColor="#0788a5" data-readOnly="1" data-bgColor="#3e4043" /><p></p><span></span></li>');
// Append the file name and file size
tpl.find('p').text(data.files[0].name)
.append('<i id="' + (counter += 1) + '">' + formatFileSize(data.files[0].size) + '</i>');
// Add the HTML to the UL element
data.context = tpl.appendTo(ul);
// Initialize the knob plugin
tpl.find('input').knob();
// Listen for clicks on the cancel icon
tpl.find('span').click(function(){
if(tpl.hasClass('working')){
jqXHR.abort();
}
tpl.fadeOut(function(){
tpl.remove();
});
});
// Automatically upload the file once it is added to the queue
var jqXHR = data.submit();
}
},
progress: function(e, data){
// Calculate the completion percentage of the upload
var progress = parseInt(data.loaded / data.total * 100, 10);
// Update the hidden input field and trigger a change
// so that the jQuery knob plugin knows to update the dial
data.context.find('input').val(progress).change();
if(progress == 100){
data.context.removeClass('working');
}
},
fail:function(e, data){
// Something has gone wrong!
data.context.addClass('error');
}
});
// Prevent the default action when a file is dropped on the window
$(document).on('drop dragover', function (e) {
e.preventDefault();
});
// Helper function that formats the file sizes
function formatFileSize(bytes) {
if (typeof bytes !== 'number') {
return '';
}
if (bytes >= 1000000000) {
return (bytes / 1000000000).toFixed(2) + ' GB';
}
if (bytes >= 1000000) {
return (bytes / 1000000).toFixed(2) + ' MB';
}
return (bytes / 1000).toFixed(2) + ' KB';
}
});
Я надеюсь на сервере проверятся тип файла, его размер и кол-во прикрепленных файлов? Если нет, то все ваши проверки в javascript до одного места, они ничем не помогут.
# ValekS (25.06.2017 / 14:41)
Я надеюсь на сервере проверятся тип файла, его размер и кол-во прикрепленных файлов? Если нет, то все ваши проверки в javascript до одного места, они ничем не помогут.
тип файл с помощью js код провертеться и его размер и коль во файлов.
Почему не поможет?
Udesign, js обрабатывается браузером, а в браузере его легко подправить в инспекторе элементов, убрав эту проверку.
xpank, Спасибо понятно ну и еще там есть .php файл
<form id="upload" method="post" action="upload.php" enctype="multipart/form-data">
upload.php
<?php
// A list of permitted file extensions
$allowed = array('png', 'jpg', 'gif','zip');
if(isset($_FILES['upl']) && $_FILES['upl']['error'] == 0){
$extension = pathinfo($_FILES['upl']['name'], PATHINFO_EXTENSION);
if(!in_array(strtolower($extension), $allowed)){
echo '{"status":"error"}';
exit;
}
if(move_uploaded_file($_FILES['upl']['tmp_name'], 'uploads/'.$_FILES['upl']['name'])){
echo '{"status":"success"}';
exit;
}
}
echo '{"status":"error"}';
exit;
в 21 строке echo '{"status":"error"}'; этот лишний наверно?
# Udesign (25.06.2017 / 17:10)
в 21 строке echo '{"status":"error"}'; этот лишний наверно?
Нет, возврат ошибки не лишний, а вполне логичный.
Привет всем. Помогите к этой теме
// A list of permitted file extensions
$allowed = array('png', 'jpg', 'gif', 'jpeg');
if(isset($_FILES['upl']) && $_FILES['upl']['error'] == 0){
$extension = pathinfo($_FILES['upl']['name'], PATHINFO_EXTENSION);
if(!in_array(strtolower($extension), $allowed)){
echo '{"status":"error"}';
exit;
}
if(move_uploaded_file($_FILES['upl']['tmp_name'], 'files/'.md5($_FILES['upl']['tmp_name']).'.png')){
$base = mysql_query("SELECT * FROM `ot_fish` WHERE `id` = '$id'");
$dir = mysql_fetch_array($base);
$name=''.md5($_FILES['upl']['tmp_name']).'.png';
$cid=''.$dir['id'].'';
$pod='pod';
mysql_query("INSERT INTO `otfish_foto` (`id`, `name`, `sid`, `pod`) VALUES ( NULL , '$name', '$cid', '$pod');");
echo '{"status":"success"}';
exit;
}
}
echo '{"status":"error"}';
exit;
Вот этот код. Суть вопроса, как сделать ограничение на максимальный загружаемый вес? Пусть будет 1.5МБ