<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Forum posts to 'Archive'</title>
		<link>http://www.silverstripe.org/archive/rss</link>
		<atom:link href="http://www.silverstripe.org/archive/rss" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=16#post163149</link>
			<description>&lt;p&gt;I am searching all over these forums for a way to get around a fatal error that I keep receiving upon installation:&lt;/p&gt;&lt;p&gt;Fatal error: Class MySQLQuery cannot extend from interface Query in /mywebserverpath/www/silverstripe/sapphire/core/model/MySQLDatabase.php on line 452&lt;/p&gt;&lt;p&gt;I've made all of the modifications listed above and nothing helps.  Please help me determine what is causing this problem.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=16#post163149&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=16#post163149&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 08 Sep 2008 05:26:34 +1200</pubDate>
			<dc:creator>wifiman</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=16#post163149</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=16#post129965</link>
			<description>&lt;p&gt;But You're not on home.pl&lt;/p&gt;&lt;p&gt;I wrote about problem with their servers.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=16#post129965&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=16#post129965&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sun, 27 Jul 2008 02:46:44 +1200</pubDate>
			<dc:creator>daresh</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=16#post129965</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=16#post129962</link>
			<description>&lt;p&gt;Actually solved this issue by just installing in the root.  Install instructions on SS should probably be more specific&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=16#post129962&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=16#post129962&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sun, 27 Jul 2008 02:42:28 +1200</pubDate>
			<dc:creator>jaytay</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=16#post129962</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post129952</link>
			<description>&lt;p&gt;Hey!&lt;/p&gt;&lt;p&gt;I had the same problem while installing SilverStripe on my server at home.pl.&lt;/p&gt;&lt;p&gt;I've contacted  my administrator and he made the following changes:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt; Modified .htaccess to:&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;RewriteEngine On&lt;/p&gt;&lt;p&gt;RewriteCond %{REQUEST_URI} !(.gif)|(.jpg)|(.png)|(.css)|(.js)|(.php)$&lt;br /&gt;RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;RewriteRule ^(.*)$ sapphire/main.php?url=$1&amp;amp;%{QUERY_STRING} [L]&lt;/p&gt;&lt;p&gt;RewriteCond %{REQUEST_FILENAME} index..* [NC]&lt;br /&gt;RewriteRule .* sapphire/main.php?url=/ [L]&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; In file 'sapphire/core/control/Controller.php' modified the function redirect()&lt;/p&gt;&lt;p&gt;from: &lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;function redirect($url) {&lt;br /&gt;                if($this-&amp;gt;response-&amp;gt;getHeader('Location')) {&lt;br /&gt;                        user_error(&quot;Already directed to &quot; . $this-&amp;gt;response-&amp;gt;getHeader('Location') . &quot;; now trying to direct to $url&quot;, E_USER_WARNING);&lt;br /&gt;                        return;&lt;br /&gt;                }&lt;/p&gt;&lt;p&gt;                // Attach site-root to relative links, if they have a slash in them&lt;br /&gt;                if($url == &quot;&quot; || $url[0] == '?' || (substr($url,0,4) != &quot;http&quot; &amp;amp;&amp;amp; $url[0] != &quot;/&quot; &amp;amp;&amp;amp; strpos($url,'/') !== false)){&lt;br /&gt;                        $url = Director::baseURL() . $url;&lt;br /&gt;                }&lt;/p&gt;&lt;p&gt;                $this-&amp;gt;response-&amp;gt;redirect($url);&lt;br /&gt;        }&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;to: &lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;function redirect($url) {&lt;br /&gt;                if($this-&amp;gt;response-&amp;gt;getHeader('Location')) {&lt;br /&gt;                        user_error(&quot;Already directed to &quot; . $this-&amp;gt;response-&amp;gt;getHeader('Location') . &quot;; now trying to direct to $url&quot;, E_USER_WARNING);&lt;br /&gt;                        return;&lt;br /&gt;                }&lt;/p&gt;&lt;p&gt;                // Attach site-root to relative links, if they have a slash in them&lt;br /&gt;                if($url == &quot;&quot; || $url[0] == '?' || (substr($url,0,4) != &quot;http&quot; &amp;amp;&amp;amp; $url[0] != &quot;/&quot; &amp;amp;&amp;amp; strpos($url,'/') !== false)){&lt;br /&gt;                        $url = Director::baseURL() . $url;&lt;br /&gt;                }&lt;/p&gt;&lt;p&gt;                // Zmiana typu przekierowania&lt;br /&gt;                if(substr($url, 0, 1) == '/') {&lt;br /&gt;                     $url = 'http://' . $_SERVER[HTTP_HOST] . $url;&lt;br /&gt;                }&lt;/p&gt;&lt;p&gt;                $this-&amp;gt;response-&amp;gt;redirect($url);&lt;br /&gt;        }&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt; Line 91 in file core/ManifestBuilder.php has been commented out&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$baseDir = ereg_replace(&quot;/[^/]+/\\.\\.&quot;, &quot;&quot;, $baseDir);&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;And it now works fine!  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Question to Core Developers:&lt;/strong&gt; Will I experience any future problems because of the changes?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post129952&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post129952&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sun, 27 Jul 2008 02:28:55 +1200</pubDate>
			<dc:creator>daresh</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post129952</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post79528</link>
			<description>&lt;p&gt;Howdy,&lt;br /&gt;I have a similar problem as I would like to have my website not have the SS directory in the url structure (ie &lt;a href=&quot;http://www.myurl.com/silverstripe/home&quot;&gt;www.myurl.com/silverstripe/home&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Should I have installed SS in the root rather than a separate directory per the installation instructions?  &lt;/p&gt;&lt;p&gt;I am installed on Dreamhost with PHP5&lt;br /&gt;Thanks!&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post79528&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post79528&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Thu, 29 May 2008 03:59:36 +1200</pubDate>
			<dc:creator>jaytay</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post79528</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post66848</link>
			<description>&lt;p&gt;hi snecz,&lt;/p&gt;&lt;p&gt;Sorry you can't install SilverStripe on your particular host.&lt;/p&gt;&lt;p&gt;After doing a bit of research, it turns out that IdeaWebServer doesn't support .htaccess/mod_rewrite in the way that SS is set up to do so, specifically for Apache/Lighthttpd. It's very hard to find documentation on it in fact, because it's developed in-house for the Polish host home.pl, and so it's hard to determine exactly why there's a problem here. I've tried searching &lt;em&gt;&quot;ideawebserver .htaccess&quot;&lt;/em&gt; on Google. I wish I could read the result websites, but they're all in Polish!&lt;/p&gt;&lt;p&gt;SilverStripe currently only supports &lt;em&gt;Apache&lt;/em&gt; and &lt;em&gt;lighthttpd&lt;/em&gt; for HTTP servers. Here are the server requirements for SilverStripe on our wiki:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://doc.silverstripe.com/doku.php?id=server-requirements&quot;&gt;http://doc.silverstripe.com/doku.php?id=server-requirements&lt;/a&gt;&lt;/p&gt;&lt;p&gt;As you can see, there's a summary on the HTTP server requirements: &lt;em&gt;&quot;We currently support Apache and lighttpd. You could probably get it going on IIS, but we currently donâ€™t provide support for this.&quot;&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;The trouble with your particular host is the HTTP server it's running, that being IdeaWebServer. I believe the problem is the way SilverStripe re-writes the URLs, as there are specific rules to determine how the server should be displaying the URLs, for example, there's no real way to go to say, &lt;a href=&quot;http://mysite.com/home.html&quot;&gt;http://mysite.com/home.html&lt;/a&gt; in SilverStripe - which is probably why other CMS' work on this particular server.&lt;/p&gt;&lt;p&gt;I would suggest finding a host that uses Apache as the HTTP server to use SilverStripe, because it's very difficult to know how to debug one that doesn't have much widely known documentation available on the internet.&lt;/p&gt;&lt;p&gt;Cheers,&lt;br /&gt;Sean&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post66848&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post66848&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 07 May 2008 16:03:21 +1200</pubDate>
			<dc:creator>Sean</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post66848</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post66710</link>
			<description>&lt;p&gt;Thanks for your advices.&lt;br /&gt;I changed .htaccess file (in ss catalogue) and added line as you sugested RewriteBase /silverstripe.&lt;br /&gt;But still nothing...&lt;br /&gt;What can I do more?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post66710&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post66710&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Wed, 07 May 2008 06:10:02 +1200</pubDate>
			<dc:creator>snecz</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post66710</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post66224</link>
			<description>&lt;p&gt;Yes, that's probably the main problem now that we know the webserver is not apache2, though you would still need the line in .htaccess I think... (if the server was apache2)&lt;/p&gt;&lt;p&gt;Keep that in mind if you change host (the problem does seem to be unresolved in the other thread)&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post66224&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post66224&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 06 May 2008 04:37:30 +1200</pubDate>
			<dc:creator>saimo</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post66224</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post66202</link>
			<description>&lt;p&gt;Seems that host is running an obscure HTTP server.. &lt;br /&gt;IdeaWebServer ??&lt;/p&gt;&lt;p&gt;You are not the first one to report this , please have a look @ this thread :&lt;br /&gt;&lt;a href=&quot;http://www.silverstripe.com/site-builders-forum/flat/2010&quot;&gt;http://www.silverstripe.com/site-builders-forum/flat/2010&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post66202&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post66202&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 06 May 2008 03:26:52 +1200</pubDate>
			<dc:creator>Fuzz10</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post66202</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=8#post66180</link>
			<description>&lt;p&gt;This looks like a mod_rewrite issue.&lt;/p&gt;&lt;p&gt;Try adding this below the 'RewriteEngine On' line in your .htaccess file:&lt;br /&gt;RewriteBase   /xyz&lt;/p&gt;&lt;p&gt;where 'xyz' is the base directory of the installation i.e. 'silverstripe'&lt;br /&gt;RewriteBase   /silverstripe&lt;/p&gt;&lt;p&gt;NOTE: I have not tested this, since I do not need this for my servers, but I believe this should be correct.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=8#post66180&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=8#post66180&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 06 May 2008 02:24:21 +1200</pubDate>
			<dc:creator>saimo</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=8#post66180</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65809</link>
			<description>&lt;p&gt;Can somebody help me with this?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65809&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65809&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 05 May 2008 06:25:19 +1200</pubDate>
			<dc:creator>snecz</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65809</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65463</link>
			<description>&lt;p&gt;I've decided to move to an easier to install CMS&lt;/p&gt;&lt;p&gt;Good Luck!&lt;br /&gt;(Coy435)&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65463&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65463&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sun, 04 May 2008 08:42:14 +1200</pubDate>
			<dc:creator>Coy435</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65463</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65388</link>
			<description>&lt;p&gt;I've tried the above steps and still have the same issue too.  After installing with no errors, I get the install.php running again and again.&lt;/p&gt;&lt;p&gt;I first installed v2.2.1 and got the continuing install.php after a full install, so I went and got v2.2.2 rc3 and tried it.  The same thing.&lt;/p&gt;&lt;p&gt;Public link - &lt;a href=&quot;http://www.vfog.com/52cuz&quot;&gt;http://www.vfog.com/52cuz&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Hope to find a fix.  The front page said SilverStripe was easy to install.  I'm beginning to wonder if this is true!.&lt;/p&gt;&lt;p&gt;(Coy435)&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65388&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65388&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sun, 04 May 2008 06:41:59 +1200</pubDate>
			<dc:creator>Coy435</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65388</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65248</link>
			<description>&lt;p&gt;It's not local.&lt;br /&gt;Here it's: &lt;a href=&quot;http://www.powisle.home.pl/silverstripe&quot;&gt;http://www.powisle.home.pl/silverstripe&lt;/a&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65248&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65248&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 03 May 2008 20:21:01 +1200</pubDate>
			<dc:creator>snecz</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65248</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65243</link>
			<description>&lt;p&gt;Do you have a link I can try or is it a local installation?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65243&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65243&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 03 May 2008 20:12:52 +1200</pubDate>
			<dc:creator>willr</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65243</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65236</link>
			<description>&lt;p&gt;Thanks willr but still nothing - I mean still /install.php&lt;br /&gt;I've tried in Opera and FF.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65236&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65236&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 03 May 2008 20:08:28 +1200</pubDate>
			<dc:creator>snecz</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65236</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65165</link>
			<description>&lt;p&gt;after you install it try going to yoursite.com/home/?flush=1. It appears there might be a caching issue installation, most noticeably this occurs in safari. Just try the above step then try emptying your browser cache and then viewing that page&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65165&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65165&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 03 May 2008 18:24:23 +1200</pubDate>
			<dc:creator>willr</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65165</guid>
		</item>
		
		<item>
			<title>Re: Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989?start=0#post65123</link>
			<description>&lt;p&gt;I have the same problem and was hoping to find and answer.&lt;/p&gt;&lt;p&gt;Please help.&lt;/p&gt;&lt;p&gt;Install went fine, no errors - but when trying to start SS I get sent back to the install screen.&lt;/p&gt;&lt;p&gt;Thanks.&lt;br /&gt;(Coy435)&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989?start=0#post65123&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/reply/64989?start=0#post65123&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 03 May 2008 16:53:35 +1200</pubDate>
			<dc:creator>Coy435</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989?start=0#post65123</guid>
		</item>
		
		<item>
			<title>Installation problem</title>
			<link>http://www.silverstripe.org/archive/show/64989#post64989</link>
			<description>&lt;p&gt;Hello, I have just discovered SilverStripe. I've downloaded the files on my server, created the database, run install.php file, put proper data of the database and database was set up properly but I can't go further. When I run the catalogue with SilverStripe I still go to install.php. I couldn't find any information about it in documentation. How can I run my just installed SilverStripe CMS?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Installation problem &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989#post64989&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/archive/show/64989#post64989&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 03 May 2008 08:51:47 +1200</pubDate>
			<dc:creator>snecz</dc:creator>
			<guid>http://www.silverstripe.org/archive/show/64989#post64989</guid>
		</item>
		

	</channel>
</rss>