Page 1 of 2
Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:06 am
by webstyler
Hello
we need to upgrade a old version (0.10.3) to last current release (1.7.*)
we have check on file version.php for get installed release think this is best way
so
What is best way to make this upgrade ?
fresh install or files upgrade ? Module will be lost ?
Thanks for any help / suggest
ws
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:11 am
by Jos
a LOT has changed since then ;)
If there is not too much content involved, I would do a complete fresh install.
If you want to try an upgrade first, then search the forum... this has been discussed many times before but with slightly different versions
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:13 am
by webstyler
how to import data as Db ?
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:17 am
by Jos
Wouldn't do that...
How many pages does your site have?
How many modules are active?
How many items are in the modules?
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:24 am
by webstyler
Jos wrote:
Wouldn't do that...
How many pages does your site have?
How many modules are active?
How many items are in the modules?
50 pages
11 modules active
200 items on modules
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:25 am
by Jos
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Wed May 26, 2010 11:58 am
by Peciura
webstyler: build copy of original site on localhost and try to upgrade it first. Than you can move it to server.
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Thu Jun 10, 2010 8:35 am
by webstyler
Hello
we have upgrade to last stable release
now, the issue is with any module that still not supported
Site use PHPlayers and seems not supported by 1.7.1
without this modules there aren't all site css
:/
any solutions ?
tx
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Thu Jun 10, 2010 9:44 am
by Peciura
Never used PHPLayers. Can you copy CSS working back up site ? Web Developer Toolbar (FF plugin) can display all CCS in one page.
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Thu Jun 10, 2010 9:49 am
by webstyler
Peciura wrote:
Never used PHPLayers. Can you copy CSS working back up site ? Web Developer Toolbar (FF plugin) can display all CCS in one page.
yes, I can.. but PHPLayers manage also the vertical menù (js) :/
Think this could be solved with CSSMenu but when try to install get error:
Fatal error: Class 'StylesheetOperations' not found in /home/**/public_html/modules/CSSMenu/CSSMenu.module.php on line 68
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Fri Jun 11, 2010 4:37 am
by Peciura
ATM Menu manager copes with most menu related tasks. It might be a bit tricky to deal with singledimensional array to build multilevel menu, but there are some default templates that could serve as good examples.
JavaScript is just to be included in template everything else will do browser.
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Fri Jun 11, 2010 6:37 am
by webstyler
Peciura wrote:
ATM Menu manager copes with most menu related tasks. It might be a bit tricky to deal with singledimensional array to build multilevel menu, but there are some default templates that could serve as good examples.
JavaScript is just to be included in template everything else will do browser.
Don't found ATM menu manager
Try to copy js and stylesheet link but not work :/
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Fri Jun 11, 2010 8:35 am
by Peciura
Don't found ATM menu manager
Layout » Menu Manager
Try MenuManager of CMSms demo on
http://php.opensourcecms.com/scripts/de ... scriptid=9
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Sat Jun 12, 2010 7:28 am
by webstyler
last step ..
Banners >>
ERROR: could not find an image to display Errore: Errore Database! Unknown column 'start_date' in 'where clause'
Banners module is update to last release
also update to existing banners seems give error but not return text
maybe an issue on db schema of banner..
Re: Big upgrade -> from 0.10.3 to 1.7.*
Posted: Sat Jun 12, 2010 9:05 am
by Peciura
This is table 'cms_module_banners' structure of Banners 2.3.3
CREATE TABLE IF NOT EXISTS `cms_module_banners` (
`banner_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`name` varchar(80) COLLATE utf8_general_ci NOT NULL,
`description` varchar(255) COLLATE utf8_general_ci DEFAULT NULL,
`image` varchar(255) COLLATE utf8_general_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8_general_ci DEFAULT NULL,
`text` text COLLATE utf8_general_ci,
`created` datetime NOT NULL,
`expires` datetime DEFAULT NULL,
`max_impressions` int(11) DEFAULT NULL,
`num_impressions` int(11) NOT NULL DEFAULT '0',
`href_text` varchar(255) COLLATE utf8_general_ci DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
PRIMARY KEY (`banner_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
Add missing columns by hand.