PHP Server Configuration Info - ClipBucket {$VERSION}, {$Cbucket->cbinfo.state}, REV {$Cbucket->cbinfo.rev}

A brief view of PHP server configuration Info

configurations and values

POST MAX SIZE

{if $post_max_size > 50}
  {$post_max_size}
{else}
  {$post_max_size} It must be atleast 50M
{/if}

UPLOAD MAX FILESIZE

{if $upload_max_filesize > 50}
  {$upload_max_filesize}
{else}
  {$upload_max_filesize} - It must be atleast 50M
{/if}

MEMORY LIMIT

{if $memory_limit >= 128}
  {$memory_limit}
{else}
  {$memory_limit} - It must be atleast 128M
{/if}

MAX EXECUTION TIME

{if $max_execution_time > 7200}
  {$max_execution_time}
{else}
  {$max_execution_time} - It must be atleast 7200
{/if}