the first page, everything is green except in the php mods i have no openssl, no mbstring and no iconv extensions..
other than that its all green...
proceed to expert installation, change only the db username and dbname/pass, and hit the complete install button... and nothing...
my .htaccess has
php_flag register_globals OFF
php_flag magic_quotes_gpc OFF
php_flag session.use_trans_sid OFF
php_flag display_errors on
php_value post_max_size 10M
php_value upload_max_filesize 10M
and no errors are output... i get a blank page with the url = http://{myhost site}/serendipity_admin.php?
and a nice gradiated title screen saying "Serendipity Installation"..
the source is cutoff.. its weird...
Code: Select all
<html>
<head>
<title>Serendipity Administration Suite</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link rel="stylesheet" type="text/css" href="serendipity.css.php?serendipity[css_mode]=serendipity_admin.css" />
<script type="text/javascript">
function spawn() {
if (self.Spawnextended) {
Spawnextended();
}
if (self.Spawnbody) {
Spawnbody();
}
if (self.Spawnnugget) {
Spawnnugget();
}
}
function SetCookie(name, value) {
var today = new Date();
var expire = new Date();
expire.setTime(today.getTime() + (60*60*24*30));
document.cookie = 'serendipity[' + name + ']='+escape(value) + ';expires=' + expire.toGMTString();
}
</script>
</head>
<body id="serendipity_admin_page" onload="spawn()">
<table cellspacing="0" cellpadding="0" border="0" id="serendipityAdminFrame">
<tr>
<td colspan="2" id="serendipityAdminBanner">
<h1>Serendipity Installation</h1>
</td>
</tr>
<tr>
<td colspan="2" id="serendipityAdminInfopane">
</td>
</tr>
<tr valign="top">
<td class="serendipityAdminContent" colspan="2">
the only difference I can see is that when i ssh into the box the cwd is
/home3/www/{hostname}/serendipity/
but the s9y config lists it as
/www3/{hostname}/serendipity/
using either gives same result...
one thing that isnt explained is the "relative path" which is listed as "/serendipity/" but doesnt explaint what its relative to, my url? which already has a /serendipity/ on the end or the full path, which also already has a /serendipity/ on the end... or is it relative to the web root of my site?