Plugin Directory

Changeset 1496577


Ignore:
Timestamp:
09/16/2016 01:47:26 AM (10 years ago)
Author:
osexcel
Message:

6.5.11

  • Fixed installer not working on Windows server due to the lack of INNODB engine
Location:
ose-firewall/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ose-firewall/trunk/ose_firewall_badge.php

    r1496143 r1496577  
    44   Description: Plugin For Showing Centrora Security Badge
    55   Author: Centrora Security
    6    Version: 6.5.10
     6   Version: 6.5.11
    77*/ 
    88//include(dirname(__FILE__).'/includes/oseBadgeWidget.php');
  • ose-firewall/trunk/ose_wordpress_firewall.php

    r1496143 r1496577  
    55Description: Centrora Security (previously OSE Firewall) - A WordPress Security Firewall plugin created by Centrora. Protect your WordPress site by identify any malicious codes, spam, virus, SQL injection, and security vulnerabilities.
    66Author: Centrora (Previously ProWeb)
    7 Version: 6.5.10
     7Version: 6.5.11
    88Author URI: http://www.centrora.com/
    99*/
  • ose-firewall/trunk/readme.txt

    r1496143 r1496577  
    66Requires at least: 3.7
    77Tested up to: 4.5.2
    8 Stable tag: 6.5.10
     8Stable tag: 6.5.11
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    165165== Changelog ==
    166166
     167= 6.5.11 =
     168* Fixed installer not working on Windows server due to the lack of INNODB engine
     169
    167170= 6.5.10 =
    168171* Updated API IP address
    169 * Updated API Web Address to https protocols
    170172
    171173= 6.5.9 =
  • ose-firewall/trunk/vendor/oseframework/installer/installer.php

    r1387925 r1496577  
    8080        $queries = $this->_splitQueries($data);
    8181        foreach ($queries as $query)
    82         {   
     82        {
     83            if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
     84                $query = str_replace('InnoDB', 'MyISAM', $query);
     85            }
    8386            $this->db->setQuery($query);
    8487            if(!$this->db->query()) {
Note: See TracChangeset for help on using the changeset viewer.