12

Possible Duplicate:
Allowed memory size of X bytes exhausted

I'm handling with a quite little big database (87mb) import and to do that I use a php script. All the operations are made in locale with an apache installation on Ubuntu Lucid.

When I run the script after few minutes I receive this error:

Allowed memory size of 268435456 bytes exhausted 

I've changed memory_limit to 2GB in php.ini file and restarted apache. After that I've checked phpinfo() and I see that memory_limit is set to '2048M' so all is ok.

But when i relaunch my script i receive the same error, 256mb memory limit exahusted.

Where am I wrong?

Community
  • 1
  • 1
Pennywise83
  • 1,784
  • 5
  • 31
  • 44

3 Answers3

14

If the script you are using is borrowed from someone else make sure there is no ini_set('memory_limit', '256M') which would produce the exactly effect you are seeing in spite of any change you made in php.ini.

Christian Specht
  • 35,843
  • 15
  • 128
  • 182
Jsventer
  • 141
  • 1
  • 3
2

Ubuntu has two php.ini's, one for apache and one for cli.
Are you sure you edited the right one?
The one for command line is usually in /etc/php5/cli/php.ini.

Christian Specht
  • 35,843
  • 15
  • 128
  • 182
Vid Luther
  • 163
  • 5
0

Most probably wrong php.ini is used.

In the same phpinfo()-s output you can check what file is used exactly, search for "Configuration File".

You can call the phpinfo() function from your real script used, to be sure to get the settings for exactly your script (different settings can be used for different virtual hsots, paths, etc).

Christian Specht
  • 35,843
  • 15
  • 128
  • 182
Levon Mirzoyan
  • 461
  • 1
  • 2
  • 6
  • I've added phpinfo() to the header of the script and it show me the same thing... memory_limit is set to 2048M but i receive the error message. I can't figure why this could be happening... – Pennywise83 Oct 11 '10 at 14:06