سؤال

my code is

Html code:

<div id="sample">

<script type="text/javascript" src="../nicEdit.js"></script>
<script type="text/javascript">
bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
</script>
<h4>First Textarea</h4>
<textarea name="area1" cols="35"></textarea>
</div>

The above code convert the text area into editor. I need a one more option for that editor that should be able to upload images

هل كانت مفيدة؟

المحلول

According to the Documentation you will need to specify a uploadURI for that und upload their nicUpload.php script to that location.

Inside the nicUpload.php you will need to configure some parameters. NICUPLOAD_PATHas a filesystem path on the server where the images should be stored and NICUPLOAD_URI to the URI to access said location through the webserver.

Don't forget to chmod write permissions onto the directory so the webserver can write there.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top