Author |
Message |
Spike
TSGK Member

Joined: 06 Jul 2006 Posts: 460 Location: Guernsey (Channel Islands off the coast of france) Country:  Browser:  Age: 33
|
Posted: Sat Jun 09, 2007 17:45 Post subject:
My new site Subject description: :D |
|
Hi all, just (about) finished creating my site check it out @ http://www.geocities.com/mike_spike007/index.htm
And tell me what you think here please (Comments and criticisms, or other )
EDIT: just found out IE doesnt like that image map....
_________________
Ask me for a sig/avatar and I will make you one
Last edited by Spike on Sat Jun 09, 2007 19:39; edited 1 time in total
|
Back to top
|
|
 |
Controllerboy_TSGK
TSGK Member

Joined: 21 Dec 2006 Posts: 1025 Location: Ingelmunster, West of the Flanders, Flanders, Belgium Country:  Browser:  Age: 34
|
Posted: Sat Jun 09, 2007 18:45 Post subject:
|
|
Nice site, but it does need some work. As I am a webmaster too, I can give you some advice.
1) try to learn CSS and use that instead of tables. using css has a lot of advantages such as sitewide layout adjustments, and the fact that you don't need to do the whole layout again for every page (tho i see you're using an Iframe)
2) try to use php includes over iframes. php includes can be read by every browser, and are (imho) much easier to use.
3) try to make your site w3c valid. your site is a siple one, so it's easily possible.
4) get a favicon (just because they're cool)
5) get metatags to be found better by searching robots
6) get other hosting than geocities. really. I can host you if you want.
7) use a php sendmesage script instead of just putting your contactdetails. most people that may write you a mail won't bother to open email app or browse to browser mailer and send you something
try to get a neater name, buy a domain and get ready for a lot of visitors
9) more content needed
that's it, overall it's a good start but it needs work.
|
Back to top
|
|
 |
TiAs

Joined: 06 Jan 2007 Posts: 66 Location: France, Lille Country: 
|
Posted: Sat Jun 09, 2007 19:27 Post subject:
|
|
Wow . Really nice Phtoshops files
I find it nice, a little bit empty but it'll come .
Have fun
_________________ Sorry if my english Iznogoud
http://hl2-fans-team.halflifexpert.com/
Votre [HL²]fans_TiAs préféré 
|
Back to top
|
|
 |
Xmeagol
Incontinent beast

Joined: 26 Oct 2006 Posts: 3612 Location: Oh my god look behind you it's an evil combine advisor with a raging erection oh my god. Country:  Browser:  Age: 703
|
Posted: Sat Jun 09, 2007 19:31 Post subject:
|
|
I leik it!
|
Back to top
|
|
 |
Spike
TSGK Member

Joined: 06 Jul 2006 Posts: 460 Location: Guernsey (Channel Islands off the coast of france) Country:  Browser:  Age: 33
|
Posted: Sat Jun 09, 2007 19:34 Post subject:
|
|
controllerboy wrote: |
Nice site, but it does need some work. As I am a webmaster too, I can give you some advice.
1) try to learn CSS and use that instead of tables. using css has a lot of advantages such as sitewide layout adjustments, and the fact that you don't need to do the whole layout again for every page (tho i see you're using an Iframe)
2) try to use php includes over iframes. php includes can be read by every browser, and are (imho) much easier to use.
3) try to make your site w3c valid. your site is a siple one, so it's easily possible.
4) get a favicon (just because they're cool)
5) get metatags to be found better by searching robots
6) get other hosting than geocities. really. I can host you if you want.
7) use a php sendmesage script instead of just putting your contactdetails. most people that may write you a mail won't bother to open email app or browse to browser mailer and send you something
try to get a neater name, buy a domain and get ready for a lot of visitors
9) more content needed
that's it, overall it's a good start but it needs work. |
Ok thanks, I am not using an Iframe lol, dreamweaver's template feature . And what would my domain be if I were to host with you?(a sub-domain and any limits?) , and I cant be bothered to buy a domain lol, as its only a personal site. And do you know any good site to learn PHP? (i might have a book somewhere) and what about my site isnt w3c vaild, the image map? or other? Will add to my site, and geocities only has 5mb of webspace
TiAs: thanks will add more in time
Breen: Thanks
_________________
Ask me for a sig/avatar and I will make you one
|
Back to top
|
|
 |
StonedCabbage
TSGK Member

