[REL] Cravanno's Badgeshop [For RevCMS]

TinyBuilder

Bike ✔
Mar 19, 2012
717
66
Ok so there is no release in the internet for Cravanno's Badge Shop, so I thought to release it and help people who want a badgeshop badly.
  • Firstly, extract the download.
  • Then put the folder into your CMS's main root and rename it as "badgeshop"
  • Run these SQL's
PHP:
/*
Navicat MySQL Data Transfer
 
Source Server        : MYSQL
Source Server Version : 50517
Source Host          : localhost:3306
Source Database      : phoenix3
 
Target Server Type    : MYSQL
Target Server Version : 50517
File Encoding        : 65001
 
Date: 2011-12-18 19:15:26
*/
 
SET FOREIGN_KEY_CHECKS=0;
 
-- ----------------------------
-- Table structure for `badge_request`
-- ----------------------------
DROP TABLE IF EXISTS `badge_request`;
CREATE TABLE `badge_request` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(225) NOT NULL,
  `badgecode` varchar(225) NOT NULL,
  `date` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-- ----------------------------
-- Records of badge_request
-- ----------------------------

AND

PHP:
/*
Navicat MySQL Data Transfer
 
Source Server        : MYSQL
Source Server Version : 50517
Source Host          : localhost:3306
Source Database      : phoenix3
 
Target Server Type    : MYSQL
Target Server Version : 50517
File Encoding        : 65001
 
Date: 2011-12-18 19:16:46
*/
 
SET FOREIGN_KEY_CHECKS=0;
 
-- ----------------------------
-- Table structure for `badgeshop`
-- ----------------------------
DROP TABLE IF EXISTS `badgeshop`;
CREATE TABLE `badgeshop` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `badgename` varchar(25) NOT NULL,
  `price` int(10) NOT NULL,
  `badgecode` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
 
-- ----------------------------
-- Records of badgeshop
-- ----------------------------

  • Restart emulator
Go to yoursite/badgeshop/index.php and everything should work good :)


SCREENSHOTS:

Index:
Badgeshop Tools:
Complete list of your badges:

DOWNLOAD:

Credits: Cravanno [99.9%] & Me [0.1%]


Show your thanks by hitting the "Like" button!
 

ZackPatel

Member
Feb 4, 2012
35
0
I did it But i get theese errors.


Notice: Undefined index: error in C:\xampp\htdocs\badgeshop\assets\errors.php on line 3

Notice: Undefined index: addcode in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 13

Notice: Undefined index: addprice in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 14

Notice: Undefined index: addname in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 15

Notice: Undefined index: addsubmit in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 16

Notice: Undefined index: badgecode in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 18

Notice: Undefined index: remsubmit in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 19

And also i cant Add badges because the icon aint there :S
 

TinyBuilder

Bike ✔
Mar 19, 2012
717
66
I did it But i get theese errors.


Notice: Undefined index: error in C:\xampp\htdocs\badgeshop\assets\errors.php on line 3

Notice: Undefined index: addcode in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 13

Notice: Undefined index: addprice in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 14

Notice: Undefined index: addname in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 15

Notice: Undefined index: addsubmit in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 16

Notice: Undefined index: badgecode in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 18

Notice: Undefined index: remsubmit in C:\xampp\htdocs\badgeshop\assets\adpro.php on line 19

And also i cant Add badges because the icon aint there :S
Really it worked 100% for me, delete the badgeshop table in DB, delete the files, clear cache and do my steps from first, tell me if it failed again.
 

Users who are viewing this thread

Top