Need help with Anchor

HabCoolRP

New Member
May 1, 2012
14
0
Hello guys I have problem with Anchor,I've follow'd the instuructions on how to install it but I have this error and I can't even find the .sql thingy..Help me?

 

Mitchul

Sledmoresux
Feb 18, 2012
371
46


PHP:
-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 13, 2012 at 06:54 PM
-- Server version: 5.5.16
-- PHP Version: 5.3.8
 
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 utf8 */;
 
--
-- Database: `anchor_flash`
--
 
-- --------------------------------------------------------
 
--
-- Table structure for table `packets_send`
--
 
CREATE TABLE IF NOT EXISTS `packets_send` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `recid` varchar(2) NOT NULL,
  `sendback` varchar(2) NOT NULL,
  `type` enum('1','2','3') NOT NULL COMMENT '1 = sso, 2 = login, 3 = normal',
  `contents` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
 
--
-- Dumping data for table `packets_send`
--
 
INSERT INTO `packets_send` (`id`, `recid`, `sendback`, `type`, `contents`) VALUES
(1, 'CN', 'DA', '3', 'H'),
(2, 'F_', '@C', '1', ''),
(3, 'F_', 'Lj', '3', 'IHello {username}!\r\n\r\nWelcome to the test server of AnchorV3.');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `users`
--
 
CREATE TABLE IF NOT EXISTS `users` (
  `id` int(30) NOT NULL,
  `username` varchar(30) NOT NULL,
  `password` varchar(30) NOT NULL,
  `ssoticket` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
 
--
-- Dumping data for table `users`
--
 
INSERT INTO `users` (`id`, `username`, `password`, `ssoticket`) VALUES
(1, 'Quackster', 'cake', 'cake');
 
/*!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 */;
 

HabCoolRP

New Member
May 1, 2012
14
0


PHP:
-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 13, 2012 at 06:54 PM
-- Server version: 5.5.16
-- PHP Version: 5.3.8
 
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 utf8 */;
 
--
-- Database: `anchor_flash`
--
 
-- --------------------------------------------------------
 
--
-- Table structure for table `packets_send`
--
 
CREATE TABLE IF NOT EXISTS `packets_send` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `recid` varchar(2) NOT NULL,
  `sendback` varchar(2) NOT NULL,
  `type` enum('1','2','3') NOT NULL COMMENT '1 = sso, 2 = login, 3 = normal',
  `contents` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
 
--
-- Dumping data for table `packets_send`
--
 
INSERT INTO `packets_send` (`id`, `recid`, `sendback`, `type`, `contents`) VALUES
(1, 'CN', 'DA', '3', 'H'),
(2, 'F_', '@C', '1', ''),
(3, 'F_', 'Lj', '3', 'IHello {username}!\r\n\r\nWelcome to the test server of AnchorV3.');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `users`
--
 
CREATE TABLE IF NOT EXISTS `users` (
  `id` int(30) NOT NULL,
  `username` varchar(30) NOT NULL,
  `password` varchar(30) NOT NULL,
  `ssoticket` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
 
--
-- Dumping data for table `users`
--
 
INSERT INTO `users` (`id`, `username`, `password`, `ssoticket`) VALUES
(1, 'Quackster', 'cake', 'cake');
 
/*!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 */;
Where will I put it?On localhost/phpmyadmin then?
 

Users who are viewing this thread

Top