Plugin Directory

Changeset 3338192


Ignore:
Timestamp:
08/02/2025 11:17:30 AM (8 months ago)
Author:
osamaesh
Message:

bug fixing and updates

Location:
wp-stats-manager
Files:
94 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-stats-manager/trunk/includes/wsm_init.php

    r3322604 r3338192  
    21202120
    21212121        $sql = 'CREATE TABLE ' . self::$tablePrefix . '_oSystems (
    2122           id tinyint(2) UNSIGNED NOT NULL AUTO_INCREMENT,
     2122          id int UNSIGNED NOT NULL AUTO_INCREMENT,
    21232123          name varchar(255) DEFAULT NULL,
    21242124          PRIMARY KEY (id)
     
    21292129
    21302130        $sql = 'CREATE TABLE ' . self::$tablePrefix . '_browsers (
    2131           id tinyint(2) UNSIGNED NOT NULL AUTO_INCREMENT,
     2131          id int UNSIGNED NOT NULL AUTO_INCREMENT,
    21322132          name varchar(255) DEFAULT NULL,
    21332133          PRIMARY KEY (id)
     
    21382138
    21392139        $sql = 'CREATE TABLE ' . self::$tablePrefix . '_toolBars (
    2140           id tinyint(2) UNSIGNED NOT NULL AUTO_INCREMENT,
     2140          id int UNSIGNED NOT NULL AUTO_INCREMENT,
    21412141          name varchar(255) DEFAULT NULL,
    21422142          PRIMARY KEY (id)
     
    21562156
    21572157        $sql = 'CREATE TABLE ' . self::$tablePrefix . '_regions (
    2158           id tinyint(1) UNSIGNED NOT NULL AUTO_INCREMENT,
     2158          id int UNSIGNED NOT NULL AUTO_INCREMENT,
    21592159          code char(2) NOT NULL COMMENT \'Region code\',
    21602160          name varchar(255) DEFAULT NULL,
  • wp-stats-manager/trunk/readme.txt

    r3322604 r3338192  
    44Requires at least: 5.0
    55Tested up to: 6.8.1
    6 Stable tag: 8.1
     6Stable tag: 8.2
    77License: GPL3
    88
     
    8282
    8383== Changelog ==
     84
     85= 8.2 =
     86Updated the data type of some database columns to fix the Out of range value for column 'id'
    8487
    8588= 8.1 =
  • wp-stats-manager/trunk/wp-stats-manager.php

    r3322604 r3338192  
    44 * Plugin URI: http://plugins-market.com/contact-us
    55 * Description: This plugin will track the web analytics for each page and show various analytics report in admin panel as well as in front end.
    6  * Version: 8.1
     6 * Version: 8.2
    77 * Author: osamaesh
    88 * Author URI: http://plugins-market.com/
Note: See TracChangeset for help on using the changeset viewer.