Global navigation

   Documentation Center
   eZ Studio & eZ Platform
     User Manual
     Technical Manual
     Glossary
   eZ Publish 4.x / legacy

 
eZ Publish (5.x)

eZ Publish 5.x | For eZ Platform & eZ Studio topics see Technical manual and User manual, for eZ Publish 4.x and Legacy topics see eZ Publish legacy

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: moved php max post size to separate page

...

Code Block
languagepowershell
titlephp.ini
memory_limit = 256M

#prior to eZ Publish 5.3-alpha1/2004.01
#memory_limit = 128M

PHP

...

To make use of PlatformUI, you need to set post_max_size to be consistent with the maximum file size defined in the Content Type using a File, Media or Image Field Definition.

For instance, if one of those Field definitions is configured to accept files up to 10 Mb, then post_max_size should be set above 10 Mb, with a safe margin, for example to 15 Mb.

PHP timezone

You need to set the "date.timezone" value in the "php.ini" configuration file. If this setting is not specified, you will most likely receive error messages like "It is not safe to rely on the system's timezone settings" when running eZ Publish on PHP 5.
The following example shows how the corresponding line in "php.ini" looks like:

...