); /************* QUEUE TABLE *************/ // if we have a dev/live system // set_live is a per page/per item // live_queue is a global queue system // define('QUEUE', 'live_queue'); /************* CONVERT *******************/ // this only needed if the external thumbnail create is used $paths = [ '/bin', '/usr/bin', '/usr/local/bin', ]; // find convert foreach ($paths as $path) { if ( file_exists($path . DIRECTORY_SEPARATOR . 'convert') && is_file($path . DIRECTORY_SEPARATOR . 'convert') ) { // image magick convert location define('CONVERT', $path . DIRECTORY_SEPARATOR . 'convert'); break; } } unset($paths); // __END__