INSTALL

Upload all files on server
Make MySql database
Edit config.php
run mysql.php
delete mysql.php

Login to admin.php make category(ies) and start posting


PROBLEMS ! If you have problem with mysql
Use folowing queries in phpMyadmin or any other program that you use

#----- MYSQL -----#
-- 
-- Table structure for table `categories`
-- 

CREATE TABLE `categories` (
  `id` int(2) NOT NULL auto_increment,
  `name` varchar(100) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

-- 
-- Table structure for table `comments`
-- 

CREATE TABLE `comments` (
  `id` int(7) NOT NULL auto_increment,
  `name` varchar(240) NOT NULL,
  `text` text NOT NULL,
  `newsid` int(15) NOT NULL,
  `time` int(15) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

-- 
-- Table structure for table `news`
-- 

CREATE TABLE `news` (
  `id` int(7) NOT NULL auto_increment,
  `title` varchar(240) NOT NULL,
  `text` text NOT NULL,
  `cat` varchar(100) NOT NULL,
  `tags` varchar(100) NOT NULL,
  `main` int(1) NOT NULL,
  `time` int(15) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

-- 
-- Table structure for table `rating`
-- 

CREATE TABLE `rating` (
  `id` int(7) NOT NULL auto_increment,
  `rate` varchar(240) NOT NULL,
  `ip` varchar(240) NOT NULL,
  `newsid` int(15) NOT NULL,
  `time` int(15) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;

#----- MYSQL -----#
