php jquery multi file download

https://github.com/sjardim/processwire-simple-flickr-album http://www.webinfopedia.com/multiple-file-download-by-creating-zip-file-in-PHP.html http://stackoverflow.com/questions/1754352/download-multiple-files-as-zip-in-php ===== jquery https://github.com/biesiad/jquery-multidownload ** $(’.my_download_trigger’).multiDownload({ delay: 500 }); http://stackoverflow.com/questions/9047645/download-multiple-files-without-using-zip-file https://github.com/sindresorhus/multi-download

2015-12-07 · 1 min · 13 words · Me

php image compression || php image optimization

2016/03/02 http://www.mikkonen.info/imageutil/ =====2015/11/29 http://www.smashingmagazine.com/2015/06/efficient-image-resizing-with-imagemagick/ From my tests, running ImageMagick with the following settingsproduced the smallest results, while generally being visually indistinguishable from Photoshop’s output: mogrify -path OUTPUT_PATH -filter Triangle -define filter:support=2 -thumbnail OUTPUT_WIDTH -unsharp 0.25x0.25+8+0.065 -dither None -posterize 136 -quality 82 -define jpeg:fancy-upsampling=off -define png:compression-filter=5 -define png:compression-level=9 -define png:compression-strategy=1 -define png:exclude-chunk=all -interlace none -colorspace sRGB -strip INPUT_PATH I looked at 11 different functions and found that -thumbnail does the best job of optimizing quality and file size. ...

2015-11-29 · 1 min · 167 words · Me

phpFlickr authentication to access private photos flickr

phpFlickr authentication to access private photos 1:https://github.com/jrtilson/phpflickr/tree/master/token download index.php & auth.php or my demo 2:edit index.php 2-1 mark: //$f->auth($_SESSION[‘perms’]); //會造成迴圈 //$token = $f->auth_checkToken($_SESSION[‘phpFlickr_auth_token’]); //無用 !!important!! token usually is ok~ and phpFlickr check token is broken. This can check token https://www.flickr.com/services/api/explore/flickr.auth.checkToken 2-2 change: echo “” . $_SESSION[‘phpFlickr_auth_token’][_content] . “”; //要補上[_content] 3:call back URL set THIS FILE:**http://xxxxoooo.com/**auth.php IF not sure, just index.php when you not login. index.php have Set the callback url to: xxxxxxoooooo ...

2015-09-21 · 1 min · 150 words · Me

php pdo [轉]Useful database helper class to generate CRUD statements using PHP and MySQL

http://www.angularcode.com/useful-database-helper-class-to-generate-crud-statements-using-php-and-mysql/ 這個看起來更好,滿足我的問題,不用再進crud class中,一個一個改欄位,直接帶什麼改什麼,這樣更快。

2015-09-05 · 1 min · 3 words · Me

roxyfileman ckeditor 看來是比較好的方式,連file broswer都有了

http://www.roxyfileman.com/CKEditor-file-browser 檔案下載 filedownload

2015-09-03 · 1 min · 3 words · Me