Shock (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

Page 6 of 12 FirstFirst 123456789101112 LastLast
Results 76 to 90 of 171
  1. #76
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by Funsolit View Post
    None of these links have the working database table. The "Rare values table" link leads to the same link as "Revcms + skinn"
    Need 'cms_values', 'tmod', and 'badge_shop'

  2. #77
    Enthusiast fletchbest is offline
    MemberRank
    Feb 2009 Join Date
    46Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Here is my SQL dump I created for the rares table because the link just directs to the CMS.

    Code:
    -- phpMyAdmin SQL Dump
    
    
    SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
    SET time_zone = "+00:00";
    
    
    /*!40101 SET @old_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @old_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @old_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8mb4 */;
    --
    -- Table structure for table `cms_values`
    --
    
    CREATE TABLE `cms_values` (
      `id` int(11) NOT NULL,
      `name` varchar(99) NOT NULL,
      `value` varchar(99) NOT NULL,
      `image` varchar(99) NOT NULL,
      `valuename` varchar(99) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    
    --
    -- Dumping data for table `cms_values`
    --
    
    INSERT INTO `cms_values` (`id`, `name`, `value`, `image`, `valuename`) VALUES
    (1, 'Throne', '15000', 'throne.gif', 'Credits'),
    (2, 'Black Dragon', '20000', 'dragon_black.gif', ''),
    (3, 'Blue Dragon', '10000', 'dragon_blue.gif', ''),
    (4, 'Gold Dragon', '10000', 'dragon_gold.gif', ''),
    (5, 'Red Dragon', '10000', 'dragon_red.gif', ''),
    (6, 'Purple Dragon', '10000', 'dragon_purple.gif', '');
    
    --
    -- Indexes for dumped tables
    --
    
    --
    -- Indexes for table `cms_values`
    --
    ALTER TABLE `cms_values`
      ADD PRIMARY KEY (`id`);
    
    --
    -- AUTO_INCREMENT for dumped tables
    --
    
    --
    -- AUTO_INCREMENT for table `cms_values`
    --
    ALTER TABLE `cms_values`
      MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
    /*!40101 SET CHARACTER_SET_CLIENT @old_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS @old_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION @old_COLLATION_CONNECTION */;

  3. #78
    Proficient Member Articuz is offline
    MemberRank
    Jan 2016 Join Date
    157Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    @fletchbest you done with everything o.O

    -Articuz

  4. #79
    Enthusiast Leafy is offline
    MemberRank
    Dec 2011 Join Date
    AustraliaLocation
    30Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Well I like it to be honest!!

  5. #80
    No need of reading this Rush Retros is offline
    MemberRank
    Dec 2013 Join Date
    DenmarkLocation
    365Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by fletchbest View Post
    Here is my SQL dump I created for the rares table because the link just directs to the CMS.

    Code:
    -- phpMyAdmin SQL Dump
    
    
    SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
    SET time_zone = "+00:00";
    
    
    /*!40101 SET @old_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @old_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @old_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8mb4 */;
    --
    -- Table structure for table `cms_values`
    --
    
    CREATE TABLE `cms_values` (
      `id` int(11) NOT NULL,
      `name` varchar(99) NOT NULL,
      `value` varchar(99) NOT NULL,
      `image` varchar(99) NOT NULL,
      `valuename` varchar(99) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    
    --
    -- Dumping data for table `cms_values`
    --
    
    INSERT INTO `cms_values` (`id`, `name`, `value`, `image`, `valuename`) VALUES
    (1, 'Throne', '15000', 'throne.gif', 'Credits'),
    (2, 'Black Dragon', '20000', 'dragon_black.gif', ''),
    (3, 'Blue Dragon', '10000', 'dragon_blue.gif', ''),
    (4, 'Gold Dragon', '10000', 'dragon_gold.gif', ''),
    (5, 'Red Dragon', '10000', 'dragon_red.gif', ''),
    (6, 'Purple Dragon', '10000', 'dragon_purple.gif', '');
    
    --
    -- Indexes for dumped tables
    --
    
    --
    -- Indexes for table `cms_values`
    --
    ALTER TABLE `cms_values`
      ADD PRIMARY KEY (`id`);
    
    --
    -- AUTO_INCREMENT for dumped tables
    --
    
    --
    -- AUTO_INCREMENT for table `cms_values`
    --
    ALTER TABLE `cms_values`
      MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
    /*!40101 SET CHARACTER_SET_CLIENT @old_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS @old_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION @old_COLLATION_CONNECTION */;
    why do you use varchar with 99 instead of just using all of its space 8-16-32-64-128-255 why use 99 thn the rest (29) cant be used but is taking its space ?
    CREATE TABLE `cms_values` ( `id` int(11) NOT NULL,
    `name` varchar(99) NOT NULL,
    `value` varchar(99) NOT NULL,
    `image` varchar(99) NOT NULL,
    `valuename` varchar(99) NOT NULL

  6. #81
    Member Sve9n is offline
    MemberRank
    Sep 2013 Join Date
    NorwayLocation
    69Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    I've done some "edits" to this theme, let me know if you guys want it.
    home sites(since im a thug i use gif :3):
    Imgur

    Community sites:
    Last edited by Sve9n; 30-01-16 at 07:35 PM.

  7. #82
    Enthusiast TheKaye is offline
    MemberRank
    Oct 2013 Join Date
    35Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by Sve9n View Post
    I've done some "edits" to this theme, let me know if you guys want it.
    home sites(since im a thug i use gif :3):
    Imgur

    Community sites:
    nice!! could you send it to me?

  8. #83
    Proficient Member Articuz is offline
    MemberRank
    Jan 2016 Join Date
    157Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by Sve9n View Post
    I've done some "edits" to this theme, let me know if you guys want it.
    home sites(since im a thug i use gif :3):
    Imgur

    Community sites:
    @Sve9n can you send it to me?

    Greets
    Articuz

  9. #84
    Enthusiast SpirtuX is offline
    MemberRank
    Nov 2013 Join Date
    ЛинчёпиLocation
    36Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    @Sve9n I also want the edits you did :D Can you send me a copy?

  10. #85
    Enthusiast TheKaye is offline
    MemberRank
    Oct 2013 Join Date
    35Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    I have made this home page (obs its on swedish)

  11. #86
    dont judge me Wuzix is offline
    MemberRank
    Sep 2013 Join Date
    C:\inetpub\wwwLocation
    403Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by TheKaye View Post
    I have made this home page (obs its on swedish)
    I made that too with guestbook and search user. :)))))

  12. #87
    Enthusiast TheKaye is offline
    MemberRank
    Oct 2013 Join Date
    35Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by Wuzix View Post
    I made that too with guestbook and search user. :)))))
    you could send the guestbook script?

  13. #88
    Member Mustache is offline
    MemberRank
    Sep 2014 Join Date
    NetherlandsLocation
    77Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Someone got the updated 1 for me? Thanks the best.

  14. #89
    You looking at me? Zoxq is offline
    MemberRank
    Dec 2015 Join Date
    336Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by Mustache View Post
    Someone got the updated 1 for me? Thanks the best.
    Just update it yourself like everyone else did here. ;)

  15. #90
    Member Mustache is offline
    MemberRank
    Sep 2014 Join Date
    NetherlandsLocation
    77Posts

    Re: Shock 2.0 (RevCMS skin) (Look-a-like habin,sjovt,habbiz cms)

    Quote Originally Posted by PTA View Post
    Just update it yourself like everyone else did here. ;)
    Just nevermind, got my own cms working.



Advertisement