|
Debug named profiles
Is there a convenient way to debug a PHP named profile configuration? I get profile not found errors when I run my script so I've obviously misconfigured something but anything that is failing does so silently.
Just for a double check, my configuration is-
httpd.conf contains:
php_value ice.profiles c:/code/www/ice.profiles
ice.profiles:
[Test]
ice.options="--Ice.Trace.Network=1 --Ice.Warn.Connections=1"
ice.slice="-Ic:/code/IceServerTest/src c:/code/IceServerTest/src/TestServer.ice"
then
Ice_loadProfile("Test");
goes Fatal error: profile `Test' not found
|