This is a mistake that I find difficult to debug because
I do not experience this on my local development platform, only on remote servers (but not at all) and
I'm not sure where to start looking or what PHP settings you need to research, although I suspect the problem is with the remote server environment.
Another complication is that in the large multi-module script that I developed, the problem only arises in connection with the implementation of tinyMCE. Typical problem:
Warning: include_once (core / startup / GLOBALS.php) [function.include-once]: could not open the stream: there is no such file or directory in / home / wikindx / www / www / wikindx 4 / core / tiny_mce / plugins / wikindxLink /dialog.php on line 33
In addition to the possible solution that can be found in the server environment settings, I may need to change something in tinyMCE settings - I asked for help on tinyMCE forums several times, but did not receive any answers.
All this works fine on my local platform and on other remote servers. It goes without saying what GLOBALS.phpis in the kernel / start /, but I can’t write it hard to /home/wikindx/www/www/wikindx4/core/startup/, because these scripts should work on any server.
EDIT: I really suspect this has something to do with tinyMCE, because the server installation causing the problem has no problem with include_once ( core/startup/GLOBALS.php) when this call is outside of tinyMCE. Something in tinyMCE is changing the path it is looking for include_once().
source
share