minify - Get a timestamped URI to a minified resource using the default Minify install
I am using Minify and I want a timestamped URI.
The readme.txt suggests this:
<link rel="stylesheet" type="text/css" href="<?php echo Minify_groupUri('css'); ?>" />
<script type="text/javascript" src="<?php echo Minify_groupUri('js'); ?>"></script>
but it also says: 'Before includin开发者_运维百科g this file, /min/lib must be in your include_path.'
Where is the include_path set??
A.
Edit your php.ini with
include_path = .:/min/lib/:
精彩评论