Best Webhosts
Best Webhost
by admin on Mar.01, 2010, under Best Webhosts
Our Recomended Webhost for the month:
DreamHost
With our promo take 50 USD OFF using promotional code: GIVE50GIFT
That gives you a One Year webhost for only 69.4USD
Please share you opinions if you think otherwise.
Below is a table comparing popular webhosts and any hidden limtations they have. If you have updates to this please comment.
| Feature | Dreamhost | Hostmonster | GoDaddy (Delux) |
| Price/Month | $9.95 | $6.95 | $6.99 |
| Price Promo 1yr | $119.4-50=$69.4 | Adhoc 5.95$x12=$71.4 | $6.64×12=$79.68 |
| Host Unlmited Domains | Yes | Yes | Yes |
| Hosting Space | Unlimited | “Unlimited” but if high your account will be suspended | 150GB |
| Bandwidth | Unlimited | Unlimited | 1500GB |
| SSH Access | By Default | Need to send ID | Can be requested no ID needed |
| CPU Limit | No Limitation | 60Sec then Site suspended | No Limitation |
| Uptime | 99.9 | 99.9 | 99.9 |
| MYSQL Databases | Unlimited | 100 | 25 |
| Email Accounts | Unlimited | Unlimited | Unlimited |
| First Yr Domain Registration Free | Yes | Yes | No |
| Custom Cronjob | Yes | Yes | Yes |
| Tech Support | Chat, Email Ticket system(response time: 1-24hours),Phone: only call back | Phone, Chat, Ticket(Response time 1-24 Hours) | Phone,Ticket(slow 1 Day response time) |
| Install Custom PHP | Yes | No | No |
| FFMPEG | Yes | No | No |
| Max File Upload Size | 7MB, unlimited with Custom PHP install | 2MB, can be increased with copying php to all folders, still limited with CPU time limit | 7MB |
| Can host Adult Content | Yes | No | Yes |
| Loading speed for a 64kb website size | 2-3 Seconds performance is stable since dreamhost upgraded to new servers | 2-3 Seconds, performance was stable | 5-6 Seconds |
| Midnight Commander | Installed by default | Not installed and can not install it | Not sure |
Commands using iconv to fix website Characters
by admin on Jun.03, 2009, under Best Webhosts
Here are some useful SSH commands to fix special characters on your website.
Sometimes you would see ? or strange charsets…
Recommended to use UTF-8 and have your database collation also as utf-8
Convert a bunch of HTML files from ISO-8859-1 to UTF-8 file encoding in a folder and all sub-folders
for x in `find . -name ‘*.html’` ; do iconv -f ISO-8859-1 -t UTF-8 $x > “$x.utf8″; rm $x; mv “$x.utf8″ $x; done
Convert mysql database from latin1 to utf8
mysqldump –add-drop-table -uroot -p “DB_name” | replace CHARSET=latin1 CHARSET=utf8 | iconv -f latin1 -t utf8 | mysql -uroot -p “DB_name”
find . -name “*.php” -exec iconv -f ISO-8859-1 -t UTF-8 {} -o ../newdir_utf8/{} \;
Batch convert files to utf-8
iconv -f ISO8859-1 -t UTF-8 OLDFILE > NEWFILE
For example in ssh type:
iconv -f ISO8859-1 -t UTF-8 listing_default.tpl >listing_default2.tpl
Then rename or delete your old listing_default.tpl and rename listing_default2.tpl to listing_default.tpl
For example in ssh type:
iconv -f ISO8859-1 -t UTF-8 listing_default.tpl >listing_default2.tpl
Then rename or delete your old listing_default.tpl and rename listing_default2.tpl to listing_default.tpl