|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-10-10 05:42 UTC] albertbrian at gmail dot com
[2006-10-10 06:33 UTC] albertbrian at gmail dot com
[2006-10-10 08:54 UTC] tony2001@php.net
[2006-10-10 14:18 UTC] nicodoggie at gmail dot com
[2006-10-10 14:32 UTC] tony2001@php.net
[2019-02-07 12:24 UTC] celestinoxp at hotmail dot com
[2019-02-07 12:27 UTC] spam2 at rhsoft dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 07:00:01 2025 UTC |
Description: ------------ I'm running Apache 1.33.34 on Win XP I've tried everything to load the extensions... I've changed my extension_dir to the following: 1) c:\php\ext 2) c:/php/ext 3) ./ext 4) .\ext and I've uncommented the particular extensions I need (xsl, mysql) I've already added C:\php to the PATH Env Variable in my system, so the dlls that are bundled aren't a problem... but then they still don't load. When i tried php -m on the console it did turn up, so I considered using PHP as CGI, to no avail, as I tried <?php phpinfo(); ?> it still didn't find the new extensions... Reproduce code: --------------- <?php phpinfo(); if(!extension_loaded('xsl')){ echo "<p>XSL IS LOADED</p>"; } ?> Expected result: ---------------- The new extensions to be displayed in one of the tables... and XSL IS LOADED Actual result: -------------- none of the new extensions turned up, nor did the echoed that was to be displayed as output