Page 1 of 1

Upgrade: 1.0.2. -> 1.4.1 (Multilanguage) failes

Posted: Wed Sep 03, 2008 11:30 am
by fooBar
Hey,

I was using 1.0.2. ( as multilanguage edition). Now I downloaded the 1.4.1 ML build, copied every file to the directory (overwriting existing ones), called %site%/install/upgrade.php, everything worked fine, the scheme of the db and everything was updated correctly, but when callig the site, I'm getting an 404error, the html code is the following:

Code: Select all

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<__html><head>
<title>404 Not Found</title>
</head></__body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<__body></__html>
When calling admin-center, it works, but there're also some errors:
http://img293.imageshack.us/img293/5564 ... e03wp2.jpg -> no contents/titles etc, but structure is ok!
http://img293.imageshack.us/img293/4695 ... e05fu8.jpg -> when I click on one of the three arrows in the content-overview (for editing one of the 3 languages), it looks like this...

my installed modules:
http://img205.imageshack.us/my.php?imag ... e02dr4.jpg

what's the matter? thanks a lot!

Edit: I have a htaccess file since I used nicer urls (mod_rewrite), but even when disabling the entries in the htaccess file, it doesn't work)

Edit2:
Config for pretty urls looks liek:

Code: Select all

#Show mod_rewrite URLs in the menu? You must enable 'use_hierarchy' for this to work for modules
$config['assume_mod_rewrite'] = true;

#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '.html';

#If you don't use mod_rewrite, then would you like to use the built-in
#pretty url mechanism?  This will not work with IIS and the {metadata} tag
#should be in all of your templates before enabling.
$config['internal_pretty_urls'] = false;

#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy?  (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = false;

#If using none of the above options, what should we be using for the query string
#variable?  (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';
and the code in the htacces-file:

Code: Select all

#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off

# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On

#Rewrites page.shtml as index.php?page
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
Edit3: No combination of mod_rewrite activating/deactivating works ...
I read this forum a lot and tried to set:

$config['debug'] = true;

but just the same 404error as above.

I looked into the error-log of apache: no entry...
the sites/contents are still in the database so there's nothing corrupted ...

Edit4: Seems to really depend on the system...I'm able to call a static file in the cms-folder so this is not the prob!

Re: Upgrade: 1.0.2. -> 1.4.1 (Multilanguage) failes

Posted: Wed Sep 03, 2008 2:00 pm
by alby
fooBar wrote: I was using 1.0.2. ( as multilanguage edition). Now I downloaded the 1.4.1 ML build, copied every file to the directory (overwriting existing ones), called %site%/install/upgrade.php, everything worked fine, the scheme of the db and everything was updated correctly, but when callig the site, I'm getting an 404error, the html code is the following:
Have you read the changed config_lang from 1.02?

Alby

Re: Upgrade: 1.0.2. -> 1.4.1 (Multilanguage) failes

Posted: Wed Sep 03, 2008 7:05 pm
by fooBar
NO i didn't and since I had to hurry up, upgrading to a newer version, I manually reinstalled and copiy & pasted every entry/content/template/style :-(

but thanks though ... probably this would have been the solution ... :(

edit: perhaps just include this into the readme of the cms multilanguage release as a file called "UPGRADE_INSTRUCTIONS" or something like that! :-)

Re: Upgrade: 1.0.2. -> 1.4.1 (Multilanguage) failes

Posted: Wed Sep 03, 2008 8:09 pm
by alby
fooBar wrote: edit: perhaps just include this into the readme of the cms multilanguage release as a file called "UPGRADE_INSTRUCTIONS" or something like that! :-)
Hummm

in README.FIRST there is:

*  **************  *
*  INSTALL & TIPS  * 
*  **************  *
  * Changelog to http://forum.cmsmadesimple.org/index.ph ... l#msg76062
  * Read install miniHOWTO to http://forum.cmsmadesimple.org/index.ph ... l#msg78062
  * VISUAL TUTORIALS for new install CMSMS and MLE to http://wiki.cmsmadesimple.org/index.php ... _Tutorials
  * (Thanks to neelesh) there is a "Installation and Trouble Shooting" doc to http://forum.cmsmadesimple.org/index.ph ... l#msg81680
  * There are many tips to http://forum.cmsmadesimple.org/index.ph ... l#msg78114 and later
Alby

Re: Upgrade: 1.0.2. -> 1.4.1 (Multilanguage) failes

Posted: Wed Sep 03, 2008 11:42 pm
by fooBar
ok I see! thanks, my bad ...!!!