(12 Nov, 2014, 5:01 pm)djeloy escribió: A mi no me deja subir no me carga
(12 Nov, 2014, 10:32 pm)XEDE escribió:(12 Nov, 2014, 5:01 pm)djeloy escribió: A mi no me deja subir no me carga
Que problema te da?, en todo caso fijate las respuestas al tema, tal vez es lo que le paso a otro usuario, el tutorial funciona porque actualmente yo lo implemente y me funciono sin problemas, así que seguramente algún paso no lo aplicaste
<?php
/*****************************
* Add imgur upload function *
*****************************/
function upload(file) {
/* Is the file an image? */
if (!file || !file.type.match(/image.*/)) return;
/* It is! */
document.body.className = "uploading";
var d = document.querySelector(".sceditor-button-imgur div");
d.className = d.className + " imgurup";
/* Lets build a FormData object*/
var fd = new FormData(); // I wrote about it: https://hacks.mozilla.org/2011/01/how-to-develop-a-html5-image-uploader/
fd.append("image", file); // Append the file
var xhr = new XMLHttpRequest(); // Create the XHR (Cross-Domain XHR FTW!!!) Thank you sooooo much imgur.com
xhr.open("POST", "https://api.imgur.com/3/image.json"); // Boooom!
xhr.onload = function() {
var code = '[img]' + JSON.parse(xhr.responseText).data.link + '[/img]';
$('#message, #signature, textarea[name*="value"]').data('sceditor').insert(code);
var d = document.querySelector(".sceditor-button-imgur div.imgurup");
d.className = d.className - " imgurup";
document.querySelector('input.imgur').remove();
}
// Ok, I don't handle the errors. An exercice for the reader.
xhr.setRequestHeader('Authorization', 'Client-ID 6912558e3jsaf09');
/* And now, we send the formdata */
xhr.send(fd);
};
<?php
// Ok, I don't handle the errors. An exercice for the reader.
xhr.setRequestHeader('Authorization', '6912558e3jsaf09');
(28 Nov, 2014, 9:23 am)princeekpo escribió: Tengo 1 solo editor, asiq el paso 2.2 no es
Estoy seguro q ese el 4.3
ya proble poniendo el API KEY de esa fotma y de esta tmb
Código PHP:<?php
// Ok, I don't handle the errors. An exercice for the reader.
xhr.setRequestHeader('Authorization', '6912558e3jsaf09');
(28 Nov, 2014, 8:23 pm)XEDE escribió:(28 Nov, 2014, 9:23 am)princeekpo escribió: Tengo 1 solo editor, asiq el paso 2.2 no es
Estoy seguro q ese el 4.3
ya proble poniendo el API KEY de esa fotma y de esta tmb
Código PHP:<?php
// Ok, I don't handle the errors. An exercice for the reader.
xhr.setRequestHeader('Authorization', '6912558e3jsaf09');