Posts Tagged ‘loading’

SEO:Directory Submission

Monday, June 30th, 2008

Guidelines for submitting to Directories

What is a Directory?

A categorized index of web sites that does not use robots is called a directory. All sites that are indexed are submitted manually. You need to submit your web site under a relevant category, after which an editor will review your site and then accept or reject your site according to its content.
Guidelines while submitting to Directories

* Good site design, fast loading pages, and informative content are very important issues.

* From the homepage of a directory take your time and find the appropriate category your site fits into. You can do a keyword search using your most important keywords or key phrases and note the category that lists these sites. That will probably be the best category for your site. You may also have multiple categories, in which case you must submit under all the suitable categories.

* Once you have found a suitable category, look out for a “Suggest a site” or an “Add URL” link. Click on this link to submit your site.

* Since Directories do not use robots, your best bet is to describe your site accurately as the final decision of adding your web site to a directory’s database rests with the editor who reviews your web site.

Top Directories

Yahoo Yahoo!

Yahoo is without a doubt the single most important index on the Internet. Make sure you follow the guidelines given above and Yahoo’s submit page instructions while submitting your site. The effort you put in now will reap huge benefits in the long run. Submit carefully!

Submit to Yahoo
Open Directory - DmozThe Open Directory - Dmoz

Lycos, AOL Search, AltaVista and HotBot feature Open Directory categories within their results pages. As ODP is now the directory listing source for many search engines, it is in the “big leagues” and is a must to submit to.

Read their instructions and submit

Web Design Directories

DesignDir.net - Web Design Directory

DesignDir.net is an industry leading web design and development directory. We bring together the best designers and their customers. URL: (http://www.designdir.net)

Submit to DesignDir.net

HotPlum.com

Top sites - Web templates, web & graphic design, flash, etc. top.hotplum.com
Business Directories
BusinessRanks.com

Complete directory of only business links. Submit to BusinessRanks.co

Displaying Page Loading Time (Steps and Sample Code)

Saturday, June 28th, 2008

Here is how to display your page’s loading time:

1. Use the function microtime() to get the time in micro-seconds
2. Use the explode() function to turn the micro-time into an array.
3. Combine the two parts to the array (the micro-seconds to the seconds).
4. Repeat steps 1,2 and 3 for the bottom of the page
5. Take the time taken at the end of the page from the time taken at the top of the page to determine the total loading time.
6. After rounding the microtime, return it to the browser.

At the top of your page, place:

$m_time = explode(” “,microtime());
$m_time = $m_time[0] + $m_time[1];
$starttime = $m_time;
?>

At the bottom of your page, place:

$round = 3;// The number of decimal places to round the micro time to.
$m_time = explode(” “,microtime());
$m_time = $m_time[0] + $m_time[1];
$endtime = $m_time;
$totaltime = ($endtime - $starttime);
echo “Page loading took:”. round($totaltime,$round) .” seconds”;
?>

PHP:Random Loading

Saturday, June 28th, 2008

You can load random stuff by using this code. For this example, I load random color code:
$selectnumber = rand (1, 5);
if($selectnumber==1) $pagebg=”#990000″;
if($selectnumber==2) $pagebg=”#0000FF”;
if($selectnumber==3) $pagebg=”#00AAAA”;
if($selectnumber==4) $pagebg=”#000099″;
if($selectnumber==5) $pagebg=”#DDDD00″;

Firefox:Image Loading

Friday, June 27th, 2008

If you want to save time and bandwidth, view a site without images. Firefox will remember your setting the next time you view the page.

Firefox:Customized Security Settings

Friday, June 27th, 2008

Control the level of scrutiny you’d like Firefox to give a site and enter exceptions—sites that don’t need the third degree. Customize settings for passwords, cookies, loading images and installing add-ons for a fully empowered Web experience.

Image Rank Factors

Thursday, June 19th, 2008

While most are conscious about ranking well in SERPs many overlook the need to optimise for image search. Image search should NOT be overlooked since it can bring in considerable amount of traffic. As an example, in my personal blog it’s really funny how the search term “Mila Jovovich” gives me the most search traffic and how a vast majority of that traffic comes from image search. Note too that I only posted about Mila Jovovich a couple of times. Goes to show that you just don’t know what will really bring you lots of traffic.

To make sure you don’t miss out on the traffic image search can bring (if you post images on your blog!) here are the factors you should take note of:

1. text surrounding the image - Note that the distance of the text from the image also counts so it makes sense to place the image as near as possible to the related text.

2. text of pages linking to the picture

3. the number of websites containing the same or similar image - This helps determine relevancy of image to the search term

4. size of image - Usually the image with higher resolution ranks better. Note though that users can filter search results by file size. The reasoning behind this may be more for the viewing pleasure since a higher resolution image looks better.

5. Remember though that loading your page with lots of high resolution images may bog down your site causing it to have a longer loading time. Make sure you do not sacrifice usability and accessibility!

6. link relationships between images - Images that are linked together and have related associated text will help determine relevancy

7. frequency of image’s appearance in website - This pertains to logos and other recurring images. It helps determine importance and relevance of image to the website topic.

8. face and name detection - The more faces on an image the higher it is usually ranked. On the other hand if a specific name is queried then a single face with the person searched for will rank better.

Firefox Speed Tweaks

Wednesday, June 18th, 2008

Yes, firefox is already pretty damn fast but did you know that you can tweak it and improve the speed even more?

That’s the beauty of this program being open source.
Here’s what you do:
In the URL bar, type “about:config” and press enter. This will bring up the configuration “menu” where you can change the parameters of Firefox.

Note that these are what I’ve found to REALLY speed up my Firefox significantly - and these settings seem to be common among everybody else as well. But these settings are optimized for broadband connections - I mean with as much concurrent requests we’re going to open up with pipelining… lol… you’d better have a big connection.

Double Click on the following settins and put in the numbers below - for the true / false booleans - they’ll change when you double click.

Code:
browser.tabs.showSingleWindowModePrefs – true
network.http.max-connections – 48
network.http.max-connections-per-server – 16
network.http.max-persistent-connections-per-proxy – 8
network.http.max-persistent-connections-per-server – 4
network.http.pipelining – true
network.http.pipelining.maxrequests – 100
network.http.proxy.pipelining – true
network.http.request.timeout – 300

One more thing… Right-click somewhere on that screen and add a NEW -> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0”. This value is the amount of time the browser waits before it acts on information it receives. Since you’re broadband - it shouldn’t have to wait.

Now you should notice you’re loading pages MUCH faster now!