Archive for the ‘Web Host Support’ Category

5 Most Popular .htaccess Tips and Tricks

Monday, March 8th, 2010

5 Ways to Master the .htacess File

There are tons of things you can do from the .htaccess file inside of your web hosting account.  From redirecting the users to controlling who can get in and who can get out, it is a very useful file to have on your hosting account.  To help out the new web hosting clients and to act as a reminder to the old pros around here, I thought I would go through five of the most popular .htaccess tips I know.

Redirect to a Maintenance Page

This is a great one to use if you need to make some quick web page edits, and you don’t want the public to see you edit your web site, while it is still live.

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !/offline.html$
RewriteRule .* /offline.html [R=307,L]

This will redirect anybody who checks out any web page on your web site to the &quotoffline.html&quot file.

Force the Use of “www” in Front of a Domain Name

If you want to keep the www in front of your domain name, no matter how somebody types it in, here is the ‘bit of .htaccess magic you will need:

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^mydomain.com [nc]
rewriterule ^(.*)$ http://www.mydomain.com/$1 [r=301,nc]

Once you have done so, both mydomain.com and www.mydomain.com will both send you to www.mydomain.com

Remove the “www” From in Front of a Domain Name

You can also force your domain to drop the www from the address when typed in, if you would rather have it the other way around. In that situation, you would need to add this to your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.mydomain.com$ [NC]
RewriteRule ^(.*)$ http://mydomain.com/$1 [R=301,L]

This will make both mydomain.com and www.mydomain.com send you to just mydomain.com.

Manually Create Custom Error Pages

Ever check out some of those customized error pages and wonder how it could be done? Just use these snippets of .htaccess code to tell people where to look for your error pages.

   ErrorDocument 400 /errors/400.html
   ErrorDocument 401 /errors/401.html
   ErrorDocument 403 /errors/403.html
   ErrorDocument 404 /errors/404.html
   ErrorDocument 500 /errors/500.html

This tells the server to look inside the “errors” folder and that specific page for each of the different error types. That is not all of the error codes, but they are the ones that will be ‘hit by your users 99 percent of the time.

Block Visitor By IP Address

Need to keep somebody from checking out your web site?  This next tip will give you the ability to deny somebody based on what their IP address is:

order allow,deny
deny from 123.45.6.7
deny from 012.34.5.
allow from all

The above blocks access to the site from 123.45.6.7, and from any sub-domain under the IP block 012.34.5. (012.34.5.1, 012.34.5.2, 012.34.5.3, etc).

That is it for this round up of tips.  For more help with the .htaccess file, and many more things you can do with your web hosting account, be sure to check out the Lunarpages Web Hosting Wiki.

© Lunarpages Web Hosting - Also, don′t forget to follow @lunarpages on Twitter!

Original post by Mitch

Sweet Site Tips for National Cupcake Day

Wednesday, March 3rd, 2010

Happy Cupcake Day!

Who doesn’t love a cupcake or two? 

In celebration of National Cupcake Day, I give you some web site tips that will be sure to leave your web development sweet tooth wanting more.

socialbuttons Socialize Yourself

There are many easy ways you can plug your social profiles or micro-blogging services out there.  Here we have a source that will give you cute icons for the following social networks:  Delicious, Digg, Facebook, Flickr, FriendFeed, LinkedIn, MySpace, Reddit, StumbleUpon, Technorati, and Twitter.

How to Embed a YouTube Playlist

Thanks to relist.tv, you can now deliver a nice flash playlist player for your YouTube videos.  How does it work?  Well, after visiting relist.tv, you just fill out the options and then grab the code to copy and paste into your site’s design.

Tons of WordPress Fun

For our WordPress using clients, these tasty links will be the icing on the cake.

Is that not enough?  Ok, let us top it off with 55 of my favorite WordPress plugins and the best blog hosting guide out there.

May you all have a very fun and fattening cupcake day!

&copy Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch

