Created
July 15, 2014 04:08
-
-
Save hcooper/081bc779d374eefa7293 to your computer and use it in GitHub Desktop.
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
commit e4b016d2cc93a3231eb55a9d3a8f16c8302c5488 | |
Author: Hereward Cooper <[email protected]> | |
Date: Mon Jul 14 16:33:37 2014 -0700 | |
switch from imagemagick to gd | |
diff --git a/storage/configuration/user_setup.php b/storage/configuration/user_setup.php | |
index 92e54db..ced961b 100755 | |
--- a/storage/configuration/user_setup.php | |
+++ b/storage/configuration/user_setup.php | |
@@ -1,7 +1,7 @@ | |
<?php | |
// Path to ImageMagick on your server | |
- define('MAGICK_PATH', 'convert'); | |
+ define('MAGICK_PATH', 'gd'); | |
// Path to ffmpeg on your server | |
define('FFMPEG_PATH', 'ffmpeg'); | |
@@ -9,4 +9,4 @@ | |
// By default, Koken makes requests in parallel to improve performance. | |
// On some hosts, this can cause you to exceed your resource allotment. | |
// Uncomment this line and/or lower the number if you are having issues. | |
- // define('MAX_PARALLEL_REQUESTS', 4); | |
\ No newline at end of file | |
+ // define('MAX_PARALLEL_REQUESTS', 4); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment