Results 1 to 9 of 9
-
23rd Mar 2010, 02:59 AM #1OPMemberWebsite's:
crackingforum.com linkparadox.com crackz.me15 Essential Checks Before Launching Your Website
Nice little article I found.
Favicon
A favicon brands the tab or window in which your website is open in the user’s browser. It is also saved with the bookmark so that users can easily identify pages from your website. Some browsers pick up the favicon if you save it in your root directory as favicon.ico, but to be sure it’s picked up all the time, include the following in your header.
PHP Code:<link rel="icon" type="image/x-icon" href="/favicon.ico" />
PHP Code:<link rel="apple-touch-icon" href="/favicon.png" />
Your page title is the most important element for SEO and is also important so that users know what’s on the page. Make sure it changes on every page and relates to that page’s content.
PHP Code:<title>Yoursite | Slogan | Any Keywords</title>
PHP Code:<meta name="description" content="Type your description here." />
Just when you think your design looks great, pixel perfect, you check it in IE and see that everything is broken. It’s important that your website works across browsers. It doesn't have to be pixel perfect, but everything should work, and the user shouldn't see any problems. The most popular browsers to check are Internet Explorer 6, 7 and 8, Firefox 3, Safari 3, Chrome, Opera and the iPhone.
Proofread
Read everything. Even if you've already read it, read it again. Get someone else to read it. There’s always something you'll pick up on and have to change. See if you can reduce the amount of text by keeping it specific. Break up large text blocks into shorter paragraphs. Add clear headings throughout, and use lists so that users can scan easily. Don’t forget about dynamic text too, such as alert boxes.
Links
Don’t just assume all your links work. Click on them. You may often forget to add “http://” to links to external websites. Make sure your logo links to the home page, a common convention.
Also, think about how your links work. Is it obvious to new users that they are links? They should stand out from the other text on the page. Don’t underline text that isn’t a link because it will confuse users. And what happens to visited links?
Functionality Check
Test everything thoroughly. If you have a contact form, test it and copy yourself so that you can see what comes through. Get others to test your website, and not just family and friends but the website’s target market. Sit back and watch how a user uses the website. It’s amazing what you’ll pick up on when others use your website differently than how you assume they’d use it. Common things to check for are contact forms, search functions, shopping baskets and log-in areas.
Graceful Degradation
Your website should work with JavaScript turned off. Users often have JavaScript turned off for security, so you should be prepared for this. You can easily turn off JavaScript in Firefox. Test your forms to make sure they still perform server-side validation checks, and test any cool AJAX stuff you have going on.
Validation
You should aim for a 100% valid website. That said, it isn’t the end of the world if your website doesn’t validate, but it’s important to know the reasons why it doesn’t so that you can fix any nasty errors. Common gotchas include no “alt” tags, no closing tags and using “&” instead of “&” for ampersands.
RSS Feed
If your website has a blog or newsreel, you should have an RSS feed that users can subscribe to. Users should be able to easily find your RSS feed: the common convention is to put a small RSS icon in the browser’s address bar.
Put this code between your <head> tags.
PHP Code:<link rel="alternate" type="application/rss+xml" title="Site or RSS title" href="link-to-feed" />
Installing some sort of analytics tool is important for measuring statistics to see how your website performs and how successful your conversion rates are. Track daily unique hits, monthly page views and browser statistics, all useful data to start tracking from day 1. Google Analytics is a free favorite among website owners. Others to consider are Clicky, Mint and StatCounter.
Sitemap
Adding a sitemap.xml file to your root directory allows the major search engines to easily index your website. The file points crawlers to all the pages on your website. XML-Sitemaps automatically creates a sitemap.xml file for you. After creating the file, upload it to your root directory so that its location is www.mydomain.com/sitemap.xml.
If you use WordPress, install the Google XML Sitemaps plug-in, which automatically updates the sitemap when you write new posts. Also, add your website and sitemap to Google Webmaster Tools. This tells Google that you have a sitemap, and the service provides useful statistics on how and when your website was last indexed.
Defensive Design
The most commonly overlooked defensive design element is the 404 page. If a user requests a page that doesn’t exist, your 404 page is displayed. This may happen for a variety of reasons, including another website linking to a page that doesn’t exist. Get your users back on track by providing a useful 404 page that directs them to the home page or suggests other pages they may be interested in.
Another defensive design technique is checking your forms for validation. Try submitting unusual information in your form fields (e.g. lots of characters, letters in number fields, etc.) and make sure that if there is an error, the user is provided with enough feedback to be able to fix it.
Optimize
You’ll want to configure your website for optimal performance. You should do this on an ongoing basis after launch, but you can take a few simple steps before launch, too. Reducing HTTP requests, using CSS sprites wherever possible, optimizing images for the Web, compressing JavaScript and CSS files and so on can all help load your pages more quickly and use less server resources.
Besides, depending on the publishing engine that you are using, you may need to consider taking more specific measures – for instance, if you are using WordPress, you may need to consider useful caching techniques to speed up the performance.
Back Up
If your website runs off a database, you need a back-up strategy. Or else, the day will come when you regret not having one. If you use WordPress, install Wordpress Database Backup, which you can set up to automatically email you backups.
Print Style Sheet
If a user wants to print a page from your website, chances are she or he wants only the main content and not the navigation or extra design elements. That’s why it is a good idea to create a print-specific style sheet. Also, certain CSS elements, such as floats, don’t come out well when printed.
To point to a special CSS style sheet that computers automatically use when users print a page, simply include the following code between your <head> tags.
PHP Code:<link rel="stylesheet" type="text/css" href="print.css" media="print" />
Profit Reviewed by Profit on . 15 Essential Checks Before Launching Your Website Nice little article I found. Favicon A favicon brands the tab or window in which your website is open in the user’s browser. It is also saved with the bookmark so that users can easily identify pages from your website. Some browsers pick up the favicon if you save it in your root directory as favicon.ico, but to be sure it’s picked up all the time, include the following in your header. <link rel="icon" type="image/x-icon" href="/favicon.ico" /> And if you have an iPhone favicon: Rating: 5
-
23rd Mar 2010, 01:13 PM #2Member
Thanks for the tips mate ..
-
23rd Mar 2010, 04:11 PM #3Member
Good read, cheers.
-
30th Mar 2010, 01:19 PM #4Member
nice read mate. bookmarked this for future projects
-
31st Mar 2010, 11:33 PM #5Member
Thanks for sharing. Nice tips
-
1st Apr 2010, 06:08 AM #6Member
awesome list !!! thx !!
-
2nd Apr 2010, 03:20 PM #7Member
Thanks for tips m8
-
2nd Apr 2010, 03:36 PM #8mmm mmm!
Great share
HATERS GONNA probably bring up some valid points considering I am an ignorant little twat so far up my own ass that i blame my problems on everyone and if you criticize me you're automatically wrong.
-
2nd Apr 2010, 03:39 PM #9Member
SuperB tips for Beginners
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[PHP] Checks if a website is up or not using isup.me
By _Vick in forum Web Development AreaReplies: 0Last Post: 23rd Jan 2012, 04:29 AM -
So I Got a New Lappy What apps are essential
By Mind Freak in forum General DiscussionReplies: 13Last Post: 5th Dec 2011, 04:42 PM -
Essential applications
By CM in forum General DiscussionReplies: 13Last Post: 20th Aug 2010, 12:53 PM -
15 Essential Checks Before Launching Your Website
By pi0tr3k in forum Webmaster ResourcesReplies: 8Last Post: 7th Mar 2010, 10:55 PM -
GotApi - A bookmark essential for developers
By DeXTeR in forum Useful SitesReplies: 1Last Post: 11th Jan 2008, 05:12 AM
themaPoster - post to forums and...
Version 5.23 released. Open older version (or...