change post_max_size in php.ini

解决方案 »

  1.   

    Allowed memory size of 8388608 bytes exhausted (tried to allocate 3722193 bytes)
    的意思是无法申请到8M内存,只能申请到3635k内存
      

  2.   

    Allowed memory size of 8388608 bytes exhausted (tried to allocate 3722193 bytes)
    的意思是无法申请到8M内存,只能申请到3635k内存----------------------------------
    什么概念?怎么样才能申请到更多的?
      

  3.   

    PHP.ini中的设置:
    upload_max_filesize 50M 
    关于时间的设置:
    max_execution_time 30 
    max_input_time 60
      

  4.   

    memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)1  与PHP.INI有关2  与系统有关。是否限制了内存使用。3  系统资源不足。