
Hot to resolve next php/apache error:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate NNNNNN bytes) in /.../some-file.php on line NNNN
tried the following (previous value is commented) in php.ini & restart apache:
;max_execution_time = 60 ; Maximum execution ...

How do I activate the eaccelerator in XAMPP?
Open the "php.ini" file in the directory \xampp\apache\bin\php.ini. Here activate the following lines by removing the semicolon in each line in the [eAccelerator] section:
extension=eaccelerator.dll
eaccelerator.shm_size = "0"
eaccelerator.cache_dir = "\xampp\tmp"
eaccelerator.enable = "1"
eaccelerator.optimizer = "1"
After that, ...
Categories: Bookmarks, Hosting, Networking, PhP, Tech, Web Tags: eAccelerator XAMPP, eaccelerator.dll, Enable eAccelerator, php Accelerator XAMPP, php.ini file, restart apache

How can I hide PHP error messages in browser?
in php.ini file (global settings for server):
display_errors = Off
Using the ini_set() function to set the value of this, you will have to do it every time you run the script though.
<?php
ini_set("display_errors", ...
Categories: Bookmarks, Hosting, PhP, Tech, Web Tags: display_errors php, error_reporting php, Hide Php error, ini_set php, Php Error Messages, PHP Script, php.ini file