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>
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';
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]
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!