is this possible? i think it is, else a lot of websites has security breaches on this point
[EXTENSION] editMe WYSIWYG editor based on CKEditor
#41
Posted 01 November 2012 - 06:01 PM
is this possible? i think it is, else a lot of websites has security breaches on this point
#43
Posted 05 November 2012 - 10:29 AM
you could for example allow only images from sepcific URLs but to be honest i dont know how to do that in htmlpurifier (or if its even possible).
i suggest you create a new thread in the yii forum where people with more experience on this specific topic can help you
fonis, on 01 November 2012 - 06:01 PM, said:
is this possible? i think it is, else a lot of websites has security breaches on this point
#44
Posted 12 November 2012 - 04:07 PM
#45
Posted 13 November 2012 - 04:20 AM
however there seems to be some plugins for CKEditor that do this: https://www.google.c...r+embed+youtube
Deram, on 12 November 2012 - 04:07 PM, said:
#46
Posted 13 November 2012 - 10:18 AM
If it is not included, what should be done to be able to upload images?
#47
Posted 17 November 2012 - 06:37 AM
to be able to upload images, you will need to set up your own image uploader/browser.
first off all, go to https://bitbucket.or...i/Configuration and take a look at the various filebrowser/fileupload settings. those will need to be configured with the URL to the file browser/uploader.
there is various browsers/uploaders that can be used, a good and free one is KCFinder. You will find all the instructions on how to install and integrate KCFinder with CKEditor at following URL: http://kcfinder.sunhater.com
You could also develop your own file browser/uploader. Some instructions can be found here: http://docs.cksource...om_File_Browser
renathy, on 13 November 2012 - 10:18 AM, said:
If it is not included, what should be done to be able to upload images?
#48
Posted 04 December 2012 - 11:38 AM
#53
Posted 26 April 2013 - 12:44 AM
Is it possible to remove the collapse button for the toolbar.
And how can I disable it.
Thanks.
#55
Posted 27 May 2013 - 09:50 AM
- Download a plugin from http://ckeditor.com/addons/plugins/all
- Copy the extracted plugin folder to editMe/vendors/CKEditor/plugins/
- Load the plugin:
<?php
$this->widget('ext.editMe.widgets.ExtEditMe', array(
'name'=>'example',
'value'=>'',
'ckeConfig'=>array('extraPlugins'=>'pluginname'),
));
Deram, on 09 December 2012 - 12:06 PM, said:
#58
Posted 29 May 2013 - 08:30 AM
I have some question.
When i create some text inside ExtEditMe editor and save in DB. How i can load this saved text, to inside editor when i create new some text?
#60
Posted 29 May 2013 - 09:18 AM
theoretically it is pretty straightforward to define your own templates, but it will require some effort...
1. you will need to generate a custom template file as described here: http://docs.cksource...Guide/Templates
2. this file will need to be loaded by EditMe by running it with following options
$this->widget('ext.editMe.widgets.ExtEditMe', array(
'name'=>'example',
'value'=>'example value',
'ckeConfig' => array('templates_files' => array('/url/to/custom/template.js'),),
));
kopecldz, on 29 May 2013 - 08:30 AM, said:
I have some question.
When i create some text inside ExtEditMe editor and save in DB. How i can load this saved text, to inside editor when i create new some text?

Help














