Skip to content

Instantly share code, notes, and snippets.

@hcooper
Created July 15, 2014 04:08
Show Gist options
  • Save hcooper/081bc779d374eefa7293 to your computer and use it in GitHub Desktop.
Save hcooper/081bc779d374eefa7293 to your computer and use it in GitHub Desktop.
commit e4b016d2cc93a3231eb55a9d3a8f16c8302c5488
Author: Hereward Cooper <coops@fawk.eu>
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