<?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></title>
	<atom:link href="http://www.unitedwebcoders.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unitedwebcoders.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 Nov 2020 20:31:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<!--Theme by MyThemeShop.com-->
	<item>
		<title>United Web Coders</title>
		<link>http://www.unitedwebcoders.com/trouble-ticket-express/configuration-file/</link>
		
		<dc:creator><![CDATA[Rae]]></dc:creator>
		<pubDate>Wed, 04 Nov 2020 20:20:17 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://www.unitedwebcoders.com/?p=14</guid>

					<description><![CDATA[<p>code &#38; advise for online entrepreneurs Configuration File What? It is a plain text file the Trouble Ticket Express uses to store its settings, such as SMTP server information, help desk email address, company name. Here is a fragment of configuration file. HTMLBASEWIDTH=700 admpwd=test123 basedir=/web/localhost/htdocs/ttx blockautoresponder=1 company=Trouble Ticket Express Demo email=ttxmail@eastwright.com emailfix=0 group1=Billing group2=Sales group3=Customer Service grpsellbl=Department httphost=www.company.com imgurl=. scriptname=/ttx/ttx.cgi smtp=127.0.0.1 smtptrace=0 timezone=-300 ttx.version=2.21 usecache=0 xOS=3 xSN=2 As you can see, each line defines one configuration variable. You probably recognized some variables, because they correspond to the setup form fields. Some variables do not have setup form counterparts. Trouble Ticket Express uses </p>
<p>The post <a rel="nofollow" href="http://www.unitedwebcoders.com/trouble-ticket-express/configuration-file/">United Web Coders</a> appeared first on <a rel="nofollow" href="http://www.unitedwebcoders.com"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<div id="header">
<div id="headerimg">
<div class="description">code &amp; advise for online entrepreneurs</div>
</div>
</div>
<div id="content" class="narrowcolumn">
<div id="post-16" class="post">
<h2>Configuration File</h2>
<div class="entrytext">
<p><strong>What?</strong></p>
<p>It is a plain text file the <strong>Trouble Ticket Express</strong> uses to store its settings, such as SMTP server information, help desk email address, company name. Here is a fragment of configuration file.</p>
<blockquote><p><code>HTMLBASEWIDTH=700<br />
admpwd=test123<br />
basedir=/web/localhost/htdocs/ttx<br />
blockautoresponder=1<br />
company=Trouble Ticket Express Demo<br />
email=ttxmail@eastwright.com<br />
emailfix=0<br />
group1=Billing<br />
group2=Sales<br />
group3=Customer Service<br />
grpsellbl=Department<br />
httphost=www.company.com<br />
imgurl=.<br />
scriptname=/ttx/ttx.cgi<br />
smtp=127.0.0.1<br />
smtptrace=0<br />
timezone=-300<br />
ttx.version=2.21<br />
usecache=0<br />
xOS=3<br />
xSN=2</code></p></blockquote>
<p>As you can see, each line defines one configuration variable. You probably recognized some variables, because they correspond to the setup form fields. Some variables do not have setup form counterparts. Trouble Ticket Express uses these variables to store internal information.</p>
<p><strong>Where.</strong></p>
<p>The Trouble Ticket Express looks for the configuration file under the scripts directory. The name of the file is ttxcfg.cgi. But it is not an executable CGI script. It uses cgi extension for security reasons only – trying to open the file using web browser will result in Internal Server Error rather than disclosing its contents. Depending on your system settings, the ttxcfg.cgi file contains either list of configuration variables or a single line with a reference to real configuration file, which resides outside scripts directory.</p>
<p><strong>How</strong></p>
<p>Normally, you do not need to edit the configuration file, as the Trouble Ticket Express does the job. Just use setup.cgi script to change system settings. You may need to edit the ttxcfg.cgi if you want to</p>
<ul>
<li>Adjust file system paths when moving the system to another host.</li>
<li>Use undocumented features. These undocumented features are the ones, which are already implemented but not available in setup forms yet. This usually happens if we had to make an intermediate release to address some bugs.</li>
</ul>
<p>To edit the configuration file please use plain text editor, such as Notepad on Windows or vi on Unix. Do not forget to build a backup copy before applying changes to the file.</p>
</div>
</div>
</div>
<p>The post <a rel="nofollow" href="http://www.unitedwebcoders.com/trouble-ticket-express/configuration-file/">United Web Coders</a> appeared first on <a rel="nofollow" href="http://www.unitedwebcoders.com"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>United Web Coders code &#038; advice for online entrepreneurs RSS for Dummies</title>
		<link>http://www.unitedwebcoders.com/rss-introduction/</link>
		
		<dc:creator><![CDATA[Rae]]></dc:creator>
		<pubDate>Wed, 04 Nov 2020 19:58:50 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://www.unitedwebcoders.com/?p=13</guid>

					<description><![CDATA[<p>RSS variously stands for Rich Site Summary or Really Simple Syndication. Sounds like a load of warm fuzzy round spherical things? Sure, it does. If it did not, where would not be multiple definitions for the acronym. Anyway, the concept is indeed Really Simple, and all you need to know as a reader, is that it is a way for you to keep track of new content on numerous websites without having to go view each individual site. The RSS news feed concept is very similar to the one of email newsletter. The major difference is delivery method: while email alerts </p>
<p>The post <a rel="nofollow" href="http://www.unitedwebcoders.com/rss-introduction/">United Web Coders code &#038; advice for online entrepreneurs RSS for Dummies</a> appeared first on <a rel="nofollow" href="http://www.unitedwebcoders.com"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<div id="header">
<div id="headerimg"></div>
</div>
<div id="content" class="narrowcolumn">
<div id="post-15" class="post">
<p><span style="font-size: 16px;">RSS variously stands for Rich Site Summary or Really Simple Syndication. Sounds like a </span><em style="font-size: 16px;">load of warm fuzzy round spherical things</em><span style="font-size: 16px;">? Sure, it does. If it did not, where would not be multiple definitions for the acronym. Anyway, the concept is indeed </span><em style="font-size: 16px;">Really Simple</em><span style="font-size: 16px;">, and all you need to know as a reader, is that it is a way for you to keep track of new content on numerous websites without having to go view each individual site.</span></p>
<div class="entrytext">
<p>The RSS news feed concept is very similar to the one of email newsletter. The major difference is delivery method: while email alerts are being “pushed” to your mailbox, the RSS content is being “pulled” by your RSS reader or “aggregator”. The “pull” method provides pretty elegant solution to fight spam, because there is no need to inform a publisher about your wish to cancel subscription. You simply instruct your RSS aggregator (it is either a program on your PC or web service) to stop polling the news feed. Needless to say, nobody can subscribe you to RSS feed without your concent. Furthermore, it is known that antispam filters often make it difficult for publishers to reach readers via e-mail. Using RSS channel solves this problem, as the RSS content delivery protocol does not rely on email at all.</p>
<p>In order to use RSS you need an RSS reader (like a browser for RSS) &#8211; or “aggregator” (because the software pulls together various feeds). You have many choices, but there are two primary categories of feed reading applications: installable desktop programs and online services.</p>
<p><strong>Desktop software.</strong> Since RSS newsfeed is very much like email subscription, the most natural is to use single program to handle news and mail. The Mozilla Thunderbird can read RSS feeds right out of the box. There are both commercial and open source plugins for Microsoft Outlook. NewsGator <em>(Outlook Edition)</em> is probably the leading commercial product. You may also try free rsspopper.</p>
<p>Most popular standalone desktop applications are FeedDemon (Windows) and NetNewsWire (Mac OS X). A search for “RSS Reader” at popular search sites will yield many additional results.</p>
<p><strong>Web services.</strong> If you would prefer to use an online service to track and manage your feeds, you have the advantage of being able to access your feed updates anywhere you use a web browser. Both Yahoo and Google provide the RSS content capabilities. The NewsGator provides broad range of services ranging from free subscription plans to feature packed enterprise servers.</p>
<p>Once you have your RSS reader set up, you’re ready to start subscribing.</p>
<p>The Opera and Firefox browsers automatically sense RSS feeds and show small notification icons. In Internet Explorer, though, you may have to manually find and paste the RSS URL into your RSS aggregator.</p>
<p>Many websites feature little orange buttons that say “XML” (RSS is a form of XML) or “RSS.” Click on those to find the URL. Other sites have aggregator-specific buttons. If you click on an “Add to Google” button, for instance, a browser window will open that will allow you to add the RSS to your Google homepage or Google Reader.</p>
<p>If you use My Yahoo, you may want to install the Yahoo toolbar, which gives you a one-click option to subscribe to RSS.</p>
</div>
</div>
</div>
<p>The post <a rel="nofollow" href="http://www.unitedwebcoders.com/rss-introduction/">United Web Coders code &#038; advice for online entrepreneurs RSS for Dummies</a> appeared first on <a rel="nofollow" href="http://www.unitedwebcoders.com"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