Joined: 18 Jun 2006 Posts: 2273 Location: Birmingham, United Kingdom Country:  Browser:  Age: 38
|
Posted: Sat Jun 09, 2007 20:28 Post subject:
|
|
php easy though u might want to set up a local test server on your own computer, saves uploading a file everytime just to check it works
First u need to Install Apache (Or the Windows one, IIS i think, i don't no im stupid, anyway it basically sets a web server up on your local machine): -
Download Apache: -
http://httpd.apache.org/download.cgi
Good Guide on Installing Apache & testing it works: -
http://library.monx007.com/computer/install_webserver2/1
then you need to install PHP: -
Download: -
http://www.php.net/downloads.php
Once you have installed both Stop the Apache Server (Will be in the Start menu under Apache). You need to change a couple of things in the Apache File to get it to work with PHP.
Go to the Apache folder(Something like C:\Program FIles\Apache 2.2\) and you should see a file called httpd.conf - Add the following at the last line of your httpd.conf file, just cut and paste: -
LoadModule php5_module "C:/php5/php5apache2.2.dll" *
AddType application/x-httpd-php .php
* - (Please note this Directory root has to be Where PHP5 is installed, if the DLL file is incorrectly named, go and see what it is called in the PHP 5 folder, and name it to the version of Apache your using).
Now look for a line in that file called DocumentRoot. Change this to your desired Web Directory (i.e where you keep your .htm files).
Now restart Apache. Now create a test PHP page, fire up Notepad, and type this in: -
<?php
phpinfo()
?>
and save it as Index.php. Move this file to where your Web Directory is. The big test to check php is working now, fire up Internet Explorer, and type this in: -
http://localhost/index.php
You should now have a Table centered in the screen telling you a big long list of What how PHP is setup, if you get nothing its failed =(
Finally MySQL, which is the Database that interfaces with PHP: -
Download MySQL: -
http://dev.mysql.com/downloads/mysql/5.0.html
Download MySQLAdmin Tools (Your need these to Backup databases, and also create tables and edit data manually if nessary): -
http://dev.mysql.com/downloads/gui-tools/5.0.html
A good guide on how to Install MySQL: -
http://library.monx007.com/computer/install_webserver3/1
And finally you now need to learn PHP: -
Nice start to PHP: -
http://www.freewebmasterhelp.com/tutorials/php/1
Shows how to use the MySQL database with PHP: - http://www.freewebmasterhelp.com/tutorials/phpmysql
I'm a bit rusty as been a while since I installed it, and im also quite stooonnnneddd wright now, so your probably better just speaking to controllerboy lol
_________________
I hope that packet gets lost forever in network oblivion
|
Back to top
|
|
 |
StonedCabbage
TSGK Member

Joined: 18 Jun 2006 Posts: 2273 Location: Birmingham, United Kingdom Country:  Browser:  Age: 38
|
Posted: Sat Jun 09, 2007 20:30 Post subject:
|
|
ohg yer just google in apache and php5 if you run in ta any problems, your find loadsa sites telling you how to set it up
_________________
I hope that packet gets lost forever in network oblivion
|
Back to top
|
|
 |
Spike
TSGK Member

Joined: 06 Jul 2006 Posts: 460 Location: Guernsey (Channel Islands off the coast of france) Country:  Browser:  Age: 33
|
Posted: Sat Jun 09, 2007 21:02 Post subject:
|
|
Thanks alot!
_________________
Ask me for a sig/avatar and I will make you one
|
Back to top
|
|
 |
krazimu
TSGK Member

Joined: 27 Jul 2006 Posts: 1162 Country:  Browser: 
|
Posted: Sun Jun 10, 2007 01:53 Post subject:
|
|
Looks nice Spike
|
Back to top
|
|
 |
Zog Ecosse

Joined: 17 Apr 2007 Posts: 788 Location: Lerwick Shetland Country:  Browser:  Age: 73
|
Posted: Sun Jun 10, 2007 02:19 Post subject:
My New Web Site |
|
I thought it was good
Must have taken a lot of work.
Zog
|
Back to top
|
|
 |
Diet H2O_TSGK
TSGK Member

Joined: 03 Aug 2006 Posts: 3282 Location: Ireland (right, left, then second on the right) Country:  Age: 53
|
Posted: Sun Jun 10, 2007 02:22 Post subject:
|
|
I can't access it. Might take a while to register across the internet
_________________
Two parts hydrogen, one part oxygen with all the fat taken out
|
Back to top
|
|
 |
Killa/PPV

Joined: 30 Sep 2006 Posts: 579 Country:  Browser:  Age: 35
|
Posted: Sun Jun 10, 2007 02:24 Post subject:
|
|
Your site looking very good Spike ! I really enjoy it man
_________________ http://forum.tsgk.com/viewtopic.php?t=884
http://steamcommunity.com/groups/L4D2boycott?action=join <<< JOIN , BOYCOTT LEFT4DEAD 2
|
Back to top
|
|
 |
Shimmy_TSGK
TSGK Member

Joined: 25 May 2006 Posts: 2444 Location: Dubai, 2 clicks away from Burj Khalifa Country:  Browser:  Age: 42
|
Posted: Sun Jun 10, 2007 06:28 Post subject:
|
|
Killa/PPV_TSGK wrote: |
Your site looking very good Spike ! I really enjoy it man  |
roflcopterteleporterbusintraffic!
_________________
Illyria says: I am not going to explain why?you are too stupid to get it.

|
Back to top
|
|
 |
Spike
TSGK Member

Joined: 06 Jul 2006 Posts: 460 Location: Guernsey (Channel Islands off the coast of france) Country:  Browser:  Age: 33
|
Posted: Sun Jun 10, 2007 13:56 Post subject:
|
|
Thanks, I couldnt get the image map to work in IE, so i will split the images in to different images one for each link and then link that image..
_________________
Ask me for a sig/avatar and I will make you one
|
Back to top
|
|
 |
|