I'm using the FCK Editor and a template engine.
Now the users could insert for example {EMAIL} into the editors scriptfield.
After saving this the {EMAIL} part is saved correctly into the database. Also the replacing works fine.
The problem occurs first, if the user edits his content again. The editor removes the {EMAIL} Tag automatically.
What can I do ?
Now the users could insert for example {EMAIL} into the editors scriptfield.
After saving this the {EMAIL} part is saved correctly into the database. Also the replacing works fine.
The problem occurs first, if the user edits his content again. The editor removes the {EMAIL} Tag automatically.
What can I do ?
RE: FCK Editor replaces {}
Please ... I need ya help ... no ideas ?

RE: FCK Editor replaces {}
Why does the Editor replace every { Tag .... ??!
HELP !
RE: FCK Editor replaces {}
FCKConfig.ProtectedSource.Add( /{[^}]*}/gi ) ; // {} custom tags
to your config?
RE: FCK Editor replaces {}
Plus is there any trick to help the textarea from not freaking out with value="<?php
Because this causes the page to fail to load.
I assume this is your biggest problem...
The only Idea I had would be if you could change all characters on view... and then click a checkbox to changeback on submit.
Please help..
I would really like to use this program, but I need to edit php files! and I cant.
RE: FCK Editor replaces {}
// FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ; // PHP style server side code
in the fckconfig should suffice