How do I enable image uploads in the self-hosted version of Tinymce for Classic ASP?

Viewed 39

How do I enable image uploads for the self-hosted version of Tinymce 4 for Classic ASP?

The only hint that I have found for adding the editor is...

<html>
<head>
<script src="tinymce/js/tinymce/tinymce.min.js"></script>
<script>tinymce.init({ selector:'textearea' });</script>
</head>
<body>
<textarea>Next, use our Get Started docs to setup Tiny!</textarea>
</body>
</html>

By using this setup the only option for INSERT is a horizontal line, but I need to upload an image. I see the option in online examples, but how is that possible?

It needs to be self-hosted (not CDN) because it is for internal use and needs modification for additional security. PHP cannot be used here but I do have ASPupload if that can be used.

Some more useful documentation might help.

0 Answers
Related