When getting an error:
SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn’t load from…
or similar. and SOAP over http works but over https does not, make sure that
“extension=php_openssl.dll”
is enabled in php.ini:
[PHP_SOAP]
extension=php_soap.dll
extension=php_openssl.dll
Entries Tagged as 'PHP'
PHP SOAP error over https:
August 27th, 2008 · Comments Off · PHP
Tags:
Windows 2003 IIS 6 FastCGI PHP and fopen error
May 9th, 2008 · Comments Off · Joomla/Mambo CMS, Microsoft, PHP
When setting up Joomla on Windows 2003 server with PHP in FastCGI mode I was getting an error:
PHP Warning:
fopen … failed to open stream: Permission denied in …\admin.config.php on line 374
I’ve searched high and low and there was no solution - I knew that this is the permission issue. Of course I had Internet Guest [...]
Tags:
Error Undefined variable: HTTP_SERVER_VARS
November 21st, 2007 · Comments Off · PHP
Error Undefined variable: HTTP_SERVER_VARS when using below
$thisscript = $HTTP_SERVER_VARS["PHP_SELF"];
use instead:
$thisscript = $_SERVER['PHP_SELF'];
Tags:
PHP debug with error_log
November 20th, 2007 · Comments Off · PHP
error_log(”Message to be logged in the error log”, 0);
Tags:
PHP Business Application Frameworks
January 24th, 2007 · Comments Off · PHP
Achievo ATK is an object oriented Web Application Framework, written in PHP.
It is targeted at developers who wish to focus on business logic, instead of coding HTML.
Where other application frameworks mainly provide a large set of utility classes, ATK provides a complete framework that requires only small amounts of code to get usable applications, while [...]
Tags: