Posts by borgomeister • 121 points
2 posts
-
1
votes1
answer937
viewsA: Download file as zip with PHP
I had similar problems for large ZIP files And I solved it this way: In your php.ini, do it: Upload_max_filesize - 1500 M Max_input_time - 1000 Memory_limit - 640M Max_execution_time - 1800…
phpanswered borgomeister 121 -
1
votes3
answers11758
viewsA: When to use const and when to use #define
Scott Meyers, in his book: C++ Effective -55 ways to improve your programs and projects says: "prefer compiler to preprocessor" #define can be treated as if it were not part of the language itself.…