3 Ways to Say Goodbye to the Guestbook

Wednesday, February 24th, 2010

While there are many guestbook scripts active out there these days, I think it is about time the guestbookers of the world join the rest of us in the year 2010.  The idea of hosting a guest book has come and gone, and has been replaced by much more efficient ways of communication.

So what could you replace your guestbook with? I have a few suggestions that might meet your needs.

Google's Comment Gadget Shout Box – Shout boxes are usually little boxes that life in the sidebar of a web site, and allow people to comment live on the web page with other users.  One of the more popular shout box-like services I would recommend looking into would be Google Friend Connect’s comments gadget. 

Blog – Getting a blog setup and running on your web hosting account is another great way to get commenting added to your web site fairly easily.  Almost every blog script out there will let you comment on an article you post.  Our Blog Hosting Guide is a great first step to check out, if you want to get a blog powered by WordPress up and running in less than an hour.

Forums – My last suggestion is a script and service that just screams for user participation.  Forum scripts will give your web site visitors a place to post their own topics, have discussions and interact with each other on your web hosting account.  Out of all the forum scripts out there, I think SMF might be the very best.

So there you have three more modern ways to have comments left on a web page, that will finally help put the final nail in the coffin for the online guestbook.  If you have any other suggestions, be sure to leave them in the comments.

© Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch

Common Sense Password Picking Tips

Friday, February 19th, 2010

Best Password Choosing Tips

The important key thing to remember about any password is to keep it easy to remember, but hard to guess.  It might be overlooked by some, but having a good password can mean a lot when it comes to web site security.  Hackers can often guess your password if it is a person, place or thing in the dictionary – even with trailing numbers or letters.

The best password advice I can give to you would be:

  • Use Several Capital Letters
  • Use Some Symbols (if allowed)
  • Toss a Few Numbers in There
  • Also Use Some Lower-case Letters Too

Let’s do a little test.  Which one of these password do you think would be more guessable by a hacker.

password1234 or 6Pa55W0r|&gt9

The second one of course, silly. 

Now how you store your password is just as important as the password itself.  Never write down the password and keep it in plain sight.  Jotting it down on a sticky note and then putting your password on your monitor is about as logical as using the 12345 as a password.

So there you have my general password advice I think everybody should use and follow.  Picking a good password is not hard to do.  When you stop and think about it, common sense goes a long way when security comes to mind.

&copy Lunarpages Web Hosting - Also, don′t forget to follow @lunarpages on Twitter!

Original post by Mitch

How to Subscribe to Lunartics

Monday, February 8th, 2010

rss Often we overlook the obvious questions posted to a blog.  One of the most obvious questions would be how do you subscribe an stay updated when new blog articles are posted to the Lunartics blog?  Today I’ll let you know what all your options are, so that you can use the one that suits your needs the best.

We are all about posting web hosting and web development related tips, tutorials and more here on blog.lunarpages.com, so if you want to make sure you don’t miss any of them, stay tuned.

Really Simple Syndication

An RSS feed is a document that follows the Really Simple Syndication specification, and is used to syndicate a web site’s content to other places.  The RSS feed is the file path you need to make this all work.  For the Lunarpages Web Hosting Blog here, our RSS feed is located at: http://feeds.feedburner.com/lunartics.

You can take our RSS feed, and plug it into any number of RSS feed readers out there.  This means you could display our blog posts in your Google Reader account, the iGoogle front page, My Yahoo, Pageflakes, Bloglines, Newsgator and more.  Just click one of these buttons to subscribe via the corresponding service, automatically.

 Subscribe in 
NewsGator Online Add to 
Google Add to netvibes Subscribe in
 Bloglines Add to The 
Free Dictionary Add to Bitty
 Browser Add to Plusmo Add to Excite 
MIX Add to Pageflakes Add to netomat Hub

You can also copy and paste the feed address into any other RSS feed reader you might not see mentioned above.

Get Updates by E-mail

