|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-18 18:36 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 09:00:01 2025 UTC |
Description: ------------ __autoload() function is not working properly under SSL which is issued by "Equifax Secure Global eBusiness CA-1" from GeoTrust. normally without ssl everything is working fine, but when we are under SSL __autoload is never called. Reproduce code: --------------- __autoload($class){ echo "I am inside autoload"; } Expected result: ---------------- should echo "I am inside autoload" result under specified ssl Actual result: -------------- nothing happens under ssl, but without ssl its echoing "I am inside autload"...