<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>ECUi™ - Knowledge Base</title><description>ECUi™ - Knowledge Base RSS 2.0 Feed</description><link>http://www.ecui.com/kb/</link><webMaster>administrator@ECUi.com</webMaster><lastBuildDate>Fri, 10 Oct 2008 22:55:23 GMT</lastBuildDate><ttl>20</ttl><generator>ECUi™ - Knowledge Base</generator><item><title>Example Database Connection Strings</title><link>http://www.ecui.com/kb/article.aspx?id=10097</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;DL&gt;&lt;DT&gt;Microsoft Access&lt;/DT&gt;&lt;DD&gt;&lt;FONT size=-2&gt;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\complete_path_to_mydatabase.mdb;Persist Security Info=False&lt;/FONT&gt;&lt;/DD&gt;&lt;DD&gt;&lt;FONT size=1&gt;&lt;/FONT&gt; &lt;/DD&gt;&lt;DT&gt;&lt;/DT&gt;&lt;DT&gt;Microsoft Access 2007&lt;/DT&gt;&lt;DD&gt;&lt;FONT size=-2&gt;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\complete_path_to_mydatabase.accdb;Persist Security Info=False;&lt;/FONT&gt;&lt;/DD&gt;&lt;DD&gt;&lt;FONT size=1&gt;&lt;/FONT&gt; &lt;/DD&gt;&lt;DT&gt;&lt;/DT&gt;&lt;DT&gt;Microsoft SQL Server&lt;/DT&gt;&lt;DD&gt;&lt;FONT size=-2&gt;Provider=SQLOLEDB.1;Persist Security Info=True;User ID=myUsername;Password=myPassword;Initial Catalog=myDataBase;Data Source=myServerName_or_Address&lt;/FONT&gt;&lt;/DD&gt;&lt;DD&gt;&lt;FONT size=1&gt;&lt;/FONT&gt; &lt;/DD&gt;&lt;DT&gt;&lt;/DT&gt;&lt;DT&gt;Microsoft SQL Server 2005&lt;/DT&gt;&lt;DD&gt;&lt;FONT size=-2&gt;Provider=SQLNCLI;Server=myServerName_or_Address;Database=myDataBase;Uid=myUsername;Pwd=myPassword;&lt;/FONT&gt;&lt;/DD&gt;&lt;DD&gt; &lt;/DD&gt;&lt;DT&gt;&lt;/DT&gt;&lt;DT&gt;Textfile&lt;/DT&gt;&lt;DD&gt;&lt;FONT size=-2&gt;Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=D:\complete_path_to_txtFilesFolder\;Extensions=asc,csv,tab,txt;&lt;/FONT&gt;&lt;/DD&gt;&lt;DT&gt;&lt;/DT&gt;&lt;/DL&gt;</description><pubDate>Sat, 02 Jun 2007 08:34:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Simple Persits AspEmail Example (asp code)</title><link>http://www.ecui.com/kb/article.aspx?id=10095</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;&amp;lt;% &lt;BR&gt;    Set Mail = Server.CreateObject("Persits.MailSender") &lt;/P&gt;&lt;P&gt;    Mail.Host = "enter_your_mail.server_here" ' Required&lt;BR&gt;    Mail.Port = 25 ' Optional. Port is 25 by default&lt;/P&gt;&lt;P&gt;    Mail.From = "&lt;A href="mailto:from@me.com"&gt;from@me.com&lt;/A&gt;" ' Required&lt;BR&gt;    Mail.FromName = "senders name" ' Optional&lt;/P&gt;&lt;P&gt;    Mail.AddAddress "&lt;A href="mailto:to@me.com"&gt;to@me.com&lt;/A&gt;" ' Required&lt;/P&gt;&lt;P&gt;    Mail.Subject = "Sample AspEmail Message"&lt;BR&gt;    Mail.Body = "This is an example using Persits AspEmail" &amp;amp; chr(13) &amp;amp; chr(10)&lt;/P&gt;&lt;P&gt;    On Error Resume Next&lt;BR&gt;    Mail.Send&lt;/P&gt;&lt;P&gt;If Err &amp;lt;&amp;gt; 0 Then&lt;BR&gt;  Response.Write "An error occurred: " &amp;amp; Err.Description&lt;BR&gt;End If&lt;BR&gt;%&amp;gt; &lt;/P&gt;</description><pubDate>Mon, 02 Apr 2007 06:01:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Simple CDO Example (asp code)</title><link>http://www.ecui.com/kb/article.aspx?id=10094</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &amp;lt;%&lt;BR&gt;    sch = "&lt;A href="http://schemas.microsoft.com/cdo/configuration/"&gt;http://schemas.microsoft.com/cdo/configuration/&lt;/A&gt;" &lt;BR&gt; &lt;BR&gt;    Set cdoConfig = CreateObject("CDO.Configuration") &lt;BR&gt; &lt;BR&gt;    With cdoConfig.Fields &lt;BR&gt;        .Item(sch &amp;amp; "sendusing") = 2 ' cdoSendUsingPort &lt;BR&gt;        .Item(sch &amp;amp; "smtpserver") = "enter_your_mail.server_here" &lt;BR&gt;        .update &lt;BR&gt;    End With &lt;BR&gt; &lt;BR&gt;    Set cdoMessage = CreateObject("CDO.Message") &lt;BR&gt; &lt;BR&gt;    With cdoMessage &lt;BR&gt;        Set .Configuration = cdoConfig &lt;BR&gt;        .From = "&lt;A href="mailto:from@me.com"&gt;from@me.com&lt;/A&gt;" &lt;BR&gt;        .To = "&lt;A href="mailto:to@me.com"&gt;to@me.com&lt;/A&gt;" &lt;BR&gt;        .Subject = "Sample CDO Message" &lt;BR&gt;        .TextBody = "This is an example using CDO.message" &lt;BR&gt;        .Send &lt;BR&gt;    End With &lt;BR&gt; &lt;BR&gt;    Set cdoMessage = Nothing &lt;BR&gt;    Set cdoConfig = Nothing &lt;BR&gt;%&amp;gt;</description><pubDate>Mon, 02 Apr 2007 06:01:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How to send e-mail with CDO</title><link>http://www.ecui.com/kb/article.aspx?id=10093</link><description>&lt;B&gt;Abstract:&lt;/B&gt; To send an e-mail with Active Server Pages requires some kind of component. There are many third party components available, but one of the most readily available is the free Microsoft mail component CDO, which ships with Windows 2000, Windows XP, and Windows Server 2003. &lt;BR&gt; &lt;BR&gt;We removed the code snippets using CDONTS, because it has many problems and has been deprecated. We highly recommend you use CDO.Message, and if you have existing CDONTS code, that you convert it to CDO.Message now, rather than waiting until you absolutely have to. If you try to run CDONTS.NewMail on Windows XP or Windows Server 2003, you might get one of the following errors: &lt;BR&gt; &lt;BR&gt;&lt;TABLE cellSpacing=0 cellPadding=10 border=0&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;!--0x800401F3--&gt;Invalid class string &lt;BR&gt;' or &lt;BR&gt;&lt;!--0x80040220--&gt;ActiveX component can't create object: 'CDONTS.NewMail' &lt;BR&gt;' or &lt;BR&gt;&lt;!--0x800A01AD--&gt;The "SendUsing" configuration value is invalid.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR&gt;This is because CDONTS has been deprecated and no longer ships with Windows (see &lt;A title=http://support.microsoft.com/default.aspx/kb/810702 href="http://support.microsoft.com/default.aspx/kb/810702" target=_self&gt;KB #810702&lt;/A&gt; for more information). To deal with this, you should start using the new code style in all of your applications: &lt;BR&gt; &lt;BR&gt;&lt;TABLE cellSpacing=0 cellPadding=10 border=0&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;lt;% &lt;BR&gt;    sch = "http://schemas.microsoft.com/cdo/configuration/" &lt;BR&gt; &lt;BR&gt;    Set cdoConfig = CreateObject("CDO.Configuration") &lt;BR&gt; &lt;BR&gt;    With cdoConfig.Fields &lt;BR&gt;        .Item(sch &amp;amp; "sendusing") = 2 ' cdoSendUsingPort &lt;BR&gt;        .Item(sch &amp;amp; "smtpserver") = "&amp;lt;enter_mail.server_here&amp;gt;" &lt;BR&gt;        .update &lt;BR&gt;    End With &lt;BR&gt; &lt;BR&gt;    Set cdoMessage = CreateObject("CDO.Me</description><pubDate>Mon, 02 Apr 2007 05:36:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Developmental Assistance</title><link>http://www.ecui.com/kb/article.aspx?id=10096</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;ECUi offers developmental assistance to clients at a flat rate of $90.00 per incident during business hours.&lt;/P&gt;&lt;P&gt;&lt;BR&gt;&lt;STRONG&gt;ELECTRONIC COMMUNICATIONS UNLIMITED, INC. MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, WITH RESPECT TO THE CODE EXAMPLES AND OR THIRD PARTY SOFTWARE PROVIDED UNDER THIS SECTION.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ANY CODE EXAMPLES AND OR THIRD PARTY SOFTWARE PROVIDED TO CUSTOMER IS PROVIDED "AS IS" WITHOUT ANY CONDITION OR WARRANTY WHATSOEVER.&lt;BR&gt;&lt;/STRONG&gt;&lt;/P&gt;</description><pubDate>Mon, 01 Jan 2007 05:55:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Does ECUi have to host my web site?</title><link>http://www.ecui.com/kb/article.aspx?id=10092</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No. When a visitor to your site activates a link to one of your media clips on our servers, the clip will automatically open up and start streaming through a player which is already installed on your visitor's computer. Normally, your site visitor will not have any idea that your media clip is streaming from servers other than those which are hosting your actual web site.</description><pubDate>Tue, 03 Oct 2006 03:36:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How does your service work?</title><link>http://www.ecui.com/kb/article.aspx?id=10091</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Using our service is amazingly simple: once you open an account, you simply upload your files via FTP or by sending us the media for us to encode. If you upload your own files, you will simply embed a direct link to your media clip within your web site.&lt;BR&gt;&lt;BR&gt;When a visitor to your site activates a link to one of your media clips on our servers, the clip will automatically open up and start streaming through a player already installed on your visitor's computer. Normally, your visitor won't have any idea that your media is streaming from servers other than the ones hosting your actual web site. Unlike many other services, we do not force your visitor to go to a special web page in order to play the media clip.</description><pubDate>Tue, 03 Oct 2006 03:35:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What are the most important factors to consider when encoding and compressing media?</title><link>http://www.ecui.com/kb/article.aspx?id=10090</link><description>&lt;B&gt;Abstract:&lt;/B&gt; You have to decide what audience you want to reach: streaming media files for 56k viewers should be altogether different than streaming media for broadband viewers. Secondly, you must decide whether to "stream" your media in real time, or have the viewer download the files onto their computer. Third, you must decide whether to create files for broadband viewers that are multi-tracked, or if you want the viewer to select a link that most closely corresponds to their Internet connection speed. Finally, decisions must be made regarding formats and trade-offs: how high a quality experience you want your media viewers to have relative to the file size that you find tolerable. </description><pubDate>Tue, 03 Oct 2006 03:35:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What format produces the best quality video?</title><link>http://www.ecui.com/kb/article.aspx?id=10089</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Independent studies show that the three most popular formats produce nearly identical viewing experiences when the parameters set at the time of encoding and compression are the same. In other words, quality depends far more on the variables the encoder has control over at the time of encoding than actual differences between the three most popular streaming formats.</description><pubDate>Tue, 03 Oct 2006 03:34:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What are the most popular, streaming video formats?</title><link>http://www.ecui.com/kb/article.aspx?id=10087</link><description>&lt;B&gt;Abstract:&lt;/B&gt; There are three widely used formats. In order of popularity, they are: RealVideo, Windows Media, and QuickTime. Most people with Internet access usually have at least one, and often all, of the players necessary to view files in these formats. In general, RealVideo is the most effective format for true streaming, followed closely by Windows Media. QuickTime streaming often presents problems for many viewers, particularly for PC users. &lt;!-- NAVIGATION WITH HORIZONTAL LINE --&gt;</description><pubDate>Tue, 03 Oct 2006 03:33:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What software is available for creating streaming video?</title><link>http://www.ecui.com/kb/article.aspx?id=10088</link><description>&lt;B&gt;Abstract:&lt;/B&gt; There are many different programs available for creating streaming video files. A few are free; a few are very expensive; many are somewhere in between; almost all are easy to use with a little practice. A popular encoder for the RealVideo format is the RealSystem Producer Plus found at the Real Networks site. Windows Media files can be created using the free Windows Media Encoder Apple offers a Quicktime player and encoder at their site. A very popular encoder for all three formats, the "Cleaner 5", is available at Discreet.com. The Cleaner comes in a full version, and less expensive "EZ" version. Top-of-the-line professional encoders are included with Macromedia Director, Adobe Premiere, and Apple's Final Cut Pro.</description><pubDate>Tue, 03 Oct 2006 03:33:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is encoding and compression?</title><link>http://www.ecui.com/kb/article.aspx?id=10086</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Encoding is the process of turning audio or video into a digital code that can be streamed from and viewed on computers. Compression takes that code and shrinks it into an appropriate file size for effective Internet streaming. </description><pubDate>Tue, 03 Oct 2006 03:32:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can media players be embedded into a web site?</title><link>http://www.ecui.com/kb/article.aspx?id=10085</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes. While the viewer still has to have a player installed on their local computer, custom elements can be created by the web site designer.&lt;BR&gt;&lt;BR&gt;Information about embedding the RealPlayer can be found by clicking &lt;A href="http://service.real.com/help/library/guides/extend/htmfiles/ch01_emb.htm"&gt;here&lt;/A&gt;. You will find Information on embedding the QuickTime player by clicking &lt;A href="http://www.apple.com/quicktime/authoring/embed.html"&gt;here&lt;/A&gt;.</description><pubDate>Tue, 03 Oct 2006 03:31:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is a multi-tracked media file for broadband viewers?</title><link>http://www.ecui.com/kb/article.aspx?id=10084</link><description>&lt;B&gt;Abstract:&lt;/B&gt; A characteristic of true streaming media is that multiple tracks can be created within a single multimedia file. Each track is encoded for a specific broadband speed (100k, 250k, 350k, etc). The media server will stream the appropriate track by communicating with the media player on the viewer's computer. The track that will stream will be based on the viewer's Internet connection speed and the general Internet conditions at the time of streaming. If there is an Internet slow-down while the track is streaming, the server will automatically stream a more appropriate track until there is less Internet congestion. This helps ensure a smooth streaming experience for the viewer.</description><pubDate>Tue, 03 Oct 2006 03:30:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How can I reach the widest possible audience with media on my web site?</title><link>http://www.ecui.com/kb/article.aspx?id=10083</link><description>&lt;B&gt;Abstract:&lt;/B&gt; The best way is to create media files and associated links separately for 56k viewers and broadband viewers. By necessity, the 56k files would be smaller and of lower quality than the files created for broadband users. To reach the widest possible spectrum of broadband users, you can create separate files and links for different broadband speeds (100k, 250k, etc), or create multiple tracks within a single broadband file.</description><pubDate>Tue, 03 Oct 2006 03:29:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Should the 56k audience be ignored when it comes to streaming media?</title><link>http://www.ecui.com/kb/article.aspx?id=10082</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Not at all, it is just important to design the media clip specifically for 56k viewers. The RealVideo format from Real Networks is, by far, the most effective streaming media technology for 56k viewers.</description><pubDate>Tue, 03 Oct 2006 03:29:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can visitors with 56k dial-up modems watch streaming video?</title><link>http://www.ecui.com/kb/article.aspx?id=10080</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes, however the viewing experience is, by necessity, usually of low quality. A streaming video optimized for 56k viewers should have a small screen viewing area (usually 160x120 pixels), and a reduced frame rate (15 frames per second or less). A progressive download video for 56k users can be of higher quality, but requires a larger file which in turn will require a long time to download. </description><pubDate>Tue, 03 Oct 2006 03:28:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Why are videos clips for 56k dial-up users usually so low in quality?</title><link>http://www.ecui.com/kb/article.aspx?id=10081</link><description>&lt;B&gt;Abstract:&lt;/B&gt; In order to stream to 56k users, the video file size must be kept as small as possible. An important rule of thumb is that the higher the quality a video, the larger the file. In general, 56k phone lines do not handle large files as well as smaller files.</description><pubDate>Tue, 03 Oct 2006 03:28:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Does true streaming media require a special server?</title><link>http://www.ecui.com/kb/article.aspx?id=10079</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes. Streaming media requires special server software that enables the server to actually communicate with the viewer's media player in order to determine what is the best speed in which to stream the media. A progressive download media file can be served from a standard web server.</description><pubDate>Tue, 03 Oct 2006 03:27:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can a viewer/visitor "save" a streaming media clip on their computer?</title><link>http://www.ecui.com/kb/article.aspx?id=10078</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No. A streaming media file, unlike a progressive download, cannot be saved on the viewer's computer. A viewer can save a link to the media, however embedding the player using javascript can prevent the viewer from doing that as well.</description><pubDate>Tue, 03 Oct 2006 03:26:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What''s the difference between "streaming" media and "progressive download" media?</title><link>http://www.ecui.com/kb/article.aspx?id=10077</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Streaming media arrives to the viewer in "real time", without the viewer having to wait for it to download somewhere on their computer before being able to view it. A viewer can jump to different areas within the media clip at anytime. Also, streaming media dynamically adjusts to Internet conditions along the journey from server to viewer.&lt;BR&gt;&lt;BR&gt;Progressive downloads are media files that must be downloaded to somewhere on the viewer's computer in order to play. For high-speed Internet users (cable modem or DSL), the media will usually start playing as it's downloading, giving the viewer the illusion of streaming media.&lt;BR&gt;</description><pubDate>Tue, 03 Oct 2006 03:25:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How do I get SQL server access?</title><link>http://www.ecui.com/kb/article.aspx?id=10076</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Our current policy requires the appropriate Enhanced Virtual Server Plan or a Dedicated Server to utilize ECUi's shared SQL servers. If you are already hosted on one of these plans, fill out the appropriate online SQL Database Request form so that our technicians will be able to configure your initial SQL Database.</description><pubDate>Tue, 03 Oct 2006 03:22:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What are the space limitations on my SQL Databases?</title><link>http://www.ecui.com/kb/article.aspx?id=10075</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Your SQL database disk usage will be included in your total allowable disk usage for your server. So for example if you are on a Server which allocates 250 MB of disk usage and you use 50 MB of disk usage on your SQL account, that leaves you 200 MB of disk usage for your Web site or other options before going over your server limits.&lt;BR&gt;&lt;BR&gt;Dedicated Server plans come with fixed amounts of "total" database storage capacity, which is dependent upon your particular Server Plan. Additional database storage is available at nominal fees when purchased in advance. Note - Disk utilization above and beyond plan allotments will be billed at the current monthly rate.</description><pubDate>Tue, 03 Oct 2006 03:20:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What does SQL mean and why should I use it?</title><link>http://www.ecui.com/kb/article.aspx?id=10074</link><description>&lt;B&gt;Abstract:&lt;/B&gt; SQL stands for Structured Query Language.&lt;BR&gt;&lt;BR&gt;The technology behind SQL makes it far superior compared to traditional databases such as Access, Paradox, FoxPro, etc. SQL is faster, more powerful and very fault tolerant.</description><pubDate>Tue, 03 Oct 2006 03:19:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is the difference between the Internet, WWW and email?</title><link>http://www.ecui.com/kb/article.aspx?id=10073</link><description>&lt;B&gt;Abstract:&lt;/B&gt; The Internet is the physical system (computers, wires, connections etc). WWW (the World Wide Web) and email are services that you use when connected to the Internet. There are other services on the Internet, such as FTP (File Transfer Protocol) and News Groups.</description><pubDate>Tue, 03 Oct 2006 03:19:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What does WWW mean?</title><link>http://www.ecui.com/kb/article.aspx?id=10072</link><description>&lt;B&gt;Abstract:&lt;/B&gt; WWW are initials that stand for World Wide Web. A 'web' is a network of fibres or cables connecting different points. (Spiders make webs to catch flies.) The Web is one of the services available on the Internet. It lets you access millions of pages through a system of hyperlinks. Because it is 'world-wide', it was originally called the World Wide Web or WWW.</description><pubDate>Tue, 03 Oct 2006 03:18:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is the Internet?</title><link>http://www.ecui.com/kb/article.aspx?id=10071</link><description>&lt;B&gt;Abstract:&lt;/B&gt; The word 'Internet' is made from the words 'inter-' + 'network'. A network is a collection of fibres or wires connecting various points. The Internet is an international network of millions of computers linked by cable, telephone lines and satellite. It is also sometimes called the 'Net'.</description><pubDate>Tue, 03 Oct 2006 03:17:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Which components of Microsoft FrontPage are supported on ECUi servers?</title><link>http://www.ecui.com/kb/article.aspx?id=10070</link><description>&lt;B&gt;Abstract:&lt;/B&gt; All Microsoft FrontPage components are supported on you web servers. We specialize in providing hosting exclusively on the Microsoft Windows web server platform. Unlike LINUX/Unix web hosting, FrontPage extensions were designed to run on Windows, and all features of FrontPage are available with your web site.</description><pubDate>Tue, 03 Oct 2006 03:16:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What level of control do I have over my Microsoft SQL database?</title><link>http://www.ecui.com/kb/article.aspx?id=10069</link><description>&lt;B&gt;Abstract:&lt;/B&gt; You have total and complete control over your Microsoft SQL Server database. When we configure your database, your user ID will be aliased as dbo. This means you have complete control to manage everything about your database.</description><pubDate>Tue, 03 Oct 2006 03:15:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What tools may I use to manage my SQL database?</title><link>http://www.ecui.com/kb/article.aspx?id=10068</link><description>&lt;B&gt;Abstract:&lt;/B&gt; You may manage your Microsoft SQL Server database as if it were sitting on your local file server. Any tool that connects to your version of SQL Server will work including Microsoft SQL Server Enterprise Manager and Query Analyzer (WISQL). Microsoft Visual InterDev also connects directly to SQL Server and provides a visual database management tool.</description><pubDate>Tue, 03 Oct 2006 03:14:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What version(s) of Microsoft SQL Server are supported by ECUi?</title><link>http://www.ecui.com/kb/article.aspx?id=10067</link><description>&lt;B&gt;Abstract:&lt;/B&gt; &lt;P&gt;SQL Server 2000 (version 8.0) Service Pack 4 is currently supported for virtual/shared web hosting and dedicated servers.&lt;/P&gt;&lt;P&gt;&lt;SPAN class=note&gt;SQL Server 2005 will be phased in beginning December 01, 2006&lt;/SPAN&gt;&lt;/P&gt;</description><pubDate>Tue, 03 Oct 2006 03:12:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Is server-side ASP debugging supported?</title><link>http://www.ecui.com/kb/article.aspx?id=10066</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No. For performance reasons, server-side ASP debugging is not supported. Server-side debugging is designed for use on development servers, and is not installed on our production web servers to provide the best web site performance. </description><pubDate>Tue, 03 Oct 2006 03:09:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What type of Web server am I on?</title><link>http://www.ecui.com/kb/article.aspx?id=10065</link><description>&lt;B&gt;Abstract:&lt;/B&gt; All Shared/Virtual Servers are hosted on server systems running Microsoft Windows 2003 Server. Your actual Web Server is Microsoft Internet Information Server version 6.x &lt;BR&gt;&lt;BR&gt;&lt;SPAN class=noteRed&gt;NOTE&lt;/SPAN&gt; &lt;SPAN class=note&gt;- Accounts initially configured prior to May 01, 2003 are running on Windows 2000 with Microsoft Internet Information Server version 5.x&lt;/SPAN&gt; </description><pubDate>Tue, 03 Oct 2006 03:08:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is an AutoResponder?</title><link>http://www.ecui.com/kb/article.aspx?id=10064</link><description>&lt;B&gt;Abstract:&lt;/B&gt; An auto responder is a message automatically sent to anyone who eMails a particular address. For example, you might set up an autoresponder for your account that says, "I'm on vacation, and will check my eMail in two days". Whenever someone eMails you, they will automatically receive an eMail back informing them that you are on vacation. This is also a great feature for sending sales literature or technical support. &lt;BR&gt;&lt;BR&gt;When you logon to your mail server through the web interface you will notice a vacation message, this is one of your autoresponders.&lt;BR&gt;</description><pubDate>Tue, 03 Oct 2006 02:58:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What does the @ mean in an email address?</title><link>http://www.ecui.com/kb/article.aspx?id=10063</link><description>&lt;B&gt;Abstract:&lt;/B&gt; The symbol @ in English means 'at'. (It is often used for prices: '5 pens @ $1' means '5 pens at a price of $1 each'.) So 'example@englishclub.com' means 'Example at EnglishClub.com'. The symbol @ is usually called the 'at sign' in English.</description><pubDate>Tue, 03 Oct 2006 02:57:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is the storage limit for POP/POP3/IMAP accounts?</title><link>http://www.ecui.com/kb/article.aspx?id=10062</link><description>&lt;B&gt;Abstract:&lt;/B&gt; POP eMail account storage is part of your server's Hard Disk Storage capacity, therefore this depends upon your specific hosting plan.</description><pubDate>Tue, 03 Oct 2006 02:57:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How many POP eMail address can I have?</title><link>http://www.ecui.com/kb/article.aspx?id=10061</link><description>&lt;B&gt;Abstract:&lt;/B&gt; With our Dedicated and Premium server plans, you may configure an unlimited number of POP3 eMail addresses. (Basic server plans provided for a fixed number of POP accounts)</description><pubDate>Tue, 03 Oct 2006 02:56:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is POP or POP3 eMail?</title><link>http://www.ecui.com/kb/article.aspx?id=10060</link><description>&lt;B&gt;Abstract:&lt;/B&gt; POP eMail Accounts are "real" eMail user accounts which store your messages on a server, just like your ISP stores your eMail for you.</description><pubDate>Tue, 03 Oct 2006 02:55:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What are eMail accounts?</title><link>http://www.ecui.com/kb/article.aspx?id=10059</link><description>&lt;B&gt;Abstract:&lt;/B&gt; eMail Accounts or Aliases are the names people can send eMail to. (i.e. sales@your domain, support@your domain, etc.)</description><pubDate>Tue, 03 Oct 2006 02:54:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is iMail?</title><link>http://www.ecui.com/kb/article.aspx?id=10058</link><description>&lt;B&gt;Abstract:&lt;/B&gt; iMail is the mail server product by IPSwitch, Inc. that ECUi utilizes for our client mail servers. You administer and manage your mail server from your Web browser through the Webmail interface.</description><pubDate>Tue, 03 Oct 2006 02:53:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is Webmail?</title><link>http://www.ecui.com/kb/article.aspx?id=10057</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Webmail allows you to send and receive eMail using your Web browser. This means that you can access your eMail from anywhere with an Internet connection. If you have ever used Hotmail, Yahoo, MSN Mail or any other Webmail service, this is the same type of service.</description><pubDate>Tue, 03 Oct 2006 02:53:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What is email?</title><link>http://www.ecui.com/kb/article.aspx?id=10056</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Email is short for "electronic mail". It is a service for sending messages and files from one computer to another computer. The computers can be within one company or anywhere in the world. The messages travel almost instantaneously. Email is also sometimes spelt "e-mail".</description><pubDate>Tue, 03 Oct 2006 02:52:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>What are the hardware RAID capabilities of your Premium Dedicated Servers?</title><link>http://www.ecui.com/kb/article.aspx?id=10055</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Exploiting the RAID capabilities of our Premium Dedicated Servers is optional &lt;SPAN class=note&gt;(at no additional cost beyond the necessary hard disk drives for RAID Level 0+1)&lt;/SPAN&gt; however the configuration must be performed during the initial server setup.&lt;BR&gt;&lt;BR&gt;RAID Level 0 requires a minimum of 2 drives and implements a striped disk array, the data is broken down into blocks and each block is written to a separate disk drive therefore I/O performance is greatly improved by spreading the I/O load across many channels and drives.&lt;BR&gt;&lt;BR&gt;RAID Level 0 is NOT fault-tolerant and the failure of just one drive will result in all data in an array being lost and should never be used in mission critical environments.&lt;BR&gt;&lt;BR&gt;RAID Level 1 requires a minimum of 2 drives to implement with One Write or two Reads being possible per mirrored pair with twice the Read transaction rate of single disks, and the same Write transaction rate as single disks therefore the Transfer rate per block is equal to that of a single disk.&lt;BR&gt;&lt;BR&gt;RAID Level 1 provides 100% redundancy of data which means no rebuild is necessary in case of a disk failure, just a copy to the replacement disk.&lt;BR&gt;&lt;BR&gt;RAID Level 0+1 requires a minimum of 4 drives and is implemented as a mirrored array whose segments are RAID 0 arrays extremely High I/O rates are achieved thanks to multiple stripe segments making this an excellent solution for sites that need high performance but are not concerned with reliability.&lt;BR&gt;&lt;BR&gt;RAID 0+1 is NOT to be confused with RAID 10. A single drive failure will cause the whole array to become, in essence, a RAID Level 0 array.</description><pubDate>Tue, 03 Oct 2006 02:50:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>How is my monthly data transfer (not bandwidth) calculated?</title><link>http://www.ecui.com/kb/article.aspx?id=10054</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Calculations are generated by totaling both your inbound and outbound traffic together for the entire month.</description><pubDate>Tue, 03 Oct 2006 02:49:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can I reset my server if it hangs up?</title><link>http://www.ecui.com/kb/article.aspx?id=10053</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes, with our exclusive Remote Reboot, a feature powered by an APC MasterSwitch, which gives you control over your server's power cycles. Now, instead of opening an incident report or calling into tech support and waiting just to have your server rebooted, you can log on to an easy-to-use browser based interface and reboot your server with one click of your mouse.&lt;BR&gt;&lt;BR&gt;Your server's power cord is plugged in to the APC MasterSwitch device. You have access to an outlet on the APC MasterSwitch, which requires a user ID and password authentication to administer. The APC MasterSwitch Web interface, allows you to select remote reboot options from a drop-down menu. You may choose an immediate or delayed reboot. If you have purchased more than one server, you will likely have a separate set of login information and a separate interface for each server. However, your interface may show more than one outlet if you have purchased more than one server at the same time, and/or if they were plugged into the same APC MasterSwitch device series.</description><pubDate>Tue, 03 Oct 2006 02:47:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>May I send you hardware to add to my server?</title><link>http://www.ecui.com/kb/article.aspx?id=10051</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No, we do not install or attach client owned hardware to dedicated servers.</description><pubDate>Tue, 03 Oct 2006 02:44:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Can I purchase ram or a hard drive and have you install it in the server?</title><link>http://www.ecui.com/kb/article.aspx?id=10052</link><description>&lt;B&gt;Abstract:&lt;/B&gt; No, all hardware components of our rented dedicated servers must be property of ECUi. You will need to rent the hardware from ECUi and we will install it. &lt;!-- NAVIGATION WITH HORIZONTAL LINE --&gt;</description><pubDate>Tue, 03 Oct 2006 02:43:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Do you permit IRC services on your servers?</title><link>http://www.ecui.com/kb/article.aspx?id=10050</link><description>&lt;B&gt;Abstract:&lt;/B&gt; ECUi permits stand alone IRC servers that are not connected to a global IRC networks such as Undernet, EFnet, DALnet and other IRC networks. IRC servers that establish and maintain connections to a global IRC networks such as Undernet, EFnet, DALnet and others will be considered to be in violation of the ECUi Acceptable Use Policy.</description><pubDate>Tue, 03 Oct 2006 02:40:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Do you permit Adult Content on your servers?</title><link>http://www.ecui.com/kb/article.aspx?id=10049</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes, legal adult content is permitted on all of our servers.</description><pubDate>Tue, 03 Oct 2006 02:39:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item><item><title>Do I have root/administrator access to my server? Can I install my software after the server is online?</title><link>http://www.ecui.com/kb/article.aspx?id=10048</link><description>&lt;B&gt;Abstract:&lt;/B&gt; Yes, you will have full access to your server. You may install additional software on the machine once the server is online and turned over for production use. Our technical support department does not support third party software.</description><pubDate>Tue, 03 Oct 2006 02:35:00 GMT</pubDate><dc:creator>Administrator</dc:creator></item></channel></rss>