Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: _Eric_I'm running 550. It seems to be happening in lines 310-313 in install-functions.php.Yep, I did notice that. I'll commit the change back to the SVN trunk. That was in there related to forcing a 'www' for the mod_rewrite issues, but doesn't work if you are installing locally or with a subdomain. We'll have to add an option in the Admin section to allow users to force the 'www' or not. For now, I'll just comment it out.
$config = mysql_fetch_assoc($result);
$config["basedir"] = $plog_basedir;
and in between those two lines, try adding the following code:$config = mysql_fetch_assoc($result);
$config["gallery_url"] = "http://".$_SERVER['HTTP_HOST']. substr($_SERVER['PHP_SELF'],0,strrpos($_SERVER['PHP_SELF'],"/")) . "/";
$config["basedir"] = $plog_basedir;
1 to 11 of 11