Advertisement
vitareinforce

php.ini

Dec 30th, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. ; Basic PHP settings, change limit settings to desired configuration
  2. memory_limit = 256M
  3. max_execution_time = 300
  4. upload_max_filesize = 50M
  5. post_max_size = 50M
  6. date.timezone = "Asia/Jakarta"
  7.  
  8. ; Error reporting
  9. display_errors = On
  10. display_startup_errors = On
  11. error_reporting = E_ALL
  12.  
  13. ; Session settings
  14. session.gc_maxlifetime = 1440
  15. session.save_path = "C:/tmp/"
  16.  
  17. ; Extensions
  18. extension_dir = "C:/php-7.4.33/ext"
  19. extension=bz2
  20. extension=gd
  21. extension=ctype
  22. extension=curl
  23. extension=exif
  24. extension=ftp
  25. extension=fileinfo
  26. extension=json
  27. extension=intl
  28. extension=mbstring
  29. extension=mysqli
  30. extension=openssl
  31. extension=pdo_mysql
  32. extension=parallel
  33. extension=tokenizer
  34. extension=xml
  35. extension=xsl
  36. extension=zip
  37.  
  38. ; Opcache settings (if using)
  39. opcache.enable = 1
  40. opcache.memory_consumption = 128
  41. opcache.interned_strings_buffer = 8
  42. opcache.max_accelerated_files = 10000
  43. opcache.revalidate_freq = 2
  44. opcache.fast_shutdown = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement