Max php memory_limit?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Filipe Tomita

    Max php memory_limit?

    Hi people,

    What the accepted maximum value for memory_limit of php.ini?
    I tried to place 4GB but the apache did not initiate, diminishes the
    value for 3gb and works but my application still is requesting more
    memory. Somebody knows as to increase this limit?

    Thaks all.

    Filipe Tomita

  • =?ISO-8859-15?Q?Iv=E1n_S=E1nchez_Ortega?=

    #2
    Re: Max php memory_limit?

    Filipe Tomita wrote:
    Hi people,
    >
    What the accepted maximum value for memory_limit of php.ini?
    I tried to place 4GB but the apache did not initiate, diminishes the
    value for 3gb and works but my application still is requesting more
    memory.
    If your app *needs* to use more than 16M, you'd better have a good reason to
    run that instead of optimizing it.

    Check your algorithms, check that you're not creating variables in an
    infinite loop, check that you're not wasting memory.

    --
    ----------------------------------
    Iván Sánchez Ortega -ivansanchez-algarroba-escomposlinux-punto-org-

    Un ordenador no es un televisor ni un microondas, es una herramienta
    compleja.

    Comment

    Working...