<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[eUKhost's Official Web Hosting Forum]]></title>
		<link>http://forums.eukhost.com/</link>
		<description><![CDATA[eUKhost's Official Web Hosting Forum delivering information on website hosting, web servers, storage, virtualization and cloud solution on Linux and Windows Server platform]]></description>
		<language>en</language>
		<lastBuildDate>Wed, 16 May 2012 14:35:43 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>http://forums.eukhost.com/images/misc/rss.png</url>
			<title><![CDATA[eUKhost's Official Web Hosting Forum]]></title>
			<link>http://forums.eukhost.com/</link>
		</image>
		<item>
			<title>Michael B is a diamond</title>
			<link>http://forums.eukhost.com/f24/michael-b-diamond-16997/</link>
			<pubDate>Tue, 15 May 2012 21:24:27 GMT</pubDate>
			<description>would like to pass my thanks to Michael B this evening...  I was stuck on something, and although outside of his support scope Michael chipped away...</description>
			<content:encoded><![CDATA[<div>would like to pass my thanks to Michael B this evening...  I was stuck on something, and although outside of his support scope Michael chipped away at my issue ( I guess on the back burner whilst assisting proper support requests)...  He did though fix our issue....  so would like to pass our thanks via here too....<br />
<br />
Thanks again Michael B...<br />
<br />
<br />
Welshy</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f24/">Customer Testimonials</category>
			<dc:creator>Welshy</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f24/michael-b-diamond-16997/</guid>
		</item>
		<item>
			<title>Wrong version of Rails error</title>
			<link>http://forums.eukhost.com/f39/wrong-version-rails-error-16996/</link>
			<pubDate>Tue, 15 May 2012 20:18:12 GMT</pubDate>
			<description><![CDATA[Hello. 
 
I'm a beginner at Rails. I've a shared server with Ruby etc, & Rails is installed. When I go to cpanel > RoR > create, I get: 
 
...]]></description>
			<content:encoded><![CDATA[<div>Hello.<br />
<br />
I'm a beginner at Rails. I've a shared server with Ruby etc, &amp; Rails is installed. When I go to cpanel &gt; RoR &gt; create, I get:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Your app is NOT installed because there was a problem. Try again or contact our support team.<br />
<br />
Show Details<br />
Rails version 0.6.0 is installed. However, version 2.3.14 is required. Please contact your web hosting provider to have Rails updated.
			
		<hr />
	</div>
</div>This is very odd - the Rails gem is 2.3.12. I've reinstalled it, to no effect. I'm tempted to uninstall it &amp; reinstall, but &quot;first do no harm&quot;, so I haven't.<br />
<br />
What does this error mean? I haven't raised a ticket 'cos I'm pretty sure it's something obvious I haven't done, and, well, I got my pride. Any ideas, anyone?<br />
<br />
Robert</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f39/">Ruby on Rails</category>
			<dc:creator>Maggot</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f39/wrong-version-rails-error-16996/</guid>
		</item>
		<item>
			<title>How to connect to an external SQL server database in ASP.NET / VB.NET / .NET</title>
			<link>http://forums.eukhost.com/f50/how-connect-external-sql-server-database-asp-net-vbulletin-net-net-16995/</link>
			<pubDate>Tue, 15 May 2012 06:01:28 GMT</pubDate>
			<description>Connecting to databases in .NET is different if you are coming from other languages such as PHP. To connect to a database in ASP.NET / .NET in...</description>
			<content:encoded><![CDATA[<div>Connecting to databases in .NET is different if you are coming from other languages such as PHP. To connect to a database in ASP.NET / .NET in general, you use &quot;Connection Strings&quot; that essentially is the connection information to the database.<br />
<br />
First and foremost, in your code behind file within an ASP.NET application (or simply the .<acronym title="vBulletin">vb</acronym> or .cs file of your .NET desktop application), you will need to first import the namespace that has the relevant database-related classes and methods, etc.<br />
<br />
Note: All examples use the Visual Basic language, but the concept is the same for both Visual Basic and C#, for example.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Imports System.Data.SqlClient</code><hr />
</div>For ASP.NET applications, you have a Web.config file with every project or application you create, which is the main configuration file of an ASP.NET application (<a href="http://en.wikipedia.org/wiki/Web.config" target="_blank">see this</a>). The file itself is simply made up of recognised XML markup. You can have the connection string in the Web.config file if you wish, and then reference that in your appliction code:<br />
<br />
<b>Web.config:</b><br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;configuration&gt;<br />
&nbsp; &lt;connectionStrings&gt;<br />
&nbsp; &nbsp; &lt;add name=&quot;ApplicationServices&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  connectionString=&quot;Server=example.com;Initial Catalog=the_database;UID=the_user_of_db;Password=pw_here&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  providerName=&quot;System.Data.SqlClient&quot; /&gt;<br />
&nbsp; &lt;/connectionStrings&gt;<br />
&lt;/configuration&gt;</code><hr />
</div>In the application code, I made a class-level variable which gets the connection string from the Web.config file:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Dim ConnectionStringReference = ConfigurationManager.ConnectionStrings(&quot;ApplicationServices&quot;).ConnectionString</code><hr />
</div>Note: &quot;ApplicationServices&quot; is my specific ConnectionString name, but you can actually call it whatever you like.<br />
<br />
Now, in whatever method you wish to execute queries, etc., you first connect to the database and then execute the query:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> Try<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim FetchSubRows As New SqlConnection(ConnectionStringReference) 'the class-level variable ConnectionString<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubRows.Open() 'opens the connection<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim FetchQuery As String = &quot;SELECT Submission_ID, Submission_Title, Submission_Body, Submission_IP, Submission_Date FROM Submissions ORDER BY Submission_ID DESC&quot; 'the SQL string<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim ExecuteCommand As New SqlCommand(FetchQuery, FetchSubRows) 'execute the query<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim DataReader As SqlDataReader = ExecuteCommand.ExecuteReader() 'we want to &quot;read&quot; the information, since it is a SELECT statement above<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; While DataReader.Read() 'the Read() method advances to the next applicable record of fetched data...so it will continue looping until all has been returned, essentially<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Return DataReader<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End While<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If DataReader.HasRows = False Then 'has it got any actual rows?<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubmissionsError = 0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; &nbsp; &nbsp; Catch ex As SqlException 'if there was an error, perhaps with the SQL statement itself, catch this error and put it in a variable to be displayed elsewhere<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubmissionsError = -1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubmissionsErrorMessage = ex.Message<br />
&nbsp; &nbsp; &nbsp; &nbsp; End Try</code><hr />
</div>I just want to point out the Try...Catch block is actually optional. It's simply a way in which you can handle unexpected errors that may occur in that code. In that code, the most obvious error that could occur is an error caused by the SQL query, hence it will catch all SqlException errors (SqlException being a class) and put that object in the <i>ex</i> variable. More information can be found on Exception Handlers here: <a href="!16964!http://forums.eukhost.com/f50/what-object-oriented-exceptions-exception-handlers-how-do-i-use-them-16964/" target="_blank">http://forums.eukhost.com/f50/what-o...se-them-16964/</a> (this examples uses the PHP programming language as an example, but conceptually applies the same). You can also read the MSDN resource on Try...Catch...Finally statements on the MSDN (Microsoft Developer Network): <a href="http://msdn.microsoft.com/en-us/library/fk6t46tz.aspx" target="_blank">Try...Catch...Finally Statement (Visual Basic)</a><br />
<br />
<b>Regarding the connection string</b><br />
<br />
Yes, you will need a connection string obviously. If you want to include this directly in your code, here is an example:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> Try<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim FetchSubRows As New SqlConnection(&quot;Server=example.com;Initial Catalog=the_database;UID=the_user_of_db;Password=pw_here&quot;) ' &lt;&lt; visible change is this<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubRows.Open() 'opens the connection<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim FetchQuery As String = &quot;SELECT Submission_ID, Submission_Title, Submission_Body, Submission_IP, Submission_Date FROM Submissions ORDER BY Submission_ID DESC&quot; 'the SQL string<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim ExecuteCommand As New SqlCommand(FetchQuery, FetchSubRows) 'execute the query<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dim DataReader As SqlDataReader = ExecuteCommand.ExecuteReader() 'we want to &quot;read&quot; the information, since it is a SELECT statement above<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; While DataReader.Read() 'the Read() method advances to the next applicable record of fetched data...so it will continue looping until all has been returned, essentially<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Return DataReader<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End While<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If DataReader.HasRows = False Then 'has it got any actual rows?<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubmissionsError = 0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; &nbsp; &nbsp; Catch ex As SqlException 'if there was an error, perhaps with the SQL statement itself, catch this error and put it in a variable to be displayed elsewhere<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubmissionsError = -1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FetchSubmissionsErrorMessage = ex.Message<br />
&nbsp; &nbsp; &nbsp; &nbsp; End Try</code><hr />
</div>So now you understand how to connect to external databases, this means when you are creating a local project on your machine, you can connect to an external database that may be hosted on your external Windows Server or Windows Hosting environment. You do not need to rely on a local database on your machine.<br />
<br />
<b>Useful websites and resources:</b><br />
<a href="http://www.connectionstrings.com/" target="_blank">http://www.connectionstrings.com/</a><br />
<a href="http://www.asp.net/web-forms/videos" target="_blank">http://www.asp.net/web-forms/videos</a><br />
<a href="http://www.asp.net/web-forms/tutorials" target="_blank">http://www.asp.net/web-forms/tutorials</a><br />
<a href="http://msdn.microsoft.com/en-us/library/bb400852" target="_blank">http://msdn.microsoft.com/en-us/library/bb400852</a><br />
<a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx" target="_blank">ConnectionString Keyword Reference</a></div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f50/">Programming/Scripting, Development and Design</category>
			<dc:creator>Ben Stones</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f50/how-connect-external-sql-server-database-asp-net-vbulletin-net-net-16995/</guid>
		</item>
		<item>
			<title>Hosted DNS</title>
			<link>http://forums.eukhost.com/f29/hosted-dns-16994/</link>
			<pubDate>Mon, 14 May 2012 15:27:53 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Does euk provide any sort of hosted DNS system?  One that would allow users to access and manage their own DNS zones?  I'm in the process of...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Does euk provide any sort of hosted DNS system?  One that would allow users to access and manage their own DNS zones?  I'm in the process of setting up a new VPS and although I can obviously install BIND and create my own nameservers etc, in some ways I'd rather DNS was hosted separately.<br />
<br />
Any comments greatly appreciated.<br />
<br />
Chris.</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f29/">VPS Hosting - Virtual Private Servers</category>
			<dc:creator>OneApplications</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f29/hosted-dns-16994/</guid>
		</item>
		<item>
			<title>php mailer problem</title>
			<link>http://forums.eukhost.com/f38/php-mailer-problem-16992/</link>
			<pubDate>Mon, 14 May 2012 01:12:12 GMT</pubDate>
			<description>Hi, 
 
I am setting up a new website and have added a customer quotation form so customers can email quote request. I keep getting the same error but...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am setting up a new website and have added a customer quotation form so customers can email quote request. I keep getting the same error but I dont think there is anything wrong with my script, so my guess is that the mailer.php script has been disabled from use on the server???<br />
<br />
Here is what I keep getting:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			<b>Warning: mail() has been disabled for security reasons in /home/mobilewa/public_html/mailer.php on line 33<br />
<br />
Warning: Cannot modify header information - headers already sent by (output started at /home/mobilewa/public_html/mailer.php:33) in /home/mobilewa/public_html/mailer.php on line 35</b>
			
		<hr />
	</div>
</div>Can anyone advise the problem and how do I get a solution for this please? I have added image verification to stop spam programmes from sending email through it so any further help would be appreciated.......<br />
<br />
Regards<br />
<br />
Daz</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f38/">cPanel Shared Hosting</category>
			<dc:creator>r3gsm</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f38/php-mailer-problem-16992/</guid>
		</item>
		<item>
			<title>What is the constructor method in Visual Basic?</title>
			<link>http://forums.eukhost.com/f50/what-constructor-method-visual-basic-16991/</link>
			<pubDate>Sat, 12 May 2012 23:06:17 GMT</pubDate>
			<description>Visual Basic is a programming language from Microsoft used with the .NET framework, commonly to create desktop and web applications (web applications...</description>
			<content:encoded><![CDATA[<div>Visual Basic is a programming language from Microsoft used with the .NET framework, commonly to create desktop and web applications (web applications using ASP.NET (Visual Basic and the .NET framework)).<br />
<br />
<b>Just quickly, what is the .NET framework?</b><br />
A programming framework provides a pre-created set of libraries and tools to make it easier to create applications for whatever the specific purpose of that framework. There are many frameworks for different programming languages, such as CodeIgniter for PHP, Rails for the Ruby language (Ruby on Rails), and so on.<br />
<br />
The .NET framework is incredibly extensive, so you can't possibly remember and learn everything the .NET framework has to offer. Essentially, the most important thing is to learn parts of the .NET framework you'll be using. For example, if you want to connect to and use databases in an ASP.NET application, you'll be wanting to look at the SqlClient class that is found in the System.Data namespace (namespaces are merely conceptual - they organise different kinds of classes, essentially).<br />
<br />
<b>What is a class constructor?</b><br />
A constructor in the context of a class in object oriented programming, is a kind of method that is executed as soon as an object is created from a class (an instance of a class is created - &quot;instantiation&quot;). For example:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Imports Microsoft.VisualBasic<br />
Imports System.Data.SqlClient<br />
<br />
Public Class Database<br />
<br />
&nbsp; &nbsp; Public connString As String = GetConnectionString()<br />
&nbsp; &nbsp; Public connection As New SqlConnection(connString)<br />
<br />
&nbsp; &nbsp; Public Sub New() 'This is the constructor<br />
&nbsp; &nbsp; &nbsp; &nbsp; connection.Open()<br />
&nbsp; &nbsp; End Sub<br />
<br />
&nbsp; &nbsp; Public Function GetConnectionString() As String<br />
&nbsp; &nbsp; &nbsp; &nbsp; Return &quot;Persist Security Info=False;Integrated Security=false;User ID=example_uid;Password=pw_here;Database=example_db;server=example.com&quot;<br />
&nbsp; &nbsp; End Function<br />
<br />
End Class</code><hr />
</div>The New() method is the constructor. This method is executed as soon as an instance of the Database class (above) is created. However, with the GetConnectionString() method, that would otherwise need to be called after class instantiation.<br />
<br />
<b>What is &quot;instantiation&quot;? (in-stan-shee-ation)</b><br />
&quot;to provide an instance of or concrete evidence in support of (a theory, concept, claim, or the like). &quot; (<a href="http://dictionary.reference.com/browse/instantiation?s=t" target="_blank">dictionary.com</a>)<br />
<br />
In context, it means &quot;creating an instance of a class&quot; (or creating an object). Essentially, creating an instance is allocating the class to memory to use.</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f50/">Programming/Scripting, Development and Design</category>
			<dc:creator>Ben Stones</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f50/what-constructor-method-visual-basic-16991/</guid>
		</item>
		<item>
			<title>From a relevancy perspective, do you think Bing is something to take into account?</title>
			<link>http://forums.eukhost.com/f22/relevancy-perspective-do-you-think-bing-something-take-into-account-16990/</link>
			<pubDate>Sat, 12 May 2012 14:43:14 GMT</pubDate>
			<description>Bing is becoming increasingly popular (at the very least, it is doing well from a market share perspective), and I do think Bing brings pretty...</description>
			<content:encoded><![CDATA[<div>Bing is becoming increasingly popular (at the very least, it is doing well from a market share perspective), and I do think Bing brings pretty relevant results - Microsoft are innovating a lot with Bing, for example the new &quot;social Bing&quot; which incorporates social aspects to search results and provides integration with Facebook (but not Google+ as far as I know ;)).<br />
<br />
I'm interested to know whether you, as a web developer, also focus on the search engine listings of your site with Bing, and also focus on the importance of being listed well on Bing?<br />
<br />
Share your thoughts :). I do have to say my site (search for &quot;Personal Tech Blog&quot;) is listed pretty high in Bing. But it is indexed faster with Google than Bing. I'd have to check the logs to see how much traffic comes from Bing to my site; obviously more traffic is likely to come from Google, but I wouldn't completely disregard Bing. I am definitely sure a lot of people use it, not just Google.</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f22/">Search Engines and Search Engine Optimisation</category>
			<dc:creator>Ben Stones</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f22/relevancy-perspective-do-you-think-bing-something-take-into-account-16990/</guid>
		</item>
		<item>
			<title>DDOS on Server Luton</title>
			<link>http://forums.eukhost.com/f46/ddos-server-luton-16989/</link>
			<pubDate>Sat, 12 May 2012 11:49:35 GMT</pubDate>
			<description><![CDATA[Dear Customers , &#160; We are currently facing DDOS*on the shared server Luton. Our senior admins are looking into it*and we will post further updates on...]]></description>
			<content:encoded><![CDATA[<div>Dear Customers , &amp;#160; We are currently facing DDOS*on the shared server Luton. Our senior admins are looking into it*and we will post further updates on this shortly. &amp;#160; Meanwhile your patience and understanding is appreciated. &amp;#160; Regards, Linux Support Department.<br />
<br />
<a href="http://euk-status.com/ddos-on-server-luton" target="_blank">Read Follow Up...</a></div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f46/">eUK Status</category>
			<dc:creator>euk-status</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f46/ddos-server-luton-16989/</guid>
		</item>
		<item>
			<title>Crons - Emails ?</title>
			<link>http://forums.eukhost.com/f38/crons-emails-16988/</link>
			<pubDate>Sat, 12 May 2012 08:13:16 GMT</pubDate>
			<description><![CDATA[Is there any way of getting an email if a cron hasn't worked?  So, if it has worked, no email would be sent.]]></description>
			<content:encoded><![CDATA[<div>Is there any way of getting an email if a cron hasn't worked?  So, if it has worked, no email would be sent.</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f38/">cPanel Shared Hosting</category>
			<dc:creator>_Chris_</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f38/crons-emails-16988/</guid>
		</item>
		<item>
			<title>Windows HyperV-4 under Emergency Maintenance</title>
			<link>http://forums.eukhost.com/f46/windows-hyperv-4-under-emergency-maintenance-16987/</link>
			<pubDate>Sat, 12 May 2012 05:54:12 GMT</pubDate>
			<description>Dear Customers, Windows HyperV-4 Node is under emergency maintenance. We regret any inconvenience this may cause. This is being implemented in order...</description>
			<content:encoded><![CDATA[<div>Dear Customers, Windows HyperV-4 Node is under emergency maintenance. We regret any inconvenience this may cause. This is being implemented in order to ensure better security and performance. We shall update the post once done. Regards, EUK – Support Team<br />
<br />
<a href="http://euk-status.com/windows-hyperv-4-under-emergency-maintenance" target="_blank">Read Follow Up...</a></div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f46/">eUK Status</category>
			<dc:creator>euk-status</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f46/windows-hyperv-4-under-emergency-maintenance-16987/</guid>
		</item>
		<item>
			<title>Linux server northampton.theukhost.net timeout</title>
			<link>http://forums.eukhost.com/f46/linux-server-northampton-theukhost-net-timeout-16986/</link>
			<pubDate>Fri, 11 May 2012 01:10:15 GMT</pubDate>
			<description><![CDATA[Dear Customers. &#160; We have noticed some timeout issues with the server northampton.theukhost.net so one of the senior admin is looking into this. We...]]></description>
			<content:encoded><![CDATA[<div>Dear Customers. &amp;#160; We have noticed some timeout issues with the server northampton.theukhost.net so one of the senior admin is looking into this. We will post here once the issue is sorted out. Your patience is appreciated. &amp;#160; Thank You. Regards, Support Team.<br />
<br />
<a href="http://euk-status.com/linux-server-northampton-theukhost-net-timeout" target="_blank">Read Follow Up...</a></div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f46/">eUK Status</category>
			<dc:creator>euk-status</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f46/linux-server-northampton-theukhost-net-timeout-16986/</guid>
		</item>
		<item>
			<title>Sites down for several hours again today - time for a new host</title>
			<link>http://forums.eukhost.com/f41/sites-down-several-hours-again-today-time-new-host-16985/</link>
			<pubDate>Thu, 10 May 2012 23:11:46 GMT</pubDate>
			<description><![CDATA[My sites have been down almost more than they have been up for the last 6 weeks or so.  Today's excuse seemed to be a raid failure....surely the...]]></description>
			<content:encoded><![CDATA[<div>My sites have been down almost more than they have been up for the last 6 weeks or so.  Today's excuse seemed to be a raid failure....surely the whole point of RAID is that if a drive fails then there is a back up in place?<br />
<br />
Getting totally fed up of having sites unavailable time and time again</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f41/">Windows Shared Hosting</category>
			<dc:creator>twisted-pixe</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f41/sites-down-several-hours-again-today-time-new-host-16985/</guid>
		</item>
		<item>
			<title>HP introduces new thin and light Ultrabook laptop</title>
			<link>http://forums.eukhost.com/f17/hp-introduces-new-thin-light-ultrabook-laptop-16984/</link>
			<pubDate>Wed, 09 May 2012 12:36:37 GMT</pubDate>
			<description>Image: http://www.b3ns.com/images/forums/eUKhost/envyspectrext.jpg  
 
Intel are absolutely pushing Ultrabooks to an even lower price point (or are...</description>
			<content:encoded><![CDATA[<div><img src="http://www.b3ns.com/images/forums/eUKhost/envyspectrext.jpg" border="0" alt="" /><br />
<br />
Intel are absolutely pushing Ultrabooks to an even lower price point (or are encouraging the industry to do so). HP has introduced some new Ultrabooks starting as low as $599 up to $999.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			The flagship of the bunch, the Envy Spectre XT (pictured above), will cost $999 and comes in at only .97 inches thick, weighing 3.07 pounds. The entry-level configuration gives consumers a 13.3&quot; screen (featuring a 1366 x 768 resolution), 128GB SSD drive, 4GB of 1600MHz DDR3 RAM and an Intel Ivy Bridge CPU of a currently unknown speed. While the Envy Spectre XT shares its nomenclature with the Envy 14 Spectre, released earlier this year, it sports a complete redesign of its predecessor.
			
		<hr />
	</div>
</div>Read more: <a href="http://www.neowin.net/news/hp-reveals-new-envy-ultrabooks" target="_blank">HP reveals new Envy Ultrabooks - Neowin</a><br />
<br />
So...will your next computer be an Ultrabook? ;)</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f17/">General Discussion</category>
			<dc:creator>Ben Stones</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f17/hp-introduces-new-thin-light-ultrabook-laptop-16984/</guid>
		</item>
		<item>
			<title>Change in cron format</title>
			<link>http://forums.eukhost.com/f34/change-cron-format-16983/</link>
			<pubDate>Wed, 09 May 2012 10:56:01 GMT</pubDate>
			<description><![CDATA[Hi 
 
Have just had a problem rectified by support (thanks Silvester J) where my crons weren't working.  Turns out the cron job command was now in...]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
Have just had a problem rectified by support (thanks Silvester J) where my crons weren't working.  Turns out the cron job command was now in error. <br />
<br />
I would appreciate it if someone could explain why this command has been fine for more than two years but a few weeks ago stopped working for the following reason:<br />
<br />
Previous command:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">/usr/bin/curl&nbsp; h**p://<i>mydomain</i>.com/admin/includes/cronrefresh.php?fd_refresh=50</code><hr />
</div>New command required:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">/usr/bin/curl -O&nbsp; h**p://<i>mydomain</i>.com/admin/includes/cronrefresh.php?fd_refresh=50</code><hr />
</div>Note the addition of the -O after the <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">/usr/bin/curl</code><hr />
</div>  (please note that just for this post I had to substitute the http bit with h**p as the forum thought I was trying to post a link with insufficient privileges  )<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f34/">cPanel Reseller Hosting</category>
			<dc:creator>WildStar</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f34/change-cron-format-16983/</guid>
		</item>
		<item>
			<title>Mod Security</title>
			<link>http://forums.eukhost.com/f34/mod-security-16982/</link>
			<pubDate>Wed, 09 May 2012 08:52:42 GMT</pubDate>
			<description>Getting really hacked off with this now.... 
 
A number of my clients have complained that their sites have stopped working properly.  When looking...</description>
			<content:encoded><![CDATA[<div>Getting really hacked off with this now....<br />
<br />
A number of my clients have complained that their sites have stopped working properly.  When looking into this it turns out that this is a new mod security issue resulting in 406 Not Acceptable errors.<br />
<br />
Support have been good in re-enabling this <i><b>when requested</b> </i>but this is only for the sites I know have stopped working and I have to contact support.  What about the sites where no-one has complained/spotted the problems.  Now I have to trawl through each and every site testing everything to see if there are problems.<br />
<br />
Not happy :bashing:<br />
<br />
Eukhost - please stop tweaking stuff and breaking my sites.  OK, you'll say that it's a security issue, fine, then deal with it but make sure your tweaks don't break sites or at least go in and fix them!  It's no use blocking these 'holes' just so the sites don't even work anymore - what's the point of that?<br />
<br />
<b>What does this latest mod security tweak affect on my sites? </b> So far I seem to have mainly had databases failing to update, either through php script or when making wordpress changes and cron jobs have stopped.  What else do I now need to check?</div>

]]></content:encoded>
			<category domain="http://forums.eukhost.com/f34/">cPanel Reseller Hosting</category>
			<dc:creator>WildStar</dc:creator>
			<guid isPermaLink="true">http://forums.eukhost.com/f34/mod-security-16982/</guid>
		</item>
	</channel>
</rss>

