<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>creacog &#187; hosting</title>
	<atom:link href="http://blog.creacog.co.uk/category/hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.creacog.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 19 Jan 2012 16:43:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Persits AspUpload, Content-type and Safari</title>
		<link>http://blog.creacog.co.uk/2010/05/01/persits-aspupload-content-type-and-safari/</link>
		<comments>http://blog.creacog.co.uk/2010/05/01/persits-aspupload-content-type-and-safari/#comments</comments>
		<pubDate>Sat, 01 May 2010 12:48:45 +0000</pubDate>
		<dc:creator>creacog</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Safari browser]]></category>

		<guid isPermaLink="false">http://blog.creacog.co.uk/?p=477</guid>
		<description><![CDATA[A quick note for anyone using legacy server-side classic ASP and the Persits AspUpload component&#8216;s sendBinary to download files to Apple&#8217;s Safari browser. I ran into a problem recently where by Safari was appending &#8220;.html&#8221; to the file name of all downloads sent via the component. e.g. test.pdf would download as test.pdf.html. There are a [...]]]></description>
			<content:encoded><![CDATA[<p>A quick note for anyone using legacy server-side classic ASP and the <a title="AspUpload" href="http://www.aspupload.com/index.html" target="_blank">Persits AspUpload component</a>&#8216;s sendBinary to download files to Apple&#8217;s Safari browser.</p>
<p>I ran into a problem recently where by Safari was appending &#8220;.html&#8221; to the file name of all downloads sent via the component. e.g. test.pdf would download as test.pdf.html. There are a couple of mentions on the apple support forums:</p>
<ul>
<li><a title="Safari: Downloaded file's filename may have an additional extension" href="http://support.apple.com/kb/TA24293" target="_blank">Safari: Downloaded file&#8217;s filename may have an additional extension</a></li>
<li><a title="Topic : Safari adds .html extension to common downloads" href="http://discussions.apple.com/message.jspa?messageID=8822297" target="_blank">Topic : Safari adds .html extension to common downloads</a></li>
</ul>
<p>PDF files downloaded directly did not suffer this problem &#8211; suggesting that the server&#8217;s mime types seem ok. Other browsers did not suffer this problem. However the problem has to be server-side. i.e. the download via the script is being sent with Content-type text/html instead of application/pdf no matter what arguments I add to the <a title="Chapter 9. Miscellaneous Features 9.1 AspUpload's Non-Upload Functionality 9.2 Secure File Downloading 9.3 Directory Listing 9.4 Interactive File Deletion 9.5 ActiveX Registration 9.6 Encryption Support 9.7 Introducing XUpload and JUpload 9.1 AspUpload's Non-Upload Functionality  AspUpload's functionality is not limited to file uploading. It is a complete file management solution. Other AspUpload features include secure file downloading, directory listing, and ActiveX registration. 9.2 Secure File Downloading" href="http://www.aspupload.com/manual_misc.html#9_2" target="_blank">sendBinary</a> call.</p>
<p>The solution seems to be to manually set the script&#8217;s Response.contentType value. i.e. the following test script works&#8230;</p>
<pre>&lt;%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%&gt;
&lt;%
    FILEPATH = "D:\WWWRoot\sitepath\www\pdftest\TEST.pdf"
    Dim upl
    Set upl = Server.CreateObject("Persits.Upload.1")

    Response.ContentType = "application/pdf"

    upl.sendbinary FILEPATH, True, "application/pdf", True
%&gt;</pre>
<p>In my case this is using AspUpload version 3.0.0.2 on a Hostway Windows 2003 Gold plan, shared hosting.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creacog.co.uk/2010/05/01/persits-aspupload-content-type-and-safari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>back online</title>
		<link>http://blog.creacog.co.uk/2009/06/13/back-online/</link>
		<comments>http://blog.creacog.co.uk/2009/06/13/back-online/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 11:47:34 +0000</pubDate>
		<dc:creator>creacog</dc:creator>
				<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://blog.creacog.co.uk/?p=212</guid>
		<description><![CDATA[After a number of days off-line following the provider having been hacked. We are now back online! Hurrah. Having moved away from LXAdmin (it worked well for a while) I can now concentrate on real work again rather than recovery.]]></description>
			<content:encoded><![CDATA[<p>After a number of days off-line following the provider having been hacked. We are now back online! Hurrah. Having moved away from LXAdmin (it worked well for a while) I can now concentrate on real work again rather than recovery.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creacog.co.uk/2009/06/13/back-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hunting a vps</title>
		<link>http://blog.creacog.co.uk/2007/05/23/hunting-a-vps/</link>
		<comments>http://blog.creacog.co.uk/2007/05/23/hunting-a-vps/#comments</comments>
		<pubDate>Wed, 23 May 2007 22:55:41 +0000</pubDate>
		<dc:creator>creacog</dc:creator>
				<category><![CDATA[hosting]]></category>
		<category><![CDATA[HyperVM]]></category>
		<category><![CDATA[LXAdmin]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://91.186.21.57/~blogcreacogcouk/?p=52</guid>
		<description><![CDATA[I&#8217;ve been a New Media developer (RIA developer in modern speak) for a fair few years. Despite a period of Web-Application development, I&#8217;ve so far managed to avoid any serious sysadmin. However I now have a number of different applications I&#8217;d like to run on-line (the likes of WordPress, Bugzilla, Drupal and others), and keep [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a New Media developer (RIA developer in modern speak) for a fair few years. Despite a period of Web-Application development, I&#8217;ve so far managed to avoid any serious <a href="http://en.wikipedia.org/wiki/System_administrator" title="sysadmin">sysadmin</a>. However I now have a number of different applications I&#8217;d like to run on-line (the likes of <a href="http://wordpress.org/" title="WordPress">WordPress</a>, <a href="http://www.bugzilla.org/" title="Bugzilla">Bugzilla</a>, <a href="http://drupal.org/" title="Drupal">Drupal</a> and others), and keep them live 24/7. None of them are high-traffic, and while I have machines at home that I could run them from, for the sake of the planet, my electricity bill, as well as the temperature, and noise in my flat, I didn&#8217;t want them running here 24/7. So the quest was on to find a <acronym title="Virtual Private Server"><a href="http://en.wikipedia.org/wiki/Vps" title="Virtual Private Server">VPS</a></acronym>, and do so without breaking the bank.</p>
<p>Obviously Googling on VPS Hosting will return loads of potential providers. Following are my notes against those I gave further examination and <a href="#finalChoice" title="My final choice">my final choice</a>.</p>
<h3>Hostway</h3>
<p>I&#8217;ve been with <a href="http://www.hostway.co.uk/" title="hostway">Hostway</a> for what seems like for-ever, both through my last &#8216;permanent&#8217; employment, and my more recent years with my own company. My main site is hosted there via a windows shared hosting account. It is relatively in-expensive, and has served me well over the years. However it doesn&#8217;t  allow me the flexibility I feel I now need. Their VPS solutions start at £39.95 / month, which is way too expensive for me. (The value of VPS with respect to my requirements is far less than that.)</p>
<h3>MediaTemple</h3>
<p>I was quite interested in <a href="http://www.mediatemple.net/" title="MediaTemple">MediaTemple</a>. A number of prominent respected bloggers are hosted by them, and they seem very much oriented to serving freelance designers and techies of my ilk. Their &#8220;<a href="http://www.mediatemple.net/webhosting/gs/" title="MediaTemple GridService">Grid-Service</a>&#8221; is a step up from a shared service &#8211; but not quite VPS. This service allows multiple domains and one-click install of loads of applications, and includes <a href="http://subversion.tigris.org/" title="Subversion">SVN</a> pre-installed. They are US based, and at $20/month the current £:$ ratio makes the pricing pretty good &#8211; especially compared with my Hostway web-share. The fear-factor for me was the mysterious <acronym title="Grid Performance Unit"><a href="http://www.mediatemple.net/webhosting/gs/faq/grid_performance_unit-faq.htm" title="Grid Performance Unit">GPU</a></acronym> measurement. I have read some bad press out there (although I think they&#8217;ve fixed most of <a href="http://weblog.mediatemple.net/weblog/2007/01/19/anatomy-of-mysql-on-the-grid/" title="mySQL issues">the mysql issues </a>that were the root of most complaints).</p>
<p>I suspected that my chances of getting Bugzilla to run in that environment, may be problematic. (It is not the most straight forward install in the world.) Admittedly I didn&#8217;t get around to asking them the question.</p>
<p>An alternative for which I&#8217;m sure I would have had no trouble installing Bugzilla is their &#8220;<a href="http://www.mediatemple.net/webhosting/dv/" title="MediaTemple Dedicated Virtual">dedicated-virtual</a>&#8221; at $50/month (20Gb disk 256Mb Ram, 1Tb bandwidth) seemed worth a look and good value compared with Hostway&#8217;s VPS. However I really wanted the server based in the UK if at all possible.</p>
<h3>WebFusion</h3>
<p>I had a look at <a href="http://www.webfusion.co.uk/virtual-private-servers/" title="WebFusion">WebFusion</a>. Starting at £19.95/month for &#8220;VPS value&#8221; seemed worth investigating. I&#8217;m generally happy with <a href="http://www.123-reg.co.uk/" title="123-reg">123-reg</a> (part of the same group). However I&#8217;ve had a  bad experience with WebFusion in the distant past. Since they were bought out by <a href="http://www.pipex.com/" title="Pipex">Pipex</a>  I thought they&#8217;d be worth a fresh look. A cursory glance shows that pre-installed software is quite old &#8211; PHP4, MySQL 3.23.58. A quick google-around revealed a couple of complaints of <a href="http://www.mattbrindley.com/misc/webfusion-an-example-of-awful/" title="WebFusion - An Example of Awful Support">poor support</a>, and an <a href="http://www.webhostingtalk.com/showthread.php?t=466618" title="Webfusion VPS - My shocking experience.">unresponsive VPS</a> over a prolonged period of time. These complaints made me somewhat less interested.</p>
<h3>ByteMark</h3>
<p>Following a thread in the <a href="http://workalone.co.uk/mailman/listinfo/wauk_workalone.co.uk" title="WAUK mail list"><acronym title="Work Alone in the UK">WAUK</acronym> mailing list</a>, a colleague made a valued  recommendation for <a href="http://www.bytemark.co.uk/" title="ByteMark">ByteMark</a>.</p>
<blockquote><p>You essentially start with a 150MB (RAM) machine, 10GB disk, 50GB traffic at £15/month but can grow it if you need to. The machines are in the UK (helps with things like data protection).</p></blockquote>
<p>This is for a plain VPS. I&#8217;m not a sysadmin (nor do I wish to be one), and while I can cope with Apache config, I&#8217;d be a complete newbie as regards DNS and email etc, so thought I&#8217;d really need/benefit from a control panel. The only black mark against using ByteMark for this is that I&#8217;d need help finding and installing such a control panel.</p>
<h3><a title="finalChoice" name="finalChoice" id="finalChoice"></a>CheapVPS</h3>
<p>I chanced upon <a href="http://www.cheapvps.co.uk/" title="CheapVPS">CheapVPS</a>. Normally a name like that would deter me immediately. But I thought it worth a punt, with the pricing for an entry level Linux plan:</p>
<blockquote><p>128Mb ram<br />
5Gb disc<br />
150Gb band<br />
£4.75 / month</p></blockquote>
<p>The server is in the UK. It is implemented with  <a href="http://lxlabs.com/software/hypervm/full-feature/" title="HyperVM">HyperVM</a> which allows you to install the <a href="http://lxlabs.com/software/lxadmin-sse/full-feature/" title="LXAdmin">LXAdmin</a> control panel which itself includes an application installer for a load of stuff including WordPress 2.1, Drupal 5.1 etc.</p>
<p>After playing around with it for a few days, I got a couple of plain sites, a test WordPress site and Bugzilla running. I am pretty happy with progress so far. I&#8217;ll follow up later with a post on installing Bugzilla into this system, as it did take me 3 attempts to get it right.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.creacog.co.uk/2007/05/23/hunting-a-vps/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

