Hi I just want to edit my webpages online with ckeditor I know how to get the editor up, but in simple terms how do I GET IT TO EDIT and Save content(write and save ) the content to an exsiting webpage being .php or .html ??? what do i have to do to my exsiting pages to make ckeditor and save them ? iv look at the intergration still cannot figue it out been at it all day please help
Tue, 01/12/2010 - 01:17
#1
Re: Need help in simple terms on editing exsiting webpages
Unfortunately you aren't going to find a simplistic answer here because in order to save your changes, you have to have a server side script to facilitate the changes.
For instance, say you want to edit static html pages, you will need to have a php script that can open the file as a text document and load the information into the editor. To save the page, you will have to use the Integration guide's php example to get the POSTed data and overwrite the origin html file.
Alternatively and probably the easier of the two is the utilization of a database. That way you execute a simple query to retrieve the markup and load it into the editor and then just do an UPDATE or INSERT to keep your website current with the new markup.
Either way, it is a relatively involved process if you are just hoping to use it to update a site.