Вопрос

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