Re: [PHP-GTK] create an HTML editor using GtkHTML
[email protected] (Elizabeth Smith)
| Newsgroups | php.gtk.general |
|---|---|
| Message-ID | <[email protected]> |
Pavle Gardijan wrote: > I keep getting the following error at runtime > > GConf Error: Failed to launch configuration server: Failed to execute child > process (No such file or directory) > > Anyone knows what's causing this? I'm on win 2000 > > ----- Original Message ----- > From: "kksou" <[email protected]> > To: <[email protected]> > Sent: Wednesday, September 05, 2007 6:24 PM > Subject: [PHP-GTK] create an HTML editor using GtkHTML > > >> GtkHTML has a surprisingly rich set of formatting commands that allow us > to >> build an HTML editor. >> >> Have created a sample code here: >> > http://www.kksou.com/php-gtk2/articles/create-an-html-editor-using-gtkhtml---Part-2.php >> However, I looked high and low using inspector, and couldn't find any >> command or method that allow us to export or save the text in the editor > as >> HTML text. >> >> I looked at the C code. The save commands seem to be there. So is it > because >> the save commands are not wrapped in PHP-GTK2 yet? >> >> Anybody has any idea...? >> >> Regards, >> /kksou >> >> -- >> View this message in context: > http://www.nabble.com/create-an-HTML-editor-using-GtkHTML-tf4386453.html#a12505619 >> Sent from the Php - GTK - General mailing list archive at Nabble.com. >> >> -- >> PHP-GTK General Mailing List (http://gtk.php.net/) >> To unsubscribe, visit: http://www.php.net/unsub.php >> >> as I've mentioned before, you must have a gconf process running during your scripts execution - look for the gconfd-2.exe and either start it using popen or proc_open during your script, or start your script with gconfd-2.exe | php myscript this should be worked around since the newer gtkhtml libs allow you to build without the gconf requirement, but I don't have the libs built yet for windows