Changeset 729170
- Timestamp:
- 06/21/2013 03:08:42 AM (13 years ago)
- Location:
- byrev-wp-picshield-hotlink-defence/trunk
- Files:
-
- 3 edited
-
byrev-wp-picshield-import-admin.php (modified) (2 diffs)
-
byrev-wp-picshield-interface.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
byrev-wp-picshield-hotlink-defence/trunk/byrev-wp-picshield-import-admin.php
r713223 r729170 40 40 'redirect_404_not_found_image' => array('/image-not-found/', 'Image <b>Not Found</b> page', 'Custom URL/Page for "Not Found" images (manualy create this page, template, or static)', ""), 41 41 'redirect_not_found_image_code' => array('404 Not Found', 'Image <b>Not Found</b> code', 'Response code for Custom URL/Page "Not Found"', array('404 Not Found|404 Not Found','307 Temporary Redirect|307 Temporary Redirect','302 Found|302 Found') ), 42 'maximum_megapixels_size' => array(3,'Maximum Megapixels', 'Maximum size in megapixels for protected files. Avoid memory errors for big files; 1.. 6', ""),42 'maximum_megapixels_size' => array(3,'Maximum Megapixels', 'Maximum size in megapixels for protected files. Avoid memory errors for big files; 1..128', ""), 43 43 '.htacess Settings', 44 44 'images_extension' => array('jpg jpeg png gif','Files To Protect', 'Image Extensions Files to protected by <b>WP-PICShield</b> plugin (without the dot)', ""), … … 332 332 #~~~~~~ 333 333 $n = (int)$gp['maximum_megapixels_size']; 334 $data_basic['maximum_megapixels_size'] = ( ($n < 1) OR ($n > 6) ) ? $gd['maximum_megapixels_size'][0] : $n;334 $data_basic['maximum_megapixels_size'] = ( ($n < 1) OR ($n > 128) ) ? $gd['maximum_megapixels_size'][0] : $n; 335 335 $gp['maximum_megapixels_size'] = $data_basic['maximum_megapixels_size']; 336 336 #~~~~~~ -
byrev-wp-picshield-hotlink-defence/trunk/byrev-wp-picshield-interface.php
r713221 r729170 4 4 Plugin URI: http://wp-picshield.com/ 5 5 Description: Images Hotlink Protection for Your Wordpress Websites; Anti-Hotlinking images/photos - Extensive Plugin for Watermark Pictures and images links redirect to the original page, based on Invalid Refferers and Boot. 6 Version: 1.9. 36 Version: 1.9.4 7 7 Author: Emilian Robert Vicol 8 8 Author URI: http://publicphoto.org/ … … 34 34 ?> 35 35 <?php 36 define('_BYREV_WP_PICSHIELD', '1.9. 3');36 define('_BYREV_WP_PICSHIELD', '1.9.4'); 37 37 38 38 define('_WP_BLOG_SERVER_NAME', $_SERVER['SERVER_NAME']); -
byrev-wp-picshield-hotlink-defence/trunk/readme.txt
r713223 r729170 5 5 Requires at least: 3.5.1 6 6 Tested up to: 3.5.1 7 Stable tag: 1.9. 27 Stable tag: 1.9.4 8 8 9 9 == Description == … … 114 114 == Changelog == 115 115 116 = 1.9.4 = 117 118 * increase maximum_megapixels_size limitation from 6 to 128 ... allowed to watermark larger images, but beware, the server may hang from intensive tasks until images is cached. 119 116 120 = 1.9.3 = 117 121
Note: See TracChangeset
for help on using the changeset viewer.