dave17
Member
Registered: 3rd Sep 02
Location: Greater London
User status: Offline
|
I am doing a few websites for some clients and wondering on how much i should be charging?
On the first one, i am just designing it, supplying all the artwork cut up ready to be put into HTML. I have charged this client £15 an hr before.
2nd site - I think this one should be a pretty simple site for a small building company, and i should be able to do the HTML on this one aswel. Think it will be around 6 pages.
What is the rough going price?
|
dave17
Member
Registered: 3rd Sep 02
Location: Greater London
User status: Offline
|
Oh and for the second client, i think i will have to sort out hosting etc
|
John_C
Member
Registered: 5th Mar 03
Location: South east, Bromley
User status: Offline
|
£250 for the website - guestimate
hosting be cheap as; have used oneandone.co.uk before
|
dave17
Member
Registered: 3rd Sep 02
Location: Greater London
User status: Offline
|
I have also used 1&1 before. The second client wants to be able to update the site himself, but doesnt have any knowledge of web design. Dont see how that will work Software like that is £££
|
John_C
Member
Registered: 5th Mar 03
Location: South east, Bromley
User status: Offline
|
point that out to them. charge monthly/yearly fee for updating.
|
Neil
Member
Registered: 2nd Nov 03
Location: Newcastle Drives: E46 MSport Coupe
User status: Offline
|
quote: Originally posted by dave17
I have also used 1&1 before. The second client wants to be able to update the site himself, but doesnt have any knowledge of web design. Dont see how that will work Software like that is £££
Not really.. can write a simple php / mysql script that will allow them to alter text on pages and also add / remove pages, just by typing in boxes and clicking buttons. Shouldn't take too long.
Could even do a little image upload bit if they want a portfolio style page.
[Edited on 14-12-2006 by NeilM]
[Edited on 14-12-2006 by NeilM]
|
dave17
Member
Registered: 3rd Sep 02
Location: Greater London
User status: Offline
|
I have no clue about ANY of that, my HTML is basic is it is!
Id just have to charge everytime they wanted to update it
|
Neil
Member
Registered: 2nd Nov 03
Location: Newcastle Drives: E46 MSport Coupe
User status: Offline
|
Ah, fair enough.
|
AdZ9
Member
Registered: 14th Apr 06
User status: Offline
|
i never have a rough price as it differs from each client usually. I mean i have a rough price guide that i follow but they are rarely the same. If you get any spare work chuck some my way
|
--Dave--
Banned
Registered: 17th Feb 04
Location: Essssseeeeex Drives: Black Supra TT
User status: Offline
|
you could do x amount of changes for them for nothing as part of the package and then charge after that.
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
i would learn php or some sort of server side script, could charge more and you could offer clients a lot lot more like neil m said - because the chance is he wont take up the offer of having to pay you to update it and/or he'll find someone else to do it
|
MikeLamb
Member
Registered: 23rd Sep 03
Location: Crowthorne Drives: Veccy SRI
User status: Offline
|
I'm making a simple CMS now in PHP, pretty simple to do..
|
Jodi_the_g
Member
Registered: 7th Aug 01
Location: Washington D.C
User status: Offline
|
A basic CMS is faily easy to do, as Dom said it would be worth while learning.
I built one that I added features to that I now just build a template on for clients that want it.
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
you guys make is so it reads data out of the database or it edits the actual html file?
but yea, its pretty easy to do eitherway....would save loads of hassle for yourself as well and the client and will get you a bit more work as not many people want to pay something to keep updating the thing.
|
Jodi_the_g
Member
Registered: 7th Aug 01
Location: Washington D.C
User status: Offline
|
I do it so it has a wysiwyg editor back end which converts it to html and saves to a mysql db, it is then linked into the page.
Very simple and all you have to do is past a few links of php code into the template to get it to work.
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
so the main site runs on html pages and you edit those? whats db for?
yea, i can see it being fairly easy to do, personally a lot more so if the whole site was db driven.
Though i suppose there are a few sites where automation of updating by the client wouldn't be suitable, but certainly an option that should be given with all sites if i was a website developer
|
Jodi_the_g
Member
Registered: 7th Aug 01
Location: Washington D.C
User status: Offline
|
datebase puts the html in the box on the template if you get me it looks for the link to the page then puts the correct information on the correct page.
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
quote: Originally posted by Jodi_the_g
datebase puts the html in the box on the template if you get me it looks for the link to the page then puts the correct information on the correct page.
ahhh fair enough, personally i would have a single php index file, use a switch/case that loads up certain includes for the different pages. The include files are the ones you edit using your wysiwyg type backend...like they say though, more than one way to skin a cat
[Edited on 15-12-2006 by Dom]
|
Jamie Walby
Member
Registered: 15th Nov 04
User status: Offline
|
quote: Originally posted by NeilM
quote: Originally posted by dave17
I have also used 1&1 before. The second client wants to be able to update the site himself, but doesnt have any knowledge of web design. Dont see how that will work Software like that is £££
Not really.. can write a simple php / mysql script that will allow them to alter text on pages and also add / remove pages, just by typing in boxes and clicking buttons. Shouldn't take too long.
Could even do a little image upload bit if they want a portfolio style page.
[Edited on 14-12-2006 by NeilM]
[Edited on 14-12-2006 by NeilM]
Thats exactly what my site is like. I dont know HTML and all that, so I paid for the software and now update the site myself
|
MikeLamb
Member
Registered: 23rd Sep 03
Location: Crowthorne Drives: Veccy SRI
User status: Offline
|
quote: Originally posted by Dom
so the main site runs on html pages and you edit those? whats db for?
yea, i can see it being fairly easy to do, personally a lot more so if the whole site was db driven.
Though i suppose there are a few sites where automation of updating by the client wouldn't be suitable, but certainly an option that should be given with all sites if i was a website developer
Mine has one index.php and used mod_rewrite, so you have pages like http://site.com/blah/, pulling the content for page blah from the database, adding pages is as simple as adding another record to the db, each page also has a common header/footer (also stored in the db)
|