I am developing an application under Linux, using glade to create the layouts. The glade.glade file is in the same directory as the php code.
This runs fine under Linux.
The tree in which the application resides is shared out via samba. Windows machines connect to the share and execute the php programs from the share. Programs that do not use glade.glade files run smoothly. Programs that use glade.glade crash with:
| Code: |
Fatal error: Class 'GladeXML' not found in W:\gtk2\Example\php\example.php on line 36
class CompositionPlanner extends GladeXML {...
|
Obviously, class GladeXML in not known by php-gtk2 under windows.
What am I missing? Do I need the complete glade3 development system installed on the windows machine, even if it never gets used for development.
To test this theory, installed glade2 using the installer as described in Sample Code 328: How to install glade3 for PHP GTK2 on windows? This went well and I can run glade2 and glade3; however, GladeXML still can't be found.
What do I try next?