Reputation: 775
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
Upvotes: 0
Views: 4825
Reputation: 14782
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_PATH
as 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.
Upvotes: 3