Wednesday, November 12, 2008

Where to get slide films cross processed in London

Below is a list of known outlets in London where you can ge your 35mm colour slide films cross processed.

Kodak Express in Camden
Tel: 0207 387 9882
Location: NW1 7JL
Price: £9.99 for developing only
£19.99 for developing and scanning to cd (4mb files)

Snappy Snaps in Moorgate
Tel: 0207 638 2876
Location: EC2M 6SL
Price: £11.99 for developing and scanning to cd


Wednesday, July 23, 2008

How to install PHPList on Hostagor Hosting package

Are you haveing problems installing PHPLIst on your Hostgator account? Will PHPList noty install? If the instalklation appears to have been successful but you receive a 500 server error when you try to navigate to the mail page try the following:

In the directory where you installed PHPList open up the htaccess file in edit mode.

You need to comment out the last line. Change

php_flag magic_quotes_gpc on

to

#php_flag magic_quotes_gpc on

Now retry viewing the mail page. Hopefully you should now be able to enter and begin using PHPList on your hostgator account!

Thursday, May 15, 2008

How to write & display code in a blogger post

to display code simply use the html code tags.

Right click this page to view the code tags in this example below:

This is some example code!

How to set up multiple sites on XAMPP

If you are having a problem setting up multiple web sites using XAMPP try the following process:

Assumptions- root folders for your two sites are:

c:/mysite/
c:/myweb/

1) add these lines to the Windows Hosts file (C:\WINDOWS\system32\drivers\etc\hosts)

127.0.0.1. myweb
127.0.0.1. mysite

2) Into Apache's "\xampp\apache\conf\Http.conf" file add the following:


<Directory c:\myweb>

Order allow,deny

Allow from all

</Directory>



<Directory c:\mysite>

Order allow,deny

Allow from all

</Directory>



3) Add this is the "\xampp\apache\conf\extra\httpd-vhosts.conf" file:


<VirtualHost *:80>

ServerName myweb

DocumentRoot C:\myweb

<Directory C:\myweb>

IndexOptions +FancyIndexing NameWidth=*

Options Includes FollowSymLinks Indexes

AllowOverride All

Order allow,deny

Allow from all

</Directory>

</VirtualHost>



<VirtualHost *:80>

ServerName mysite

DocumentRoot C:\mysite

<Directory C:\mysite>

IndexOptions +FancyIndexing NameWidth=*

Options Includes FollowSymLinks Indexes

AllowOverride All

Order allow,deny

Allow from all

</Directory>

</VirtualHost>


Now open a browser and simple type either myweb or mysite and you should be able to see both of your site wih all the php in their full glory!

Friday, January 11, 2008

How to check websites listing position in google

How to check a sites listing position in Google

Naturally when developing a website or blog you need to be able to track the position that your site get listed in google for a particular keyword. As you apply SEO techniques and market your site over time then hopefully your site will move up the listings for your particular keyword.

Unfortunately google does not currently provide this information, however the answer is relatively easy to find:

This is the simplist and my favourite method as you know it is 100% accurate. All you do is open up google and click on the "advanced Search" link just to the right of the search box.




On the following screen type your target keyword into the input box next to "with all of the words". In the example below I have searched for "chilli". Then change the box to the right to display 100 results per page and hit search.




On the resulting screen you will see the top 100 sites returned by google for the search word (Chilli). Now simply hit ctrl+f and paste the exact url of your site into the search box and click find. If your site is listed in the top 100 the cursor will take you to your listing. Then all you have to do is simply count how far up or down your search is to work out your listing.

If your site doesn't appear then scroll to the bottom of the page to and click on "Next Page" and repeat the search to see your site is listed between 101-200.

Also in order to narrow the search a little you can try searching displaying 50 results per page.

Thursday, January 10, 2008

blogging: How to add categories

Here is a neat little hack from the .net team on how to add categories to your blogger blog.

1. Make sure that the titles of your posts contain the category names that you want to assign them

2. Visit this page to generate the code needed to create the categories.

3. Copy and paste the code into your blog template (sidebar), save and...

hey presto! You now have a categories section on your blog!