image upload changes

v1.18.x
Baris Soner Usakli 12 years ago
parent 5785b16ae9
commit 5796140f58

@ -4,6 +4,13 @@ var config = {
// "base_url" is expected to be a publically accessible URL to your NodeBB instance (Default base_url: 'http://localhost', port: '4567')
"base_url": "http://localhost",
// public url for uploaded files
"upload_url": "http://dev.domain.com/uploads/",
// relative path for uploads
"upload_path": "/uploads/",
"use_port": true,
"port": 4567,

@ -198,10 +198,7 @@ $(document).ready(function() {
hideAlerts();
$('#alert-error').text(message).show();
}
});
(function() {
function submitUserData() {
var userData = {
@ -236,8 +233,6 @@ $(document).ready(function() {
}
$(document).ready(function(){
var selectedImageType = '';
$('#submitBtn').on('click',function(){
@ -323,6 +318,7 @@ $(document).ready(function() {
$('#change-picture-modal').modal('hide');
$('#upload-picture-modal').modal('show');
hideAlerts();
$('#pictureUploadSubmitBtn').on('click', function() {
$('#uploadForm').submit();
@ -331,6 +327,6 @@ $(document).ready(function() {
return false;
});
});
}());
</script>

@ -241,7 +241,10 @@ var express = require('express'),
return;
}
var uploadPath = config['upload_path'] + uid + '-' + filename;
filename = uid + '-' + filename
var uploadPath = config.upload_path + filename;
console.log(uploadPath);
fs.rename(
tempPath,
@ -254,7 +257,7 @@ var express = require('express'),
return;
}
var imageUrl = config.base_url + config.install_path + uploadPath;
var imageUrl = config.upload_url + filename;
res.send({
path: imageUrl

Loading…
Cancel
Save