`

Best Wordpress Hosting Providers - 2010

All three hosts offer FREE 1-click Wordpress installs making them the best Wordpress hosting providers. For more web hosting reviews be sure to check out AlreadyHosting.com.

 #1
#2 
 #3
#1 - Bluehost 
Bluehost Review
#2 - Hostmonster 
Hostmonster Review
#3 - iPage 
iPage Review

May 18

I have struggled for a very long time to get my sites indexed (accepted) by DMOZ, the largest human-edited web site directory.   Recently, after a VERY long time waiting to be accepted by DMOZ I finally had a site accepted.   It took a lot of patients but finally succeeded..

Here are a few tips if you are having a similar problem:

1. Apply in a different category - each category of DMOZ is human edited, some of the individuals do a horrible job approving listing and some do quite well.  If you cannot get accepted in your desired category all you need to do is find a similar category and try there.

2. Yahoo Directory is not a bad alternative.. Yes it cost quite a bit for a yearly listing; however, if you are working on your site's SEO and need a strong directory listing YAHOO is a quick way to get listed.

written by mangoorange \\ tags: ,

May 08

I recently wrote an article on one of my websites about search engine optimization (SEO).  If you are interested in learning a little more about SEO and how to improve your SERP rankings, check out this article.

http://www.alreadyhosting.com/articles/guide-to-seo.php

written by mangoorange \\ tags: ,

Mar 24

As an Organizational Communication Major at Murray State University I have an extreme passion towards public speaking.  Having the ability to speak effectively is one of the fastest ways to success in any area of life.  Everyone has the ability to speak well but you must practice.  In one of my classes at Murray I learned about story telling and how it is one of the best tools to utilize when speaking. 

I found this YouTube video today that discusses storytelling... I think you might enjoy it!

written by mangoorange \\ tags:

Mar 23

How To Guide:

How To Install A WordPress Theme:

  • Download the theme of your choice .
  • Unzip it at your [WordPress folder]/wp-content/themes folder.
  • Login to your WordPress Dashboard.
  • Click on the Presentation Tab.
  • Click on the downloaded theme
  • At the top click "Activate Theme"
  • Its that easy :)

Check out our new i3Theme version 1.8!

written by mangoorange \\ tags:

Sep 17

Practical Django ProjectsDjango has been my thing for the past few weeks. It's been a lot of fun reading the James Bennett's Practical Django Projects. Unfortunately, on Sept 3, the release of Django v1.0 has made many of the codes not compatible.

The new release of Django has given me a headache while I was trying to setup django-registration. The problem lies in the upgrading of Django to the latest build. The old Django codes cause a problem in setting the app. Thanks to the guys at the Django Channel that helped me out.

So I hope I can help by writing a tutorial for those who needs it. Stone Mind, once wrote a tutorial on django-registration, but it's out-dated now.

Here it goes:

Prerequisites:
django version 1.0
django-registration version 0.6 (if possible, use the trunk copy)

Step 1, unpack django-registration:
Put the app folder, registration into the project folder. (make sure that your PYTHONPATH is pointing to the project folder). registration folder is the folder that contains __init__.py.

Step 2, setup the application:
Add 'registration' into the list of INSTALLED_APPS. For example,

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',
    'registration',
)

Step 3, setup the database:
Run python manage.py syncdb to populate the tables from the list of applications. Ensure you have filled in the relevant database settings before you run it. Example for sqlite3 database settings,

DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = 'reg.db'
DATABASE_USER = ''
DATABASE_PASSWORD = ''
DATABASE_HOST = ''
DATABASE_PORT = ''

Step 4, setup the url pointer:
Add (r'accounts/', include('registration.urls')) into the list of URLpatterns. For example,

urlpatterns = patterns('',
    (r'^admin/(.*)', admin.site.root),
    (r'^accounts/', include('registration.urls')),
)

Step 5, setup the templates:
Setup the template path by adding /path/to/project/templates/ in TEMPLATE_DIRS. Example,

TEMPLATE_DIRS = (
   '/Users/mangoorange/Projects/Django/reg/templates/'
)

Step 6, inserting the templates:
This part is actually fairly simple. I have provided a copy of a working project, [download#74#nohits], that you can use. Just add in the django-registration app into the project folder. If you want to learn more about template form, you can check it out here.

Step 7, done:
Sorry to disappoint you. It's done. :)

Feel free to share any feedback and comments on the tutorial. Hope it helps.

written by mangoorange \\ tags: , ,