Lines Matching refs:phpThumb

3 //   phpThumb() by James Heinrich <info@silisoftware.com>   //
5 // and/or https://github.com/JamesHeinrich/phpThumb //
10 // THIS CONFIG FILE ONLY APPLIES TO phpThumb.php //
16 … include_once should take care of this, but see https://github.com/JamesHeinrich/phpThumb/issues/94
28 global $PHPTHUMB_CONFIG; // declare as global to prevent scope issues (when including phpThumb.con…
32 // phpThumb() depends on $_SERVER['DOCUMENT_ROOT'] to resolve path/filenames. This value is usually…
43 …ue; // DO NOT DISABLE THIS ON ANY PUBLIC-ACCESSIBLE SERVER. Prevents phpThumb from displaying a…
44 …be set and requires the use of phpThumbURL() function (at the bottom of phpThumb.config.php) to ge…
49 …to be anywhere in filesystem; if false only allow src within sub-directory of phpThumb installation
57 … // set the cache directory relative to the phpThumb() installation
69 // * Cache culling: phpThumb can automatically limit the contents of the cache directory
94 // parameters (set at the bottom of phpThumb.config.php) are used for processing.
96 $PHPTHUMB_CONFIG['cache_default_only_suffix'] = ''; // cached in normal phpThumb manner
101 … // allow phpThumb to share 1 set of…
108 // phpThumb() may need to create temp files. Usually the system temp dir is writable and can be use…
163 …= true; // die with error message on any fatal error (recommended with standalone phpThumb.php)
165 …e; // die with error message if source image cannot be processed by phpThumb() (usually becaus…
176 … // If false will allow standalone calls to phpThumb(). If true then o…
251 // Function for generating hashed calls to phpThumb if 'high_security_enabled'
253 // require_once('phpThumb/phpThumb.config.php');
254 // echo '<img src="'.htmlspecialchars(phpThumbURL('src=/images/pic.jpg&w=50', '/phpThumb/phpThumb
257 function phpThumbURL($ParameterString, $path_to_phpThumb='phpThumb.php') {