new website
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- new website
new website
30-06-2011 3:13 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
www.schersmith.co.uk & there is no search engine that can pick up my site.Any ideas?
Re: new website
30-06-2011 3:30 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Some engines like google provide tools to help you make sure your site is being 'seen' by their search bots:
https://www.google.com/webmasters/tools/
It's worth making use if them as they are quite useful in understanding how sites are picked up and listed in search results.
Good luck
Re: new website
30-06-2011 3:57 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote I am by no means an expert but it can take quite some time for search engines to pick up a new website
Correct. Also the number of links which go to / from other sites, should help it get found. (e.g. this forum is trawled quite alot, and posting the link here may make googles 'bots' go to it, and start indexing

Theres lots of ways to optimise results, a quick google of "SEO" will bring up millions of results.
Regards
Re: new website
30-06-2011 6:27 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Kind regards
Re: new website
03-07-2011 8:35 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

Re: new website
05-07-2011 3:12 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Like i wouldnt recommend doing what James has done to his Titles. Your page titles should be meaningful, and succinct. However you can add lots of meta words - but be cautious as adding huge paragraph after paragraph of meta keyword can ensure you *LOSE* rankings too (e.g. if it finds your keywords are not relevant)
With a page with lots of images (like James' site) id recommend making sure *all* images have ALT and TITLE Tags (this is standard practice) but it will ensure that anyone who is browsing your site with a non standard browser (e.g. Lynx, a text only browser) will be able to tell what the image is of - it can also aid your images coming up in image searches. (e.g. alt="A landscape photo showing grassy hills in the background, with a gravel path in the foreground. At the end of the path is a wooden gate") etc. make sure they're good and descriptive - not just "logo", "photo", "<persons name>".
James - have you thought about adding any protection to your photos? they seem very copyable to me, also did you know that you can link to external CSS files - this will speed up someones browsing of your site (as they do not have to download your stylesheet everytime they change page)
Regards
Re: new website
05-07-2011 9:28 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

Re: new website
05-07-2011 9:41 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
my personal preference is PHP, and i like to keep each individual file small (nice and fast) also a browser will open several connections when downloading a page (usually at least 4) this means that instead of getting 1 peice of information at once, potentially it can 'grab' at least 4 at once.
i normally structure my pages like this:
<html>
<title>Service Status Pages !</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<?php include "navibar.php" ?>
<<<<<< HTML CONTENT >>>>>>>>>>>
(this could also be changed to say, <?php include "maincontent.php" ?>
<?php include "footer.php" ?>
.....
** Note the "include" means its "including" another file - so that file has to exist or you arent 'adding' anything 😉
This is a 'fast and dirty' way of adding php elemented to a HTML page (but the file extension should be .PHP)
doing it this way means that you can use an editor like dreamweaver to do your tables etc, without the need for it to be on a 'live' php server.
As you can see my "Stylesheet" is css.css (imaginative name!) adding that one line of code- replaces the entire style sheet and makes your pages much easier to read, particularly when going back in a few months time to edit them!
You would then populate your css file as if you were doing your stylesheet in the page...
e.g.
#wrapper{
margin-left: auto;
margin-right: auto;
width: 90%;
height: 80%;
}
#content1{
text-align:center;
float:top;
background-color:#CCCCCC;
color:#FFFFFF;
padding:0;
width:90%;
height:20%;
}
.......
For example

I'm sure someone will come along and say theres a better way / more efficient way of doing this - this is my personal favourite and normally means my largest file is about 30KB.
In terms of protection, have you looked at just basic things, such as Right click Disable, Water marking. Make your pics thumbnails then when its clicked the larger images are watermarked (link to your site, your name) for example.
Regards
Re: new website
05-07-2011 9:54 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

Re: new website
05-07-2011 10:09 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

@JamesM - its all about practice and learning. I started learning HTML at school - prior to this i'd taught myself quite abit. Since then i've taught myself how to do PHP + SQL bits, which going to college / uni has helped me refine into better methods of working. Lecturers look at my hueg list of files then look at marking me down for 'poor directory structure' - its only explain my working, and justify it that i get to keep those marks 😛
What i'd recommend doing while your still learning, i used to make a MASTER.php (then set it to read only) open this up with dreamweaver as your 'blank canvas' (e.g. the black page with all the photos put in) then all you have to do is drag in your piccies

Or, go one better and look at a peice of software such as Gallery You could use this as a CMS - design a front page and have your gallery, which can be protected with various plugins (if i remember correctly) you can also find software similar to gallery - which does your watermarking & thumbnail creation automatically when you upload a file - seriously saves some time!. Wordpress is a good tool also to play with

Regards
Re: new website
05-07-2011 10:24 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page