LORAXX
Newbie


Joined: Jan 31, 2008
Posts: 2
|
Posted:
Thu Jan 31, 2008 9:13 pm |
|
I just finished migratation to 2.10.01 raven from 7.9 phpNUKE and all text is center justified in all block, post, forums, etc.. Even new posts get centers after submitted: How do I fix this problem? Everything else seem to work. I did get one error during db downgrading which was:
ALTER TABLE nuke_modules failed
I ignored the error and preceeded. I did not touch db.
my site is: http://we-are.brothers-in-arm.com/
Below is a copy of nuke_modules before downgrade and after downgrade:
BEFORE DOWNGRADE
-- phpMyAdmin SQL Dump
-- version 2.11.0
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 31, 2008 at 07:06 PM
-- Server version: 4.1.22
-- PHP Version: 5.2.3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `before`
--
-- --------------------------------------------------------
--
-- Table structure for table `nuke_modules`
--
DROP TABLE IF EXISTS `nuke_modules`;
CREATE TABLE `nuke_modules` (
`mid` int(10) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`custom_title` varchar(255) NOT NULL default '',
`active` int(1) NOT NULL default '0',
`view` int(1) NOT NULL default '0',
`inmenu` tinyint(1) NOT NULL default '1',
`mod_group` int(10) default '0',
`admins` varchar(255) NOT NULL default '',
PRIMARY KEY (`mid`),
KEY `mid` (`mid`),
KEY `title` (`title`),
KEY `custom_title` (`custom_title`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=30 ;
--
-- Dumping data for table `nuke_modules`
--
INSERT INTO `nuke_modules` VALUES(1, 'AvantGo', 'AvantGo', 0, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(2, 'Content', 'Content', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(3, 'Downloads', 'Downloads', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(4, 'Encyclopedia', 'Encyclopedia', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(5, 'FAQ', 'FAQ', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(6, 'Feedback', 'Feedback', 0, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(7, 'Forums', 'Forums', 1, 1, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(8, 'Journal', 'Journal', 0, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(9, 'Members_List', 'Members List', 1, 1, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(10, 'News', 'News', 1, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(11, 'Private_Messages', 'Private Messages', 1, 1, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(12, 'Recommend_Us', 'Recommend Us', 1, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(13, 'Reviews', 'Reviews', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(14, 'Search', 'Search', 0, 2, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(15, 'Statistics', 'Statistics', 1, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(16, 'Stories_Archive', 'Stories Archive', 0, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(17, 'Submit_News', 'Submit News', 0, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(18, 'Surveys', 'Surveys', 1, 1, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(19, 'Top', 'Top 10', 0, 0, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(20, 'Topics', 'Topics', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(21, 'Web_Links', 'Web Links', 1, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(22, 'Your_Account', 'Your Account', 1, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(23, 'Advertising', 'Advertising', 0, 0, 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(24, 'Clan_Themes_Shout', 'Shout Box', 1, 1, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(25, 'Clan_Roster', 'Clan Roster', 1, 0, 1, 0, 'LORAXX,');
INSERT INTO `nuke_modules` VALUES(26, 'Donations', 'Donations', 1, 1, 1, 0, '');
INSERT INTO `nuke_modules` VALUES(29, 'Clan_Sigs', 'Clan Sigs <===== NEW', 0, 1, 1, 1, '');
INSERT INTO `nuke_modules` VALUES(28, 'User_Groups', 'User Groups <===== NEW', 1, 0, 1, 0, '');
AFTER DOWNGRADE
-- phpMyAdmin SQL Dump
-- version 2.11.0
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 31, 2008 at 07:08 PM
-- Server version: 4.1.22
-- PHP Version: 5.2.3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `after`
--
-- --------------------------------------------------------
--
-- Table structure for table `nuke_modules`
--
DROP TABLE IF EXISTS `nuke_modules`;
CREATE TABLE `nuke_modules` (
`mid` int(10) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`custom_title` varchar(255) NOT NULL default '',
`active` int(1) NOT NULL default '0',
`view` int(1) NOT NULL default '0',
`groups` text NOT NULL,
`inmenu` tinyint(1) NOT NULL default '1',
`mod_group` int(10) default '0',
`admins` varchar(255) NOT NULL default '',
PRIMARY KEY (`mid`),
KEY `mid` (`mid`),
KEY `title` (`title`),
KEY `custom_title` (`custom_title`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=31 ;
--
-- Dumping data for table `nuke_modules`
--
INSERT INTO `nuke_modules` VALUES(1, 'AvantGo', 'AvantGo', 0, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(2, 'Content', 'Content', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(3, 'Downloads', 'Downloads', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(4, 'Encyclopedia', 'Encyclopedia', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(5, 'FAQ', 'FAQ', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(6, 'Feedback', 'Feedback', 0, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(7, 'Forums', 'Forums', 1, 1, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(8, 'Journal', 'Journal', 0, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(9, 'Members_List', 'Members List', 1, 1, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(10, 'News', 'News', 1, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(11, 'Private_Messages', 'Private Messages', 1, 1, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(12, 'Recommend_Us', 'Recommend Us', 1, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(13, 'Reviews', 'Reviews', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(14, 'Search', 'Search', 0, 2, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(15, 'Statistics', 'Statistics', 1, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(16, 'Stories_Archive', 'Stories Archive', 0, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(17, 'Submit_News', 'Submit News', 0, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(18, 'Surveys', 'Surveys', 1, 1, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(19, 'Top', 'Top 10', 0, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(20, 'Topics', 'Topics', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(21, 'Web_Links', 'Web Links', 1, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(22, 'Your_Account', 'Your Account', 1, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(23, 'Advertising', 'Advertising', 0, 0, '', 1, 0, 'L0RAXX,LORAXX,');
INSERT INTO `nuke_modules` VALUES(24, 'Clan_Themes_Shout', 'Shout Box', 1, 1, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(25, 'Clan_Roster', 'Clan Roster', 1, 0, '', 1, 0, 'LORAXX,');
INSERT INTO `nuke_modules` VALUES(26, 'Donations', 'Donations', 1, 1, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(29, 'Clan_Sigs', 'Clan Sigs <===== NEW', 0, 1, '', 1, 1, '');
INSERT INTO `nuke_modules` VALUES(28, 'User_Groups', 'User Groups <===== NEW', 1, 0, '', 1, 0, '');
INSERT INTO `nuke_modules` VALUES(30, 'HTML_Newsletter', 'HTML Newsletter', 0, 0, '', 1, 0, ''); |
| |
|