|
|
 |
 |
 |
|
Treasure Coast Web Designs
If you are looking to create your own website here are the 3 things you need and in this order:
1. Domain Name - $10 to $20 (preferably with an ICANN accredited registrar)
2. Web Hosting - Between $50 and $1,000 annually. Generally $100-$200 for most people.
3. Web Design - Between $100 and $10,000 annually. Generally $300-$500 for most people.
Please make sure you have a domain name registered with an ICANN accredited domain name registrar. Network Solutions or GoDaddy are good choices. Avoid web hosting or web design companies that want to register your domain name for you. Many stories can be found online about good people losing their domain names because of 3rd-rate web hosts trying to pass themselves off as registrars. Take control of your own domain name from the start and go with a reputable registrar, you'll save yourself a lot of time and energy in the long run.
Here is a current list of ICANN accredited registrars.
| Design Packages |
|---|
|
HTML Website $200
|
PHP Website - $500 USD
|
• 3 pages designed by templating
• header graphic with company/personal logo
• footer graphic with TCD small footprint logo
• search engine friendly meta keywords
• designed with xhtml and css compliance
• time based maintenance fee for requested updates
|
• 5 pages designed by templating
• universal header graphic with company/personal logo
(faster pages)
• universal footer graphic with TCD small footprint logo
(faster pages)
• search engine friendly meta keywords
• designed with xhtml and css compliance
• time based maintenance fee for requested updates
|
|
Open-Source CMS Package - $700 USD
|
Open-Source E-Commerce Package - $1000 USD
|
• DragonflyCMS, Joomla, PHP-Nuke, Mambo, or Wordpress
• Installation, Setup, Customization
• customized universal template
• web interface for content administration
• administrative training
• content creation training
• template design with xhtml and css compliance
• task based maintenance fee
|
• Zen-Cart Solution
• Installation, Setup, Customization
• up to 10 products upon initial setup
• web interface for product administration
• administrative training
• content creation training
• designed with xhtml and css compliance
• task based maintenance fee
|
If you have any questions or would like a customized package quote please Contact Us
| |
 |
 |
 |
 |
Denying IP Ranges with htaccess |
|
 |
 |
 |
