I am using CKFinder integrated in CKEditor.
I want to keep the Upload feature active, but scrap the Browse Server option as I don't want users doing this.
How can I do this?
Thank you.
The shorthand is after you setup the CKFinder integration with CKEditor, override the URLs to the FileBrowser:
//Prevent the fileBrowser button and option
$CKEditor->config['filebrowserBrowseUrl']='';
$CKEditor->config['filebrowserImageBrowseUrl']='';
$CKEditor->config['filebrowserFlashBrowseUrl']='';
Related
Auto Save or Prompt before navigating away from text editors in Kentico CMSDesk not working. I already set the Settings -> Content Management -> Prompt to save changes on exit to checked, but didn't work. Can somebody help me.
-Thanks in advance
What I would suggest is to enable the developer tools in chrome or firebug in firefox and check, if there are any javascript errors in your pages. it's possible that some custom javascript interferes with this check. Check for any errors and try to resolve them. Or, as a test, try creating a completely blank page in the content tree, with only an editable region and disable any master page inheritance so there won't be any custom code used on your page and test, if it works there. If it does, then keep adding your scripts and test to see which component or script is causing the issue. Also make sure your settings are enabled on a site level in the settings application.
Which version and hotfix do you use? I suppose you are using v7 (or less - because of CMSDesk). Please note there were some bug fixes related to prompt in CMSDesk (eg. in 7.0.80).
Content editing - The ‘Prompt to save changes on exit’ setting didn’t work correctly
You can find more information about hotfixes and fixed bugs here.
edit: after additional info (screen from your console) I think you have registered your own jquery and you don`t have registered it in no conflict mode. Can you agree? Could you register your jquery in nonconflict mode and try the prompt behavior again?
I'm unable to create the web content in liferay 6.2 assuming some configuration required for the same. Not able to enter any value in textboxes and none of the links working. I'm new to liferay please help me outenter image description here
Thanks atrujillofalcon. Yes, There is some issue with ckeditor which not allowing to display the complete ui page. ckeditor plugin needs to be updated to resolve the issue.
You surely have a Javascript error in your page that block the complete front-end interface funcionalities. You should check the browser console to find this errors.
I want to know if it's possible to launch windows applications from a website. If it is possible, how? Sort of like battlelog for battlefield, when a button is pushed it opens an application.
Edit: This is for personal use
Try this:
Make each button be a link to download a company template file for the given application. For example, the "Excel" button would download and the user should be prompted to open it with Excel.
For instance, try clicking one of the links here:
http://www.google.com/#sclient=psy&hl=en&q=template+filetype:xls
Linking to static files on the web server should be sufficient, so long as your server sends the correct MIME-Type or Content-Type.
HOPE it helps!
Take a look at this thread. it should point you in the right direction. In short you can do this in IE using ActiveX objects. But I must warn you that it is a very bad idea
I want to show some web page INSIDE Inno Setup installer page, how can it be embedded?
I was thinking of using cwebpage.dll ( http://www.codeproject.com/Articles/3365/Embed-an-HTML-control-in-your-own-window-using-pla ), but I have no idea how to use this dll with the means of Inno Setup scripting. If there are some other means, please help.
It's not possible directly in InnoSetup, you can use only components listed in the Classes Reference. However you can embed your setup with the custom form from a library e.g. this way.
I've created an example of such library with a sample InnoSetup script. This project is hosted here.
"shellexec" an .html file or web link. That's all there is to it :)
I know Gmail has contextual and side-bar gadgets, but how do browser extensions such as Rapportive work? Are they injecting their buttons / displays into the browser page? If so, wouldn't the browser extension break if Google decided to change the way they layout the page?
Are they injecting their buttons / displays into the browser page?
Yes.
If so, wouldn't the browser extension break if Google decided to change the way they layout the page?
Probably.
The probably leverage some part of the Gmail Greasemonkey API and inject scripts into the page to use this.