Hi, I have the following error message. What does it mean and what I should do? Allowed memory size of 33554432 bytes exhausted (tried to allocate 278 bytes) in /var/www/vhosts/sample.com/httpdocs/sample.php on line 21 Thanks for any help in advance.
Try adding ini_set('memory_limit', '64M'); at the top of your script. The error you receive is exactly what it says.. The allowed memory size your script is allowed to use is exhausted.
First step should always be a google search when you get an error as you'll usually find the solution.