Changeset 1289197
- Timestamp:
- 11/19/2015 01:58:57 AM (10 years ago)
- Location:
- wp-booklet/trunk
- Files:
-
- 4 edited
-
assets/js/wpbooklet-editor.js (modified) (1 diff)
-
classes/class-wp-booklet2-booklet-editor.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-booklet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-booklet/trunk/assets/js/wpbooklet-editor.js
r1211263 r1289197 150 150 } 151 151 hidePreloader(); 152 clearTimeout(termination); 152 153 },'json'); 154 155 /* Terminate script if it exceeds PHP timeout */ 156 var termination = setTimeout( function() { 157 hidePreloader(); 158 alert("PDF conversion FAILED because it exceeded allowed PHP execution time. Contact your server administrator for assistance."); 159 },(verification.max_execution_time * 1000)); 160 153 161 } 154 162 else { -
wp-booklet/trunk/classes/class-wp-booklet2-booklet-editor.php
r1211263 r1289197 306 306 $result = array( 'wpb_success'=>false, 'wpb_message' => 'Please select a valid PDF file.' ); 307 307 } 308 309 //Get maximum_execution_time 310 $result['max_execution_time'] = ini_get('max_execution_time'); 311 308 312 echo json_encode($result); 309 313 die(); -
wp-booklet/trunk/readme.txt
r1288385 r1289197 5 5 Requires at least: 3.9 6 6 Tested up to: 4.2.2 7 Stable tag: 2.1. 07 Stable tag: 2.1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 2.1.1 = 90 * PDF upload now terminates once maxiumum PHP execution time is reached. 91 89 92 = 2.1.0 = 90 93 * Booklet images now preload. … … 180 183 == Upgrade Notice == 181 184 185 = 2.1.1 = 186 * PDF upload now terminates once maxiumum PHP execution time is reached. 187 182 188 = 2.1.0 = 183 189 * Booklet images now preload. -
wp-booklet/trunk/wp-booklet.php
r1288382 r1289197 3 3 * Plugin Name: WP Booklet 4 4 * Description: Allows creation of flip books using the jQuery Booklet plugin. Successor to WP Booklet 1.x 5 * Version: 2.1. 05 * Version: 2.1.1 6 6 * Author: BinaryStash 7 7 * Author URI: http://www.binarystash.net
Note: See TracChangeset
for help on using the changeset viewer.