If you want a more traditional way of keeping track of this blog, you could subscribe via e-mail too.  This way you would get a daily e-mail digest of when the Lunartics blog is updated. 

Subscribe to Lunarpages Hosting Lunartics Blog by Email

When you click the link, you will be prompted to enter your e-mail address into the form that appears, and verify that you wish to subscribe. Once you do, you will get a daily e-mail with everything that has been posted on the Lunarpages Web Hosting Blog.

It is easy to subscribe to make sure you get all of our free web hosting tips, cool coupons, incredible offers and so much more.

&copy Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch

10 Most Popular Joomla Security Extensions

Wednesday, January 27th, 2010

Joomla

Joomla is one of the most popular content management systems out there.  Being the most popular does have it’s price though, you have to pay more attention to security related issues.  To help you out, I thought I would find then of the most popular security related extensions for the Joomla CMS script.

JoomlaCloner

JoomlaCloner is a backup and restore component designed for Joomla! By it’s name, the purpose is to give users possibility to clone their Joomla installation and move it over the internet on any location!

Security Images

Ever been to a site where you had to register and the registration form required that you type in the same phrase that is found in a hard-to-read image? Joomla! has now this possibility thanks to my component com_securityimages. It will protect You against most spammers attempt… It is providing 5 famillies of highly configurable captchas.

JUGA – Joomla User Group Access

JUGA is Joomla component that allows you to set what is available to which users on both your Front-end AND Administrator Control Panel. With JUGA, you can assign users to multiple groups. In fact, you can create an infinite number of new groups, so you could assign a single user to a unique group, thereby achieving customized individual access rights for each user.

Core Design Login Module

Core Design Login module for Joomla! 1.5 based on Highslide JS. This module displays a Username and Password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled, (refer to the Configuration settings), then another link will be shown to invite users to self-register.

jSecure Authentication

Joomla has one drawback, any web user can easily know the site is created in Joomla! by typing the URL to access the administration area (i.e. www.site name.com/administration). This makes hackers hack the site easily once they crack id and password for Joomla!. Information: jSecure Authentication module prevents access to administration (back end) login page without appropriate access key.

MetaMod

Control your modules by date, time, recurring time, GeoIP (country of viewer), browser type and language, user name, group, page within other component (e.g. Virtuemart), on-page text, by article keywords, individual article, section/category, etc.

Joomla! Authentication Tools

A variety of useful items (mambots/plugins and components) primarily for LDAP, tested in a Novell eDirectory environment. It contains: LDAP User Synchronization, LDAP User Authentication, LDAP Single Sign On. These tools are available for both Joomla! 1.0 and Joomla! 1.5

noixACL

Try out and compare it with others ACL like Simple ACL, JUGA, JACLPlus! try it and give us your review.  All we want is the best and free ACL for all you to use!

LazyBackup 2

This plugin will save you LOTS of time! It sends a backup every X hours/every X days of your Joomla database in a zip file to one or multiple emails.  The best and easiest automatic backup method for Joomla 1.5! Doesn’t need server tools like cron or scheduled tasks.

SignalLogin

SignalLogin is a Module, that is built to provide a more versatile way to show your Login-Forms. Along with various configurable Options, you can fully customize it’s looks and switch between horizontal (i.E. Mini-Login-Bar at the top of your Page) or vertical (i.E. full Module in Sidecolumn).

Lunarpages is your perfect Joomla hosting solution. 

With an easy one-click install on just about every hosting plan we provide, you could not find a better Joomla hosting partner.  For more help and information about Joomla, be sure to check out web hosting wiki.

© Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch

Pay for Web Hosting and Make a Profit!

Tuesday, January 26th, 2010

Make Money with Lunarpages These are rough economic times, so with that said – how would you like a fool proof way to not only pay for your own hosting account, but make $87 in profits just by giving your opinion on who your friends or web site visitors should host with?  I’ll let you in on this industry secret today.

So how do you make your web hosting account pay for itself? 

