2008-02-28 18:42:56 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2008-02-28 21:14:06 +00:00
|
|
|
* Add the location of Minify's "lib" directory to the include_path. In
|
|
|
|
* production this could be done via .htaccess or some other method.
|
2008-02-28 18:42:56 +00:00
|
|
|
*/
|
|
|
|
ini_set('include_path',
|
2008-08-19 03:58:28 +00:00
|
|
|
dirname(__FILE__) . '/../min/lib'
|
2008-02-28 18:42:56 +00:00
|
|
|
. PATH_SEPARATOR . ini_get('include_path')
|
|
|
|
);
|
|
|
|
|
2008-02-28 21:14:06 +00:00
|
|
|
/**
|
|
|
|
* Set $minifyCachePath to a PHP-writeable path to enable server-side caching
|
|
|
|
* in all examples and tests.
|
|
|
|
*/
|
2008-06-09 23:29:38 +00:00
|
|
|
$minifyCachePath = 'C:/xampp/tmp'; // '';
|
2008-02-28 21:14:06 +00:00
|
|
|
|