Lines Matching refs:php
41 Then run /demo/phpThumb.demo.check.php
55 3) rename phpThumb.config.php.default -> phpThumb.config.php
56 4) edit phpThumb.config.php as needed to suit your server configuration.
63 /phpThumb/demo/phpThumb.demo.check.php in your browser. Settings that are
73 <img src="phpThumb.php?src=/image.jpg&w=100&hash=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
74 To generate the hash value you must include the phpThumb.config.php file and use the
76 …echo '<img src="'.htmlspecialchars(phpThumbURL('src=/images/pic.jpg&w=50', '/path/to/phpThumb.php'…
78 must generate a complex password value for that setting in phpThumb.config.php
96 This is a PHP limitation (see www.php.net/file-exists)
107 phpThumb.php can also be called by passing parameters not
109 phpThumb.php/<params>=<values>;<w>x<h>;<image>
111 phpThumb.php/100;pic.jpg
112 phpThumb.php/100;images/pic.jpg
113 phpThumb.php/100;/images/pic.jpg
114 phpThumb.php/100x200;pic.jpg
115 phpThumb.php/x200;pic.jpg
116 phpThumb.php/f=jpeg;q=50;100x200;pic.jpg
117 phpThumb.php/fltr[]=usm;100;pic.jpg
126 Calling as an object (not using phpThumb.php):
130 display resized images, please just use phpThumb.php, not the object mode.
132 skip phpThumb.php and instantiate your own object. Please take a look at
133 /demo/phpThumb.demo.object.php for details.
135 Note: phpThumb.php is where the caching code is located, if you instantiate
147 phpThumb.config.php - this is the only file you should ever modify.
151 The configuration file is distributed as phpThumb.config.php.default to prevent
154 the default to phpThumb.config.php since newer releases may include settings not
160 phpThumb using phpThumbURL() in phpThumb.config.php
163 at http://www.silisoftware.com/tools/password-random.php
185 Each call to phpThumb.php needs to be made through the function supplied
186 at the bottom of phpThumb.config.php which create the hash:
187 require_once('phpThumb.config.php');
188 echo '<img src="'.phpThumbURL('src=pic.jpg&w=50', '/path/to/phpThumb.php').'">';
229 https://www.php.net/manual/en/function.imagecropauto.php
497 phpThumb.php dies and outputs the correct MD5 hash
565 good: phpThumb.php?src=/images/nicepic.jpg
566 bad: phpThumb.php?src=/home/httpd/example/images/nicepic.jpg
567 worse: phpThumb.php?src=http://example.com/images/nicepic.jpg
588 phpThumb.php?src=pic.jpg&sx=.25&sy=.25&sw=.5&sh=.5
609 Run /demo/phpThumb.demo.check.php to examine your server
625 * http://bugs.php.net/bug.php?id=21518
626 * http://bugs.php.net/bug.php?id=24174