Ok, I found the problem. In my opinion it is either quite a big bug or I did something wrong.
Right after the upgrade after I followed the instructions (including creating a new category) the new redirect URL code looks like this:
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Website title</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="revisit-after" content="10 days">
<meta name="robots" content="INDEX, FOLLOW">
</head>
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
<a href="http://destination URL">Click here to ...</a>
</body>
</noframes>
</html>
As you can see, there is something very wrong with this code. After I went to the admin.php and "edited" the particular subdomain by simply clicking on the Save button, the code looked like this:
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Website title</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="revisit-after" content="10 days">
<meta name="robots" content="INDEX, FOLLOW">
</head>
<frameset rows="100%,*" frameborder="NO" border="0" framespacing="0">
<frame name="main" src="http://destination URL">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
<a href="http://destination URL">Click here to...</a>
</body>
</noframes>
</html>
It is not a big deal for me because I do not have my active accounts, I can edit each of the account by hand but for those with 100s or 1000s of active accounts it could be a problem.
Tomas