WebsiteBaker Community Forum

General Community => WebsiteBaker Website Showcase => Topic started by: BeefStake on August 15, 2007, 12:14:21 PM

Title: BeefStake Designs
Post 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.
Title: Re: BeefStake Designs
Post by: pcwacht on August 15, 2007, 12:35:40 PM
Looks weird here, mioght have to do with a choice of localhost??

Code: [Select]
<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
Title: Re: BeefStake Designs
Post by: BeefStake on August 15, 2007, 12:39:56 PM
I'm on it...
Does anyone see pics...
or can i have a screenie??
Title: Re: BeefStake Designs
Post by: BerndJM on August 15, 2007, 01:20:04 PM
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

Code: [Select]
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