WebsiteBaker Community Forum
General Community => WebsiteBaker Website Showcase => Topic started by: BeefStake on August 15, 2007, 12:14:21 PM
-
I've recently gone on a CMS trying spree...
I'm very impressed with the flexibility of WebsiteBaker, and its simple template structure.
Anyways here goes http://beefstake.kicks-ass.org
Sorry if its a bit slow its running on my linux box at home.
-
Looks weird here, mioght have to do with a choice of localhost??
<title>BeefStake Designs - Home</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href="http://localhost/wb/templates/round/screen.css" rel="stylesheet" type="text/css" media="screen" />
<link href="http://localhost/wb/templates/round/print.css" rel="stylesheet" type="text/css" media="print" />
</head>
Good luck,
John
-
I'm on it...
Does anyone see pics...
or can i have a screenie??
-
Hi,
the path to your CSS is broken, 'cause you defined it as "localhost".
localhost can't be accessed from the web.
You have to use the "real" URL in your config.php
If you prefere to work local via localhost and also give others a view - make the site reachable from the Internet - you can use somthing like this in your config.php
define('WB_PATH', dirname(__FILE__));
define('WB_URL', 'http://'.$_SERVER['SERVER_NAME'].'/wb');
define('ADMIN_PATH', WB_PATH.'/admin');
define('ADMIN_URL', 'http://'.$_SERVER['SERVER_NAME'].'/wb/admin');
Regards Bernd