Plugin Directory

Changeset 729170


Ignore:
Timestamp:
06/21/2013 03:08:42 AM (13 years ago)
Author:
byrev
Message:

Allowed to watermark larger images but beware, the server may hang from labor intensive.

Location:
byrev-wp-picshield-hotlink-defence/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • byrev-wp-picshield-hotlink-defence/trunk/byrev-wp-picshield-import-admin.php

    r713223 r729170  
    4040    '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)', ""),
    4141    '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', ""),
    4343    '.htacess Settings',
    4444    'images_extension' => array('jpg jpeg png gif','Files To Protect', 'Image Extensions Files to protected by <b>WP-PICShield</b> plugin (without the dot)', ""),
     
    332332        #~~~~~~
    333333        $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;
    335335        $gp['maximum_megapixels_size'] = $data_basic['maximum_megapixels_size'];
    336336        #~~~~~~             
  • byrev-wp-picshield-hotlink-defence/trunk/byrev-wp-picshield-interface.php

    r713221 r729170  
    44Plugin URI: http://wp-picshield.com/
    55Description: 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.3
     6Version: 1.9.4
    77Author: Emilian Robert Vicol
    88Author URI: http://publicphoto.org/
     
    3434?>
    3535<?php
    36 define('_BYREV_WP_PICSHIELD', '1.9.3');
     36define('_BYREV_WP_PICSHIELD', '1.9.4');
    3737
    3838define('_WP_BLOG_SERVER_NAME', $_SERVER['SERVER_NAME']);
  • byrev-wp-picshield-hotlink-defence/trunk/readme.txt

    r713223 r729170  
    55Requires at least: 3.5.1
    66Tested up to: 3.5.1
    7 Stable tag: 1.9.2
     7Stable tag: 1.9.4
    88
    99== Description ==
     
    114114== Changelog ==
    115115
     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
    116120= 1.9.3 =
    117121
Note: See TracChangeset for help on using the changeset viewer.