|
When it comes to preventing unwanted visitors such as email harvesters, forum spammers, and otherwise generally bad bots; admins have been using the .htaccess file with a ruleset of deny from ip. That's fine for a case by case basis but say you want to deny an entire ip range for whatever reason you want.
That's where CIDR Notation comes into play. CIDR stands for Classless Inter-Domain Routing. It is a method of categorizing and allocating IP addresses for efficiently routing IP packets on the Internet.
Basically it's an amendment tacked onto an ip address. After DNS was created they knew the standard IPv4 range was not scalable enough. CIDR is an attempt to provide additional efficiency of packet routing to IP addresses within the same geographic area. The whole system was designed to be a temporary measure until a better solution (IPv6) could be implemented. Because CIDR has proven it's usefulness as an additional method for packet routing it is being worked on for IPv6 as well.
CIDR is not a perfect way to specify a range for IP deny but it can make the life of an admin much easier. Now we will go over some real world examples and how to save your htaccess file from getting bogged down with hundreds of IP Deny lines.
Here is an example of an IP Deny within .htaccess which bans a range of IP's from DotBot.
deny from 208.115.111.240
deny from 208.115.111.241
deny from 208.115.111.242
deny from 208.115.111.243
deny from 208.115.111.244
deny from 208.115.111.245
deny from 208.115.111.246
deny from 208.115.111.247
deny from 208.115.111.248
deny from 208.115.111.249
deny from 208.115.111.250
deny from 208.115.111.251
deny from 208.115.111.252
deny from 208.115.111.253
deny from 208.115.111.254
deny from 208.115.111.255
As you can see there are quite a few IP's that DotBot has at it's disposal. Now go over to Mikero.com's CIDR IP Calculator and plug in the IP ranges. It will spit out a very nicely formatted CIDR range to deny.
deny from 208.115.111.240/28
By the way, if you use Whois on some domains such as dotnetdotcom.org (DotBot's home), sometimes the registration details will display a CIDR address for you. That can make your life easier if they become a nuisence but in most cases using Whois on every IP is more work than it's worth. Most admins just stick with using ARIN for quick and painless IPv4 probing of visitors indexing their site.
That's it. All those deny lines are gone thanks to CIDR addressing. As mentioned earlier CIDR is not perfect. There are instances where you can't specify the exact range you want. The Mikero CIDR calculator will automatically show you the next largest range which includes the range you want. Sometimes, that can include a couple hundrend million more IP addresses than you want so it's definitely not a good idea to use it for that purpose. There is always a way around it though as I'll detail.
Let's say you want to ban ranges 85.0.0.0 to 89.255.255.255. If you are looking for an IP deny solution then you are probably familiar with using
deny from 85
deny from 86
deny from 87
deny from 88
deny from 89
In this instance CIDR is actually no good. What you have been doing is the easiest method. CIDR will output the following if you try to ban by that range.
Resulting network range (in CIDR notation): 80.0.0.0/4
I had to expand your range by 184549376 addresses, or 220%.
As you can see, CIDR couldn't calculate the exact range and had to expand out to the next possible range. Doing so included an additional 184549376 addresses. Not good. In this instance it's best to use the simple
deny from 85 method
OR
if you want to write that in CIDR notation it would be
deny from 85.0.0.0/8
deny from 86.0.0.0/8
deny from 87.0.0.0/8
deny from 88.0.0.0/8
deny from 89.0.0.0/8
Whenever you want an entire range from the first octect the CIDR notation is always /8:
192.0.0.0 to 192.255.255.255 = 192.0.0.0/8
65.0.0.0 to 65.255.255.255 = 65.0.0.0/8
and so on.
I don't pretend to understand CIDR Notation or calculations yet. What I have found is a very easy way to shorten .htaccess rules with the use of CIDR. Thanks to the excellent calculator by Mikero.com for providing an easy way for admins to learn more about CIDR.
|
 |
|
Posted by Devon Saturday, March 14, 2009 (01:44:45) |
Read More... | 1 comment | | Score: 0
|
| |
 |
 |
 |
 |
Major Webhosts upgrade to PHP5 and MySQL5 |
|
 |
 |
 |
|
Most web hosts have been slowly converting to PHP5 and MySQL5 over the course of the past 2 years. It seems as though most of the world is now running PHP5 and MySQL as the major hosts such as Site5 have completed the upgrades.
For those still running DragonflyCMS 9.1.2 with a newly upgraded PHP and MySQL you'll find many modules and functions will break especially the forums. 9.1.2 sites will still function but with a lot of errors which seem to come from nowhere. The culprit is when a webhost upgrades PHP, MySQL, and Apache.
For example, PHP functionality for dynamic signatures will break in PHP5 because ImgPNG compression is now 1-9 instead of 1-100. It's highly unlikely that anyone was using compession 9/100 with PHP4 because the image would be extremely degraded in quality. That's just one of many examples of code changes needed in PHP5. The above example does not affect DragonflyCMS directly but it's just an example of what can affect coding.
|
 |
|
Posted by Devon Monday, February 23, 2009 (06:55:24) |
Read More... (1.44 KB) | comments? | | Score: 0
|
| |
 |
 |
 |
 |
New Direction |
|
 |
 |
 |
|
Treasure Coast Designs will be moving in a new direction soon. That of strict commercial development. We will no longer be giving away free design templates, tutorials, or cms addons. Doing so in the past has only proved to be more time consuming to create and support. We will continue to provide the same excellent level of support for our many client sites powered by DragonflyCMS, PHP, and HTML.
Those in need of support for future theme upgrades will be dropped. We will no longer be supporting DragonflyCMS further than version 9.1.2. It's highly recommended that everyone find another theme designer for your DragonflyCMS needs if you plan to continue with the C.M.S. past 9.1.2.
For TCD clients with PHP and HTML powered sites this change of direction will not affect you.
|
 |
|
Posted by Devon Sunday, September 23, 2007 (09:54:51) |
Read More... | 6 comments | | Score: 0
|
| |
 |
 |
 |
 |
Commercial Themes Price Drop |
|
 |
 |
 |
|
TCD currently offers 2 commercial themes for sale. TCD_AquaRadio and TCD_UniversalGame. Aqua Radio was priced at $500. After receiving a lot of complaints on the theme pricing; All theme prices have been reduced dramatically. TCD_AquaRadio has been re-priced at $100 USD.
The newest theme creation TCD_UniversalGame was specifically created for clan/guild gaming sites. It's a dark fixed width (990px) theme with 1 large graphical header image. Most clan sites enjoy building their own header images but still lack the photoshop and coding knowledge to create complex slices for use with DragonflyCMS. This takes care of that need. 1 huge image is made available for your customization needs.
As always customization services and pricing are available for purchase from the store. You can have TCD customize any theme on the planet for you. It doesn't specifically have to be a TCD created theme. We can work with any theme you bring us as long as you have permission to use that theme on your site (and we will check with designers of commercial themes given to us).
All commercial themes available in our theme store will now have a lowered price tag of $100 USD. Themes come with full PSD files for graphics and some icons. Customization services not included with any commercial theme. Commercial licenses limit usage to 1 site. We will give discounts for multiple purchases by a single individual for use on multiple sites.
|
 |
|
Posted by Devon Thursday, August 02, 2007 (21:47:21) |
comments? | | Score: 0
|
| |
 |
 |
 |
 |
Server Move Complete |
|
 |
 |
 |
|
We are now on a new server and hosted by our subsidiary company T.C.W.H.
There was only about 10 minutes of downtime as our database was being transferred after the domain propagated. Everything went smoothly.
Proudly hosted by www.TreasureCoastWebHosting.com (coming soon...)
|
 |
|
Posted by Devon Wednesday, August 01, 2007 (14:05:45) |
Read More... | 1 comment | | Score: 0
|
| |
 |
 |
 |
|
|