Dial-Up Internet Access.
Welcome to Trinidadusa.net!
Fast. Friendly. Local.
WWW.TRINIDADUSA.NET
in Trinidad, Colorado

FREE YOURSELF
from huge out-of-town Internet service providers who don't care about you and don't care about Southern Colorado!

Call 845-1424 or 859-5760 Today!

ding.png

CUSTOMER SERVICES

Check Your Mail

Customize Your Mail Settings

Latest Security / Virus News

Latest Linux / Unix News

Latest Technology / Computing News

Search the Internet:
One-click access to Open Directory, Wikipedia, Google and 8 other major search engines. Find what you want fast!

ding.png

PAY YOUR BILL ONLINE

Just click this button:

Trinidadusa.net is PayPal Verified

ding.png

GETTING STARTED

Using Email at trinidadusa.net

Setting Up Email Clients

Tips and Advice

About Slow Connects, Disconnects

Software Downloads
HTML Editors and more.

ding.png

HOSTING

Your Website at www.trinidadusa.net

Web Publishing FAQ:
What you need to know to publish your home page on www.trinidadusa.net.

Domain Name Search
Find out if the domain name you want is available.

The technology that powers trinidadusa.net

ding.png

TRINIDAD, COLOADO

Find products and services in Trinidad, place free classified ads and more at

www.trinidadcolorado.net

ding.png

CONTACT

www.trinidadusa.net
(719) 859-5760

System Administrator:
steve@trinidadusa.net

Office:
431 N. Commercial
Trinidad, CO 81082
(719) 845-1424
Hours:
12:30-5:00 PM Mon-Fri

ding.png

HOME

PHP Powered

PythonPowered.gif

Micro$oft Free

ding.png

"They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
--Benjamin Franklin, 1759

© 2003, 2004, 2005 Trinidadusa.net

WWW.TRINIDADUSA.NET:
Serving Trinidad, Walsenburg, Aguilar, Cokedale, Branson, Kim, Segundo, Weston, Stonewall, Cucahara, LaVeta, Gardner and most places in between!

__digbatsmall.jpg

The Web Publishing FAQ

Frequently asked questions about publishing Web pages on www.trinidadusa.net servers.

Getting Started

I have a dial-up account and want a home page. What do I do?

Call 859-5760 or email the system administrator. We'll set you up immediately.

Your web address will be http://something.trinidadusa.net. You should let us know what you want something to be. It need not be the same as your username. It must be one word, letters and/or numbers only.

Then, using the same username and password you use to dial in, point your ftp client at ftp.trinidadusa.net and start uploading pages.

What's an ftp client? For that matter, what's ftp?

Ftp stands for File Transfer Protocol, which is a technology used to move files around the Internet. An FTP Client is a program which makes it easy to move files via ftp.

The most-used Windows ftp client is WS_FTP. It works great, and its free. You can grab it from the download page. Read the docs that come with the program and you'll be uploading in no time.

How do I register a domain name?

Go to our Domain Name Search Page to see if the name you want is available. You'll also find a link to Internic's list of accredited registrars there, along with a bit of advice from us about how to choose one. If you're planning to have trinidadusa.net host your domain, well take care of this for you without charge, other than the actual registration fee.

How do I promote my site?

  1. Register your site with appropriate search engines:

    • There are programs (some of which are free) that will help you do this. If you want to save money, download one and learn to use it.

    • There are a number websites where you can interactively submit your site to search engines via your Web browser.

    • There are companies that specialize in site promotion. Many are surprisingly inexpensive and do a good job. If you've recently registered a domain name, you've probably already recieved spam from some of them.

    • Check out Search Engine World. Many resources, including online tools. A Robots.txt (see below) tutorial and a Robots.txt validator are here.

    • For more, check out this long list of resources.

  2. Obvious but often overlooked: Don't forget to put your url and email address on your business cards, print ads, etc.

  3. Here is an excellent turtorial on search engines and how to make the most of them.

  4. Search engine spiders are constantly crawling our web server looking for content to index. Some of them look for a file called "robots.txt" and assume you don't want your site indexed if they don't find it. This file tells spiders which files to index and which not to. You should have a robots.txt file at the top level of your site. See Search Engine World. for a good tutorial on how to create this file.

  5. If your enterpise is located in Las Animas County, check out www.trinidadcolorado.net. This site is a local Web portal for the Trinidad, Colorado area which is heavily promoted. Your site can me hosted and promoted as part of trinidadcolorado.net. This is a good choice if your market is primarily local or regional.