All you need are 3 friends and a Lunarpages affiliate program account.

The Basic hosting plan, for one year is $107.40.  That is with no extra features or domain name registration.  Now, within a year’s time – if you are anything like myself, you tend to get people asking you where they too can get a web hosting account.

Well, that is where the magic happens. 

How to Make a Profit on Your Lunarpages Web Hosting Plan

You sign up for the Lunarpages affiliate program and get your own personal link to our services.  When somebody asks for a web host recommendation, you send them your link – like so:

http://www.lunarpages.com/id/yourusername/goto/basic-hosting/

Now, when your friend clicks through that link, and signs up – you will get paid $65 for referring him over to us.  Now, just find two more friends or web site visitors that are in need of hosting – and you have just paid for your own web hosting plan. 

Now lets review.  You paid $107.40 for the Basic hosting plan, you refer 3 friends ($65 for each friend) and get them to sign up for the Basic hosting plan, you make $195.  So, not only do you pay for your web hosting account, but you make $87 in profits!

It really is that easy.

Signing up for the Lunarpages affiliate program is easy to do, free, and a worth wild task to put on your to-do list today if you like making money on your web site hosting.

Sign Up for the Lunarpages Affiliate Program

If you have any questions, be sure to contact us at affiliate@lunarpages.com.  We would love to answer any questions or address any concerns you might have.  So now the only question is, why are you still paying for your own hosting orders?  Get the Lunarpages affiliate program to help you pay for your own hosting account, and make a profit in return.

© Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch

Affiliate Hosting Campaign Tracking

Monday, January 18th, 2010

Affiliate TipsLunarpages affiliate program members get a lot of tools to use, when it comes to marketing.  An affiliate advertising campaign is a great way to track the success of one particular affiliate link, in comparison with another one.  At Lunarpages, you can track your own affiliate tracking campaigns with just a simple quick edit to your Lunarpages affiliate program address.

The first thing you need to, is add this to your address:

&campaign=CampaignName

to the end of your affiliate tracking address. 

So for a campaign tracking a 100×100 banner for the affiliate ID "blog", the campaign URL could look like this:

http://www.lunarpages.com/id/blog&campaign=100×100

To see all clicks made from this campaign, login to your affiliate stats, click on the "overview" tab and then the "references" link off to the right. You will see the following:

Affiliate Hosting Campaign Tracking

If you have one banner for Lunarpages and a text ad, you could format our campaign tracking to manage all clicks and sales for each placement and, at the end of the month, take a look to see which performed best. Did your audience prefer the text link or the banner?

You can create unlimited campaigns and can track these from multiple websites, as well as view the results by day or month.

Want to get paid $65 for every person you refer to Lunarpages?  Be sure to check out our Lunarpages Affiliate Program

© Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch

Top 7 Reseller Hosting Tips

Thursday, January 14th, 2010

reseller-mon The world of reseller hosting might be a little confusing to some.  However, with the right tips in hand – anybody can be a reseller hosting success. In a nut shell, reseller hosting is a form of web site hosting where the account owner has the ability to use their allotted space and bandwidth to host their own or a third parties’ web site.  The account owner can sell the allotted space and bandwidth to the third party in question, and (in most cases) make a profit.

To help you get started in the world of reseller web hosting, here are a few tips you might look into or follow:

  • Start off small.  Don’t think you have to sell 10 or 20 accounts in one day.  Start out with a couple, and expand as need. 
  • You don’t actually have to sell the space.  It is up to you how you want to setup the web sites on it. 
  • Go to friends and family members first, if you are looking for your own customers. 
  • Go visit webmaster related forums, and look for web site designers or customers that might be looking for a new or a different web host.  Then pitch your own service to them.
  • Look for your own unique perks or services you can give to your own clients you are reselling to, so that you can make a good first impression.
  • Keep a watchful eye over those you are hosting, to make sure they don’t get you in trouble with your reseller hosting provider.
  • Get a billing manager in place to help manage your own accounts you are reselling.  The Lunarpages Webmaster Reseller plan comes with a nice one you can add as a service, AccountLab Plus.

