Author |
Message |
loraxx
Regular
Joined: Jan 24, 2008
Posts: 58
|
Posted:
Fri Jan 25, 2008 9:07 pm |
|
Today I downloaded the lastest ravenNuke package and attemped to convert to my phpNUKE 7.9 to raven this is my story.
LOOKING FOR FEEDBACK, HOW TO I KNOW EVERYTHING IS OK, WHAT ABOUT 1 FAILURE DURING DOWNGRADE????
Ok. The noob WINS !!!!
This is what my 1 week of website experience has done, I'm happy AA AA AA AA AA AA AA AA :
- I made clone of my website using a sub-domian, copy of all my root files and folders, and a copy of MySql db. The site was an exact clone
- upgraded myBB to lastest version 2.2
- downgraded my db using 7.8 to 7.6 I had 7.9. I got 1 error alter table nuke_modules failed (i ignored)- installed resend email, html, nsn, to downgraded db using raven provided scripts
- I then merged the entire contents of raven html folder into my cloned website root with 100% replace
- I change config.php so user, db, and password were correct
- I then logged into website, YEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA!!!!! WORKING !!!!!!!!!!!!!
- Add this point I have found only 1 thing wrong and that is all my headers in forums are center justified along with contents of contents blocks (assume this is an easy fix???)
So what should I test very hard due to alter table nuke_modules failed error during downgrade of db?????
Can this probelm be fixed????
What esle should I test before changing over to raven????
Looking for some feedback from the experienced people.
Cheers |
|
|
|
|
montego
Site Admin
Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Sat Jan 26, 2008 6:05 am |
|
loraxx, welcome to RavenPHPScripts and RavenNuke! I must commend you on a job well done!! Are you sure you have only been doing this for a week?
I'll give you two answers to your question.
1) This is the complete answer which will work each and every time. Get yourself a copy of mySQLDiff (Google it), complete a fresh install of the database using the installSQL.php (but make sure you do not overwrite your main site database!) Then, use MySQLDiff to compare the two database structures. This will tell you what might not be quite right (if anything).
2) Post your nuke_modules table here and we'll compare it to 2.10.01.
Again, great job! |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
|
loraxx
|
Posted:
Sat Jan 26, 2008 6:44 pm |
|
montego wrote: | loraxx, welcome to RavenPHPScripts and RavenNuke! I must commend you on a job well done!! Are you sure you have only been doing this for a week?
I'll give you two answers to your question.
1) This is the complete answer which will work each and every time. Get yourself a copy of mySQLDiff (Google it), complete a fresh install of the database using the installSQL.php (but make sure you do not overwrite your main site database!) Then, use MySQLDiff to compare the two database structures. This will tell you what might not be quite right (if anything).
2) Post your nuke_modules table here and we'll compare it to 2.10.01.
Again, great job! |
Thank you very much for the reply and information. I will perform step 1 and then after that post will post nuke_modules tables.
Thanks again. |
|
|
|
|
loraxx
|
Posted:
Sat Jan 26, 2008 11:18 pm |
|
Thanks again for helping. Per #2 below is a copy of MySql after full migration to ravennuke AS DESCRIBE IN MY ORIGINAL POST (I did not do this again to compare with mySQLDIFF YET as I mentioned in last post). I did use website after full migration to check stuff, made a few post, turned modules on and off, DID NOT INSTALL ANYTHING NEW JUST USED SITE
MySql after full migration to ravennuke AS DESCRIBE IN MY ORIGINAL POST (I did not do this again to compare with mySQLDIFF YET).
WITH ADD DROP TABLE OPTION ON
Code:phpMyAdmin SQL Dump
-- version 2.11.0
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 26, 2008 at 11:12 PM
-- Server version: 4.1.22
-- PHP Version: 5.2.3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `xxxxxxxxxxxxxxxxxxxxxxx`
--
-- --------------------------------------------------------
--
-- 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=35 ;-
-- Dumping data for table `nuke_modules`
--
|
|
|
|
|
|
montego
|
Posted:
Sun Jan 27, 2008 8:35 am |
|
loraxx, I tidied up your post a bit as you do not need to quote a post above if the thread is not interrupted. Also, you had duplicated the code and I also like to see code within a code block so that it doesn't make the page so long...
This table dump looks fine to me. You might want to delete you admin/modules directory and then re-upload it from the RavenNuke 2.10.00 distribution. I am just wondering if the old modules.php file is still there. |
|
|
|
|
loraxx
|
Posted:
Wed Jan 30, 2008 11:28 am |
|
Thanks for looking at my db and saying it looks good. If it looks good why did I get the error alter table nuke_modules failed?
Also, why is everything in all blocks, links, menus, control panels, config panels, forums, even posts I after I make on the raven site now centered? See my ravenuke site migration trial at http://we-are.brothers-in-arm.com/ How hard would this be to fix? Again, everything is centered.
What is the purpose or what will the following suggestion address? "You might want to delete you admin/modules directory and then re-upload it from the RavenNuke 2.10.00 distribution. I am just wondering if the old modules.php file is still there."
Many Many Many Thanks |
Last edited by loraxx on Thu Jan 31, 2008 7:27 pm; edited 1 time in total |
|
|
|
fkelly
Former Moderator in Good Standing
Joined: Aug 30, 2005
Posts: 3312
Location: near Albany NY
|
Posted:
Wed Jan 30, 2008 12:09 pm |
|
A minor thing, but since I've been staring at version numbers all morning ... it's 2.10.01 that you want. |
|
|
|
|
Gremmie
Former Moderator in Good Standing
Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA
|
Posted:
Wed Jan 30, 2008 5:58 pm |
|
loraxx wrote: |
Also, why is everything in all blocks, config panels, forums now centered? See my ravenuke site migration trial at http://we-are.brothers-in-arm.com/ How hard would this be to fix? |
RavenNuke uses XHTML 1.0 transitional, whereas most themes were coded to HTML 4.0 transitional. The centering rules changed subtly in XHTML. It will take some tweaking of your theme to put it back. |
_________________ Only registered users can see links on this board! Get registered or login! - An Event Calendar for PHP-Nuke
Only registered users can see links on this board! Get registered or login! - A Google Maps Nuke Module |
|
|
|
loraxx
|
Posted:
Thu Jan 31, 2008 7:24 pm |
|
Does this mean I have to edit every html file on my website to eliminate this centering issue? OMG that is not worth it. Is there another option? I what raven but not hours of manual editing to do so. Anybody got any ideas? |
|
|
|
|
Gremmie
|
Posted:
Thu Jan 31, 2008 7:35 pm |
|
No, you simply have to make some tweaks to your theme files. Exactly which files and how many changes depend on the theme you are trying to use.
You could also hack your header.php file and change the DOCTYPE to HTML. Do that only if you aren't concerned about compliance though. |
|
|
|
|
loraxx
|
Posted:
Thu Jan 31, 2008 7:45 pm |
|
Thanks for the good news. Any idea of what the tweaks are? I got my theme from http://www.clan-themes.co.uk/. I have no idea what to do to fix this problem. Any guidance, recommendations, pointers, manuals, etc.
MANY THANKS !!! |
|
|
|
|
Raven
Site Admin/Owner
Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Thu Jan 31, 2008 8:13 pm |
|
If you notice at the bottom of their home page is the following: Clan Themes is based on Raven Nuke Distribution. They use RavenNuke(tm) as their core. I'm reasonably sure if you ask them for help you will get it |
|
|
|
|
loraxx
|
Posted:
Thu Jan 31, 2008 9:21 pm |
|
Raven wrote: | If you notice at the bottom of their home page is the following: Clan Themes is based on Raven Nuke Distribution. They use RavenNuke(tm) as their core. I'm reasonably sure if you ask them for help you will get it |
I have the ball rolling. In addition, I found an old post that indicated there themes are based on HTML and not XHTML ( http://www.clan-themes.co.uk/ftopict-947-xhtml.html ). However, the post is old and I'm hoping they will respond with good news.
link to my themes creator for status on situation. NOTE, the link to the HTML not XHTML statement is in the link below also.
http://www.clan-themes.co.uk/ftopict-2811-.html
I'm hoping for the best |
|
|
|
|
loraxx
|
Posted:
Fri Feb 01, 2008 11:39 am |
|
Clan-Themes is awesome, they have the fix. For the record clan-theme DOES have the fixes to make the centering issue go away. My site migration is nearly complete, YES !!!! I can't wait. I'm going to raven, yaa-whooo |
|
|
|
|
Raven
|
Posted:
Fri Feb 01, 2008 1:56 pm |
|
Would you either post the fixes or ask the admin at clan-themes to post it here so I can make it a Sticky? Thanks! |
|
|
|
|
loraxx
|
Posted:
Fri Feb 01, 2008 4:04 pm |
|
Raven,
I would love to provide the fixes; however, they did not tell me the changes. They gave me 6 files to FTP to my site (4 for root dir. under my theme and 2 for <my theme>/forums). I'm assuming if the changes were simple they would have told me what lines I had to adjust. I will ask them for more details and mention your request. |
|
|
|
|
Raven
|
Posted:
Fri Feb 01, 2008 11:35 pm |
|
Or, send me your 6 original files and the 6 new ones and I will run a compare |
|
|
|
|
loraxx
|
Posted:
Sat Feb 02, 2008 1:02 am |
|
Raven,
I will send 2 X 6 files. How shall I send them? I will try to PM them to you after this post. I will email if I can find your email. Please let me know what you find.
http://bia.brothers-in-arm.com/ |
Last edited by loraxx on Sat Feb 02, 2008 8:36 am; edited 1 time in total |
|
|
|
Raven
|
Posted:
Sat Feb 02, 2008 1:19 am |
|
These issues will need to be worked out with the support site.
Zip them and email to ravenwebservices AT everestkc DOT net |
|
|
|
|
loraxx
|
Posted:
Sat Feb 02, 2008 7:41 am |
|
|
|
|
loraxx
|
Posted:
Sat Feb 02, 2008 8:41 am |
|
Per your request I have forwarded the before and after files related to the raven incompatibility issue I had with my custom theme. Please forward anything you find I should know. Again thanks for your attention.
FOR THE RECORD, clan-themes (my theme provider) did an OUTSTANDING job supporting me with this theme and as you can see has provided me all the fixes required to make the theme I bought from them compatible with raven 2.10.01. They are very professional and I rate them a 5 out of 5 stars.
LORAXX |
|
|
|
|
|