Big upgrade -> from 0.10.3 to 1.7.*
Big upgrade -> from 0.10.3 to 1.7.*
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
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.*
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
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
Last edited by Jos on Wed May 26, 2010 11:13 am, edited 1 time in total.
Re: Big upgrade -> from 0.10.3 to 1.7.*
how to import data as Db ?
Re: Big upgrade -> from 0.10.3 to 1.7.*
Wouldn't do that...
How many pages does your site have?
How many modules are active?
How many items are in the modules?
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.*
50 pagesJos wrote: Wouldn't do that...
How many pages does your site have?
How many modules are active?
How many items are in the modules?
11 modules active
200 items on modules
Re: Big upgrade -> from 0.10.3 to 1.7.*
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.*
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
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.*
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.*
yes, I can.. but PHPLayers manage also the vertical menù (js) :/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.
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.*
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.
JavaScript is just to be included in template everything else will do browser.
Re: Big upgrade -> from 0.10.3 to 1.7.*
Don't found ATM menu managerPeciura 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.
Try to copy js and stylesheet link but not work :/
Re: Big upgrade -> from 0.10.3 to 1.7.*
Layout » Menu ManagerDon't found ATM 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.*

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.*
This is table 'cms_module_banners' structure of Banners 2.3.3
Add missing columns by hand.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;