Allocating memory error

I have a VPS server.

I keep getting this error on majority of my pages:

Fatal error: Out of memory (allocated 262144) (tried to allocate 77824 bytes) in /home/okay15/public_html/rightmenu.php on line 137

I am a complete newbie with this so can anyone help?

Thanks

It means that your PHP script tried to allocate more RAM, then it is allowed in your php.ini. Open php.ini file and increase memory_limit value. Or find why your script needs so much RAM and modify it so that it will need less.

It means that your PHP script tried to allocate more RAM, then it is allowed in your php.ini. Open php.ini file and increase memory_limit value. Or find why your script needs so much RAM and modify it so that it will need less.