CMS Donate Engine v3.3 CMS DonateEngine v3.3

Update module sales sets, added a list of servers and the function of grouping products into categories.


To update, create a new table
CREATE TABLE IF NOT EXISTS `ms_store_groups` (
  `id` int(2) auto_increment,
  `name` varchar(50) NULL DEFAULT '1',
  `server` int(11) NULL,
  `sort` int(3) NULL,
  `img` varchar(255) NULL DEFAULT '',
  `home` int(1) NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `sort` (`sort`),
  KEY `server` (`server`),
  KEY `home` (`home`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

Delete the `server` column in the table ms_store
ALTER TABLE `ms_store` DROP `server`

Replace the files with new ones.

New files:
  • Unchanged
Deleted files:
  • Unchanged
​Files with the changes:
  • shop/language/en/store.php
  • shop/language/ru/store.php
  • shop/includes/steamsign.class.php
  • shop/includes/functions.php
  • shop/includes/rcon.pe.php
  • shop/includes/rcon.srcds.php
  • shop/includes/constants.php
  • shop/style/images/rust.jpg
  • shop/style/images/ts3.jpg
  • shop/style/images/survival.jpg
  • shop/style/images/hurtworld/hurtworld.png
  • shop/style/images/items/pzomboid.png
  • shop/style/images/items/samp.png
  • shop/style/images/items/pocket.png
  • shop/style/images/hurtworld.jpg
  • shop/style/images/market.png
  • shop/style/images/shop2.png
  • shop/style/images/rust/rust.png
  • shop/style/images/cstrike/ak47.png
  • shop/style/images/cstrike/m4a1.png
  • shop/style/images/cstrike/deagle.png
  • shop/style/images/lisf_logo.jpg
  • shop/style/images/pocketmine.jpg
  • shop/style/images/key.png
  • shop/style/images/cstrike16.jpg
  • shop/style/images/samp.jpg
  • shop/style/images/ark.jpg
  • shop/style/images/pzomboid.jpg
  • shop/style/gente/js/shop.js
  • shop/style/gente/index.tpl
  • shop/style/gente/css/custom.css
  • shop/msmod/profile.php
  • shop/msmod/teleport.php
  • shop/msmod/inv.php
  • shop/msmod/exchange.php
  • shop/msmod/bans.php
  • shop/msmod/offer.php
  • shop/msmod/lisf.php
  • shop/msmod/news.php
  • shop/msmod/oxide.php
  • shop/msmod/servers.php
  • shop/msmod/shop.php
  • shop/msmod/store.php
  • shop/admin/msmod/rcon.php
  • shop/admin/msmod/articles.php
  • shop/admin/msmod/db.php
  • shop/install/sql/teleport_ru.sql
  • shop/install/sql/store_ru.sql
  • shop/install/sql/inserttable_ru.sql
  • shop/install/sql/databasetable.sql
  • shop/install/sql/store_en.sql
  • shop/install/sql/inserttable_en.sql
  • shop/install/sql/teleport_en.sql
Update template, updating the structure of MySQL.