Sunday, November 25, 2012

I was getting the following error while loading Front Accounting :
"OpenSSL PHP extension have to be enabled to use extension repository system."
Nothing I tried seemed to work and yes, the openssl line in php.ini was uncommented.
If I put phpinfo() in a test.php and ran it, it showed me : OpenSSL support + disabled (install ext/openssl)

Finally I copied all the lib*.dll files from PHP folder to the \windows\system32 folder on my Win XP PC. That did the trick!

Friday, November 23, 2012

Cannot send session cache limiter - headers already sent

If you are getting an error which looks like :

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at
or an error which looks like this :

Cannot modify header information - headers already sent by (output started at
do the following:
Open php.ini from your php folder and change
output_buffering=off to output_buffering=4096
Then restart your Apache server.

The problem gets eliminated.