Speaking of Lunarpages, we now offer two great plans for web hosting resellers out there.  Check them out here:

I hope those reseller web hosting tips will be of some use to you.  If you have any more tips, be sure to share them in the comments.  Would love to hear your own web hosting reseller success stories too, if you have them.

&copy Lunarpages Web Hosting - Also, don′t forget to follow @lunarpages on Twitter!

Original post by Mitch

Use Gmail With Your Domain’s E-mail Account

Tuesday, January 5th, 2010

gmail-logo

I have a rather wacky e-mail setup, due to the fact that I have so many accounts to manage.  With that in mind, I found the perfect solution for my e-mail needs, and hopefully it will work for you too.  Did you know that you can use Gmail as a POP3 e-mail client?  This way you can both send and receive mail as you@yourdomain.com through the Gmail interface.

If you have ever found yourself wanting to use Gmail more, but did not want to abandon your professional looking e-mail address this is the tutorial you have been looking for.  I’ll share with you how you can setup Gmail to both send and receive e-mail to your non-Gmail e-mail address.

How to Receive Your Lunarpages E-mail in Gmail

Here is how you can add your e-mail account to Gmail.

From within Gmail, click on the Settings link, at the top of the page. Next, click on the Accounts and Import link.

Add a POP3 E-mail Account to Gmail

Now, you will want to click the button labeled, “Add POP3 email account”.  That should pop up a new window where you can input the information about the e-mail account.

  1. Provide your e-mail address (you@yourdomain.com). Click the button labeled, “Next”.
  2. Next, give your user name, password, POP server (yourdomain.com or mail.yourdomain.com).  There are other settings to choose from, but lets ignore them for now.  Click the button labeled, “Add Account”.

Now, when you go to Settings &gt Accounts and Import you should see your e-mail account listed under Check mail using POP3.  If you click the edit info link beside your account, you can then edit the other details we skipped before, such as:

  • Leave a copy of retrieved message on the server
  • Always use a secure connection (SSL) when retrieving mail
  • Label incoming messages
  • Archive incoming messages (Skip the Inbox)

So now Gmail is acting as the e-mail client looking for e-mail from yourgooglename@gmail.com and your hosted e-mail account. That covers receiving incoming mail from both accounts.  What if you need to send mail as you@yourdomain.com?

How to Send E-mail in Gmail from Your Lunarpages Address

Here is how you can send mail using your personal e-mail account, rather than your Gmail e-mail address.  From within Gmail, go to Settings, and then Accounts and Import.   Under the Send mail as: section, click the button that reads, “Send mail from another address”.

Send Mail in Gmail Using Your Domain E-mail Address

This will pop up another window, where you can input your information.

  1. Give your name, as you want it to be seen as the sender when somebody gets an e-mail from you.
  2. Give your e-mail address you wish to send from, such as the one you setup using the previous steps above (you@yourdomain.com).  Now, click the button labeled, “Next Step”.
  3. You then have the option to send mail one of two ways:
    + Send through Gmail (easier to set up – I use this one)
    + Send through yourdomain.com SMTP servers (recommended for professional domains)
  4. You will then be e-mailed a message at this address to verify you are able to use it.  To perform the verification click “Send Verification”. They will then send an e-mail to you@yourdomain.com with instructions on how to verify your address.

Once you complete the verification process, you should then be able to send mail as you@yourdomain.com too.

Now you have yet another option when it comes to picking which e-mail client you wish to use, out of the many choices there are out there today.  Using Gmail with your Lunarpages POP3 hosted e-mail account give you the ability to use the flexibility of Gmail with the reliable e-mail service you know and love here at Lunarpages.

© Lunarpages Web Hosting - Also, don’t forget to follow @lunarpages on Twitter!

Original post by Mitch