• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

PlaySro Full Website [PHP]

Newbie Spellweaver
Joined
Nov 21, 2012
Messages
13
Reaction score
0
omg just make a own website. All this days you wasted you could make your own. And its really noobish to copy from others work that they wasted so much time for. And belive me it feels better if you make everything your self it feels so much better.
 
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
omg just make a own website. All this days you wasted you could make your own. And its really noobish to copy from others work that they wasted so much time for. And belive me it feels better if you make everything your self it feels so much better.
Sorry, i'm noob. I can't code my own website(!) and stealing others work(!) And yes, i am not the first guy who coded e-pin system for vSro or i don't have web item mall since srevolution.
ROFL
 
Newbie Spellweaver
Joined
Nov 21, 2012
Messages
13
Reaction score
0
Sorry, i'm noob. I can't code my own website(!) and stealing others work(!) And yes, i am not the first guy who coded e-pin system for vSro or i don't have web item mall since srevolution.
ROFL

Im working on one right now when finish i will upload it here for you and make it for your noob game.
 
Newbie Spellweaver
Joined
Jul 13, 2012
Messages
87
Reaction score
13
web no found in inetpub ?

Need Help have error
Captura - PlaySro Full Website [PHP] - RaGEZONE Forums
 
Last edited by a moderator:
Elite Diviner
Joined
May 15, 2009
Messages
403
Reaction score
414
This website is working but u need something to edit in your apache and by creating a mysql database name to sro.

Here is the tables in sro database
Code:
CREATE TABLE `coins` (
  `id` int(11) NOT NULL,
  `pc` int(11) NOT NULL default '0',
  `vp` int(11) NOT NULL default '0',
  UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `news` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `body` varchar(2048) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


INSERT INTO `news` VALUES (1, 'RageZone', 'Posted By PX2000', 1, 'Hello world!');


CREATE TABLE `online` (
  `Server` varchar(100) NOT NULL,
  `Online` int(11) NOT NULL,
  PRIMARY KEY  (`Server`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


INSERT INTO `online` VALUES ('ServerName', 0);


CREATE TABLE `ref_hits` (
  `id` int(11) NOT NULL,
  `clicks` int(11) NOT NULL default '0',
  `registers` int(11) NOT NULL default '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `ref_ip` (
  `ip` varchar(15) NOT NULL,
  `target` int(11) NOT NULL,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote` (
  `id` int(11) NOT NULL,
  `t1` int(11) NOT NULL,
  `t2` int(11) NOT NULL,
  `t3` int(11) NOT NULL,
  `t4` int(11) NOT NULL,
  `t5` int(11) NOT NULL,
  `t6` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote2` (
  `ip` varchar(15) NOT NULL,
  `t1` int(11) NOT NULL default '0',
  `t2` int(11) NOT NULL default '0',
  `t3` int(11) NOT NULL default '0',
  `t4` int(11) NOT NULL default '0',
  `t5` int(11) NOT NULL default '0',
  `t6` int(11) NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Sample
RevoLand - PlaySro Full Website [PHP] - RaGEZONE Forums
 
Last edited:
Newbie Spellweaver
Joined
Nov 30, 2012
Messages
7
Reaction score
0
This website is working but u need something to edit in your apache and by creating a mysql database name to sro.

Here is the tables in sro database
Code:
CREATE TABLE `coins` (
  `id` int(11) NOT NULL,
  `pc` int(11) NOT NULL default '0',
  `vp` int(11) NOT NULL default '0',
  UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `news` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `body` varchar(2048) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


INSERT INTO `news` VALUES (1, 'RageZone', 'Posted By PX2000', 1, 'Hello world!');


CREATE TABLE `online` (
  `Server` varchar(100) NOT NULL,
  `Online` int(11) NOT NULL,
  PRIMARY KEY  (`Server`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


INSERT INTO `online` VALUES ('ServerName', 0);


CREATE TABLE `ref_hits` (
  `id` int(11) NOT NULL,
  `clicks` int(11) NOT NULL default '0',
  `registers` int(11) NOT NULL default '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `ref_ip` (
  `ip` varchar(15) NOT NULL,
  `target` int(11) NOT NULL,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote` (
  `id` int(11) NOT NULL,
  `t1` int(11) NOT NULL,
  `t2` int(11) NOT NULL,
  `t3` int(11) NOT NULL,
  `t4` int(11) NOT NULL,
  `t5` int(11) NOT NULL,
  `t6` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote2` (
  `ip` varchar(15) NOT NULL,
  `t1` int(11) NOT NULL default '0',
  `t2` int(11) NOT NULL default '0',
  `t3` int(11) NOT NULL default '0',
  `t4` int(11) NOT NULL default '0',
  `t5` int(11) NOT NULL default '0',
  `t6` int(11) NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Sample
RevoLand - PlaySro Full Website [PHP] - RaGEZONE Forums

query gives errors
 
Initiate Mage
Joined
Jul 5, 2014
Messages
4
Reaction score
0
This website is working but u need something to edit in your apache and by creating a mysql database name to sro.

Here is the tables in sro database
Code:
CREATE TABLE `coins` (
  `id` int(11) NOT NULL,
  `pc` int(11) NOT NULL default '0',
  `vp` int(11) NOT NULL default '0',
  UNIQUE KEY `ID` (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `news` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `body` varchar(2048) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


INSERT INTO `news` VALUES (1, 'RageZone', 'Posted By PX2000', 1, 'Hello world!');


CREATE TABLE `online` (
  `Server` varchar(100) NOT NULL,
  `Online` int(11) NOT NULL,
  PRIMARY KEY  (`Server`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


INSERT INTO `online` VALUES ('ServerName', 0);


CREATE TABLE `ref_hits` (
  `id` int(11) NOT NULL,
  `clicks` int(11) NOT NULL default '0',
  `registers` int(11) NOT NULL default '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `ref_ip` (
  `ip` varchar(15) NOT NULL,
  `target` int(11) NOT NULL,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote` (
  `id` int(11) NOT NULL,
  `t1` int(11) NOT NULL,
  `t2` int(11) NOT NULL,
  `t3` int(11) NOT NULL,
  `t4` int(11) NOT NULL,
  `t5` int(11) NOT NULL,
  `t6` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


CREATE TABLE `vote2` (
  `ip` varchar(15) NOT NULL,
  `t1` int(11) NOT NULL default '0',
  `t2` int(11) NOT NULL default '0',
  `t3` int(11) NOT NULL default '0',
  `t4` int(11) NOT NULL default '0',
  `t5` int(11) NOT NULL default '0',
  `t6` int(11) NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Sample
RevoLand - PlaySro Full Website [PHP] - RaGEZONE Forums
Please help not work :S
 
Back
Top