Created
July 25, 2015 12:58
-
-
Save ivanvermeyen/7d6de954d240bdeb2826 to your computer and use it in GitHub Desktop.
Enable file uploads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_suphp.c> | |
suphp_configpath /path/to/custom/php.ini | |
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PHP] | |
upload_max_filesize = 5M | |
post_max_size = 4M | |
register_globals = off | |
disable_functions = | |
allow_url_fopen = on | |
file_uploads = on | |
extension=pdo.so | |
extension=pdo_mysql.so | |
[Date] | |
date.timezone = Europe/Berlin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment