01/10/2018, 16:58

Lỗi khi upload ảnh trong ckfinder

Chào các bạn,

Mình có Maven project SpringMVC + Spring Data JPA + Spring security, trong đó có dùng text editor CKeditor .

Mình đã tích hợp thành công ckfinder vào ckeditor, tuy nhiên khi upload ảnh báo lỗi 405 (the method is not allowed).

Ai đã làm cái này chỉ mình với. Dưới đây là code tích hợp ckfinder và ckeditor:

 <script type="text/javascript">
	if ( typeof CKEDITOR !== 'undefined' ) {
		CKEDITOR.addCss( 'img {max-width:100%; height: auto;}' );
		var editor = CKEDITOR.replace( 'editor1', {
			extraPlugins: 'uploadimage,image2',
			removePlugins: 'image',
			height:350
		} );
		
		CKFinder.setupCKEditor( editor, '../ckfinder/' ) ;
	} else {
		document.getElementById( 'description' ).innerHTML = '<div class="tip-a tip-a-alert">This sample requires working Internet connection to load CKEditor from CDN.</div>'
	}
	
</script>

Khi upload ảnh báo lỗi:

Xem trong console trình duyệt thì lỗi:

Davit lượt viết 19:05 ngày 01/10/2018

Ai chỉ giùm mình với không?

Bài liên quan
0