[Chameleon-dev] [Bug 1447] New: [phpwms] server_data_manager checks
for Chameleon instead of chameleon (name of the php extension)
bugzilla-daemon at bugzilla.maptools.org
bugzilla-daemon at bugzilla.maptools.org
Mon May 1 03:57:33 EDT 2006
http://bugzilla.maptools.org/show_bug.cgi?id=1447
Summary: [phpwms] server_data_manager checks for Chameleon
instead of chameleon (name of the php extension)
Product: Chameleon
Version: 2.4
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: Core
AssignedTo: chameleon-dev at lists.maptools.org
ReportedBy: bartvde at xs4all.nl
if(extension_loaded("Chameleon") || @dl("chameleon.".PHP_SHLIB_SUFFIX))
but the name of the extension is chameleon (lowercase), so this goes wrong in
the case of PHP safe mode, where you cannot dynamically load extensions.
it should be:
if(extension_loaded("chameleon") || @dl("chameleon.".PHP_SHLIB_SUFFIX))
>From phpinfo:
chameleon
chameleon support enabled
Julien, is this correct?
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Please do NOT reply to this email, use the link above instead to
login to bugzilla and submit your comment. Any email reply to this
address will be lost.
More information about the Chameleon-dev
mailing list