Banner

Sponsor

Login


Welcome Back!
Guest
Guest

Register

Lost your password?

61 users online



Helppp!!!!

Helppp!!!!

Currently viewing this thread: 1 (0 members and 1 guests)


cew

cew

Neverside Newbie
Status: Offline!

Helppp!!!!

i need help....

i have a uni project which i need to complete in a month, i need to replicate a site similar to http://www.yorkshirewater.com/

i do not have a clue even where to begin with this one.

ok, well i guess most people might only be able to help me with certain aspects of this so i will number each question i have specifically so far, and you can respond to the corresponding one in your reply,

***but if someone can actually tell me how to go about doing the entire thing i would be most grateful.***

im assuming once i grasp the basics of this it will be straight forward. im working on a mac but can run xp/vista.

1. whats the best program to use for this - im talking easiest and is their one which will do most of the work? i.e. ms vwd

2. what would i need to install to ensure i can have everything up and running on my machine prior to uploading to the uni server?

3. i take it the site is sql based how do i go about setting this up? can i use php my admin on my local machine, and is it easy to upload the database?

4. how do i go about ensuring its user friendly/usability and allowing the text size to be changed etc.?

5. SEO - it needs to be optimized fully, any help on this would be great?

6. i need to have the ability to pritng and email this page, how do i do this?

7. http://www.yorkshirewater.com/?OBH=3840 i need to be able to have all these functions available, an example of a style sheet would be good for accessibility/usability.

IM SCARED FOR MY LIFE, PLEASE HELPPP!!!!!!!!!!!!!!!!!!!! cew Undecided Undecided

schoi

schoi

funny and cheeky
Status: Offline!

First of all help!!! isn't much appriciated as a title to a thread requesting help. It doesn't say anything.

Well at uni we used NVU as our html editor. http://nvudev.com/index.php

You need to know if your website needs to be dyanmic. If it does then you need to download xampp. http://www.apachefriends.org/en/xampp.html If not then all you need is NVU.

Xampp has all the stuff you need to develop a site using PHP and mysql. You just install it. And Read the manual please. I think a book on usibility for the web will be usful too.

Also use CSS cascading style sheets. They're basically rules that make your site look good.

Also next time don't leave this so late. Good luck boy! Sorry I can't help on the SEO but am sure plenty of info on the net.

nertman

nertman

lurker
Status: Offline!

you can maybe use a mod_rewrite for the SEO link part?

I like to use EditPlus or Dreamweaver(will generate a lot of the code for you) for editing and xampp is a wonderful windows install you can even use perl with it

flyingbuddha

flyingbuddha

Neverside Newbie
Status: Offline!

I work on mac based systems and use mamp (http://www.mamp.info) on my local machine before uploading to a redhat based server (that should sort out q.2 and 3).

Yorkshire water is sitting on a Windows 2003 Server, so I'm guessing their using .NET or classic asp. Their using something called 'Interactive Dimension CMS' to manage the content on the website.

You can use phpmyadmin for db manipulation, this comes installed with the mamp setup, I prefer a tool called Navicat. On windows there's a good tool called Sqlyog. I like to use textmate for programming, but I'm guessing you're not much of a dev, so I'd suggest something more graphical like Dreamweaver.

A user friendly/usable site is down to the design and thinking about how something should work without making the user think. Ask your parents to drive your site, if they can get through it without breaking a sweat, you shouldn't be. A lot of sites now make use of Ajax (this is basically Javascript and CSS) to make better interfaces such as drag-and-drop, or loading external data without switching the page. It's not really that complicated, and using a framework such as jQuery really speeds stuff up. Remember, you don't want to be compromising accessibility so make sure your site works without Javascript enabled, the best way to do this is to develop your sites using Firefox and the web developer toolbar (there's an option on there to flick JS on and off.)

Regarding font-size, the browser takes care of this, just make sure you specify 'em's in your css rather than 'px' (for typography, use pixels for measurements), I wouldn't bother building the text-widgets you see on the site, they're largely pointless and will increase your workload, you should make it clear to the user though that they can make changes through the browser.

By default, you should be specifying your main stylesheet to be for screen primarily. You then specify a print-only stylesheet if you want a tidy version.

Code:

<link rel="stylesheet" type="text/css" media="print" href="path/to/stylesheet.css" />

SEO is largely snake oil, writing good code, with relevant keywords and well-written content will go a long way to seeing you in the higher rankings. Of course, there's inbound links, length of time your domain has been registered, how often the site is updated and marketing options (such as adwords, etc.) that help. I doubt in the time you have for your project, the search engines will touch your site (it generally takes a couple of months to get a good listing). Nertman mentioned mod_rewrite, you can make a really nice site (in terms of URI's) using these, but mod_rewrite is an apache only module, window's server's have similar modules though, depends on your setup.

Accesskey's are dead simple just drop the accesskey attribute onto a link

Code:

<a href="/xyz" accesskey="1">This is a link</a>

Then it's up to your users to hit the right combo's.

Analyze what the site is about, most sites have a homepage and internal page, the internal page is very generic in layout so once you've built one template you should be able to use that and populate sections using information from the database.

You could build a really simple search engine using mysql's "SELECT * FROM tbl WHERE field LIKE '%keyword%'" statement, as you're doing this for a uni project I doubt it would have to be robust, just show understanding.

Yorkshire Water's mail page to a friend script wasn't working when I tried, however one thing I did note is that the functionality opened in a new window, for a site that is trying to go headstrong at accessibility they're breaking a pretty major rule. Keep your links to the current window only, allow the user to choose if they want to navigate away or not. For the visually impaired, it's a hassle to navigate windows.

Don't be scared of your project, you're in uni not the workplace, you need to show understanding but not mastery. You posted this a week or so ago, but you've still got plenty of time. Don't panic!

No one's going to do the project for you which I think you'll understand, but if you have specific questions, post back and someone will help Smile

___________________

Professional Geek

Quick Jump:

Main Navigation


Site & Graphic Design by Aeon Tan
Developed by Jeremie Pelletier & Scott Roach


NeverAPI generated this page in 0.008 seconds.