How do I put a sign-up form on my page and get the information by email?

Here's the html code you need to do that:

<form action="http://www.trinidadusa.net/sendmail.php" method="post">
<input type="hidden" name="recipient" value="you@trinidadusa.net">
<input type="hidden" name="response_to" value="http://yoursite.trinidadusa.net/thanks.html">

...rest of your form goes here....

</form>

Replace you@trinidadusa.net with your real email address. Replace http://yoursite.trinidadusa.net/thanks.html with the full url of the page you want displayed after the form executes.

Do you maintain backups of my data?

We backup all data on our servers every 24 hours. Please note that we do this on a best-efforts basis, and take no responsibility and accept no liability for the existence and integrity of your data. Your data is your responsibility and yours alone, so make sure you have backups too.

Help! I don't know what to do next!

All the knowledge you need is easily found on the Internet. See the download page for links to useful online tutorials and refernce works,

Tech Stuff

What kind of Web servers are you running?

Apache on Linux. Here is a more detailed list of our software.

What scripting languages are supportted for dynamic content?

Perl, Python and Php4.

Can I use Server Side Includes?

Yes. SSI is supported for dynmaic content but not for executing programs on the server.

I have some Perl/Python cgi's written for a Windows server. Will they run on Linux?

Probably, with some tweaking. Here are some tips:
  1. Paths like C:\path\to\webroot\yourfolder need to be changed to /var/www/html/yourfolder.

  2. Remember that Linux file paths are case-sensitive. "this.cgi", "This.cgi" and "this.CGI" are completely different files.

  3. The first line of a Perl cgi must be "#!/usr/bin/perl"

  4. The first line of a Python cgi must be "#!/usr/bin/python"

  5. If the script is to run from a cgi-bin directory, the file extension should be ".cgi".

  6. Line endings are the most common source of trouble. Windows uses a two-character line ending (carriage return, linefeed), while Linux gets along with just the linefeed. If you save changes on Windows using a primitive text editor like Notepad, the unused carriage returns will still be there and the server will see things like "myvar = somevalue\r" instead of "myvar = somevalue". The solution is to download a more full-featured text editor. NoteTabLite is nice---and free. See the download page.

  7. Don't forget to set the file permissions. Unix uses permissions, not file extensions, to decide what is or isn't executable. Chmod 0755 should do it. If your ftp client doesn't support chmod, give a call and we'll do it for you.

  8. Perl, Python, and Php all contain some system-specific features which my cause a problem if you're using them. Otherwise, 1-7 should get you going.
Can I Telnet into the server?
Sorry, no.

Will my Active Server Pages work?

No. Propietary Microsoft technologies do not run on Unix/Linux servers. Talk to Uncle Bill about it. Meanwhile, there is a utility called asp2php which reportedly does a nice job of converting .asp files to php. If you try it, let us know what kind of results you had.

I want to put my email address on my pages, but want to hide it from spam bots.

The best way hide email addresses from spam bots is by converting them into html escape sequences.

lonny@trinidadusa.net

becomes

&#108;&#111;&#110;&#110;&#121;&#64;&#116;&#114;&#105; &#110;&#105;&#100;&#97;&#100;&#117;&#115;&#97;&#46; &#110;&#101;&#116;

and

lonny@trinidadusa.net

becomes

<a href="mailto:&#108;&#111;&#110;&#110;&#121;&#64;&#116; &#114;&#105;&#110;&#105;&#100;&#97;&#100;&#117;&#115; &#97;&#46;&#110;&#101;&#116;"> &#108;&#111;&#110;&#110;&#121;&#64;&#116;&#114;&#105; &#110;&#105;&#100;&#97;&#100;&#117;&#115; &#97;&#46;&#110;&#101;&#116;</a>

These encoded strings will display perfectly using any web browser but to spam bots, which read the actual page source, they are just gibberish. One customer reports that the amount spam she receieves decreased by more than 50% when she did this.

Converting strings this way is not as hard as it looks. We provide this tool which makes it easy.

__digbatsmall.jpg

WWW.TRINIDADUSA.NET:
Serving Trinidad, Walsenburg, Aguilar, Cokedale, LaVeta, Gardner and most places in between!