Skip to content
Snippets Groups Projects
Commit f49447c7 authored by VladimirCherkasov's avatar VladimirCherkasov
Browse files

fix uploading image #19

parent 8344d720
Branches
Tags
No related merge requests found
...@@ -68,12 +68,18 @@ gulp.task('folders:create', function() { ...@@ -68,12 +68,18 @@ gulp.task('folders:create', function() {
var dirs = [ var dirs = [
sysPath.app + 'application/logs/', sysPath.app + 'application/logs/',
sysPath.app + 'application/cache/', sysPath.app + 'application/cache/',
sysPath.app + 'application/cache/twig/' sysPath.app + 'application/cache/twig/',
sysPath.app + 'support',
sysPath.app + 'support/img'
]; ];
fs.mkdir(dirs[0], function() {}); fs.mkdir(dirs[0], function() {});
fs.mkdir(dirs[1], function() { fs.mkdir(dirs[1], function() {
fs.mkdir(dirs[2], function() {}); fs.mkdir(dirs[2], function() {});
}); });
fs.mkdir(dirs[3], function() {
fs.mkdir(dirs[4], function() {});
});
}); });
// gulp.task('css', ['less'], function() { // gulp.task('css', ['less'], function() {
......
...@@ -8,19 +8,15 @@ $(function(){ ...@@ -8,19 +8,15 @@ $(function(){
var err_ready = true; var err_ready = true;
// $('#imageFile').change(function () { // does not work
$(document) $(document).on('change', '#imageFile', function () {
.on('change', '#imageFile', function() document.forms["loadPicture"].submit();
{ // now result in #hiddenframe :-/
document.forms["loadPicture"].action = URLdir + "handler/uploader/imageupload"; $("#hiddenframe").load(function () {
document.forms["loadPicture"].submit(); var ret = this.contentWindow.document.body.innerHTML;
// console.log(ret);
// now result in #hiddenframe :-/
$("#hiddenframe").load(function () {
var ret = this.contentWindow.document.body.innerHTML;
console.log(ret);
});
}); });
});
...@@ -78,4 +74,4 @@ $(function(){ ...@@ -78,4 +74,4 @@ $(function(){
} }
}); });
}); });
}); });
\ No newline at end of file
...@@ -12,12 +12,11 @@ class Controller_Handler_Uploader extends Controller_Handler ...@@ -12,12 +12,11 @@ class Controller_Handler_Uploader extends Controller_Handler
$data['success'] = false; $data['success'] = false;
// TODO: process file // TODO: process file
/* /*
$uploaddir = 'support/img/'; $uploaddir = DOCROOT . 'support/img/';
$uploadfile = $uploaddir . basename($_FILES['imageFile']['name']); $uploadfile = $uploaddir . basename($_FILES['imageFile']['name']);
move_uploaded_file($_FILES['imageFile']['tmp_name'], $uploadfile); move_uploaded_file($_FILES['imageFile']['tmp_name'], $uploadfile);
$data['file'] = $uploadfile; $data['file'] = $uploadfile;
*/ */
$this->response->body(json_encode($data)); $this->response->body(json_encode($data));
} }
} }
\ No newline at end of file
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
или же желаете внести предложение по улучшению системы, или же желаете внести предложение по улучшению системы,
просим Вас оставить сообщение с описанием вопроса, ошибки или своего предложения в ниже приведенной форме. просим Вас оставить сообщение с описанием вопроса, ошибки или своего предложения в ниже приведенной форме.
</p> </p>
<p> <p>
Давайте вместе сделаем наш любимый сервис лучше! Давайте вместе сделаем наш любимый сервис лучше!
</p> </p>
...@@ -18,10 +19,10 @@ ...@@ -18,10 +19,10 @@
<input id="messageTitle" class="defaultForm FullWidth marginBetween" type="text" placeholder="Тема сообщения" maxlength="60"> <input id="messageTitle" class="defaultForm FullWidth marginBetween" type="text" placeholder="Тема сообщения" maxlength="60">
<textarea id="message" class="defaultForm FullWidth marginBetween" placeholder="Сообщение"></textarea> <textarea id="message" class="defaultForm FullWidth marginBetween" placeholder="Сообщение"></textarea>
<form enctype="multipart/form-data" action="" method="POST" name="loadPicture" id="loadPicture" target="hiddenframe"> <form enctype="multipart/form-data" action="{{ URL.site("handler/uploader/imageupload") }}" method="POST" name="loadPicture" id="loadPicture" target="hiddenframe">
<input id="imageFile" name="imageFile" type="file"> <input id="imageFile" name="imageFile" type="file">
</form> </form>
<iframe id="hiddenframe" name="hiddenframe" style="width:0px; height:0px; border:0px"></iframe> <iframe id="hiddenframe" name="hiddenframe" style="width:0px; height:0px; border:0px"></iframe>
<button class="defaultForm BlueButton FullWidth marginBetween" id="dialogSendButton">Отправить сообщение</button> <button class="defaultForm BlueButton FullWidth marginBetween" id="dialogSendButton">Отправить сообщение</button>
</div> </div>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment