Plugin Directory

Changeset 181430


Ignore:
Timestamp:
12/10/2009 02:43:09 AM (16 years ago)
Author:
reaperhulk
Message:

cdn tools 0.97 release. ssl fix

Location:
cdn-tools
Files:
2 edited
6 copied

Legend:

Unmodified
Added
Removed
  • cdn-tools/tags/0.97/cdntools.php

    r179788 r181430  
    55Description: CDN Tools is a plugin designed to help you drastically speed up your blog's load time by loading content onto a distribution network.  You can use a commercial CDN or just load some of your larger JS libraries for free from Google's servers!  At this time Cloud Files is the only supported CDN.
    66Author: Paul Kehrer
    7 Version: 0.96
     7Version: 0.97
    88Author URI: http://langui.sh/
    99*/
     
    2828set_time_limit(90); //90 seconds max...
    2929
    30 define('CDNTOOLS_VERSION','0.96');
     30define('CDNTOOLS_VERSION','0.97');
    3131
    3232$dir_array = explode('/',dirname(__FILE__));
     
    754754                    jQuery.ajax({
    755755                        type: "post",
    756                         url: "<?php echo get_option('siteurl'); ?>/wp-admin/admin-ajax.php",
     756                        url: "admin-ajax.php",
    757757                        data:
    758758                        {
  • cdn-tools/tags/0.97/readme.txt

    r179788 r181430  
    55Requires at least: 2.7
    66Tested up to: 2.8.6
    7 Stable tag: 0.96
     7Stable tag: 0.97
    88
    99CDN Tools is a plugin designed to help you drastically speed up your blog's load time by loading data onto a content distribution network (CDN).
     
    4242
    4343== Changelog ==
     44= 0.97 - 12/9/2009 =
     45* Initial sideload AJAX used an absolute path with the siteurl.  This should have been a relative path or the adminurl to accommodate situations were FORCE_SSL_ADMIN is defined.  Thanks to John for identifying the bug.
     46
    4447= 0.96 - 12/4/2009 =
    4548* Upgraded and (temporarily) forked CloudFiles API to fix bugs related to safe_mode and content type detection.  This means you shouldn't see badcontenttype exceptions or "stuck at 0%" errors any more!
  • cdn-tools/trunk/cdntools.php

    r179788 r181430  
    55Description: CDN Tools is a plugin designed to help you drastically speed up your blog's load time by loading content onto a distribution network.  You can use a commercial CDN or just load some of your larger JS libraries for free from Google's servers!  At this time Cloud Files is the only supported CDN.
    66Author: Paul Kehrer
    7 Version: 0.96
     7Version: 0.97
    88Author URI: http://langui.sh/
    99*/
     
    2828set_time_limit(90); //90 seconds max...
    2929
    30 define('CDNTOOLS_VERSION','0.96');
     30define('CDNTOOLS_VERSION','0.97');
    3131
    3232$dir_array = explode('/',dirname(__FILE__));
     
    754754                    jQuery.ajax({
    755755                        type: "post",
    756                         url: "<?php echo get_option('siteurl'); ?>/wp-admin/admin-ajax.php",
     756                        url: "admin-ajax.php",
    757757                        data:
    758758                        {
  • cdn-tools/trunk/readme.txt

    r179788 r181430  
    55Requires at least: 2.7
    66Tested up to: 2.8.6
    7 Stable tag: 0.96
     7Stable tag: 0.97
    88
    99CDN Tools is a plugin designed to help you drastically speed up your blog's load time by loading data onto a content distribution network (CDN).
     
    4242
    4343== Changelog ==
     44= 0.97 - 12/9/2009 =
     45* Initial sideload AJAX used an absolute path with the siteurl.  This should have been a relative path or the adminurl to accommodate situations were FORCE_SSL_ADMIN is defined.  Thanks to John for identifying the bug.
     46
    4447= 0.96 - 12/4/2009 =
    4548* Upgraded and (temporarily) forked CloudFiles API to fix bugs related to safe_mode and content type detection.  This means you shouldn't see badcontenttype exceptions or "stuck at 0%" errors any more!
Note: See TracChangeset for help on using the changeset viewer.