|
| |
|
|
ennisv
Posts: 13 Joined: 11/29/2006 Status: offline
|
Need help with new site - 11/29/2006 16:48:34
Hey, y’all! I’m new to the forum. I must say that I’m not an experienced web developer, but I’m not a total newbie, either. The questions I have would probably need to be answered by someone with a good bit of experience, so I thought I would post here. Background: I am in charge of completely updating a website where I work. We’ve hired a web designer and she will be working on it soon. She’s actually a graphics designer, but has created several websites, I have experience working with her, and she does beautiful work. Since we are doing a total revamp of the site, I want it built correctly from the start. Since my web designer is not a programmer of sorts, I wanted to get some opinions from those who are. I have never developed a website with anything except FrontPage (and that was an older version). I have read a book on php and xml and some articles on mysql, so I know just enough to be dangerous. I was contacted by a web designer that seems to be up on all the latest and greatest technology. He made a few suggestions, but I’m not sure if we need everything he suggested, so I wanted to get your opinion. The type of advertising we are doing is not something that people will be searching for on the web, therefore, Google ranking is not a priority. We have a simple site and some of our visitors will be dial-up since they live out in the sticks and can't get dsl or cable. Questions: The designer suggested the following: 1. Build the site using appropriate web standards (Cascading Style Sheets) – no table layouts, etc. Is this completely necessary? My web designer uses tables in Dreamweaver. 2. Ensure that your pages are developed with the appropriate page extension/server technology from the start (ex. ASP, ASPX, PHP, etc). We currently have everything as an ASP extension, but he suggested that ASP was antiquated and that we needed to use something else. Is this a major concern? What should I use? His reasoning on making sure that we start off with one technology is below: a. This will drastically affect your Google listing if you have to go back later and change page filename b. If external sites link to your site and you eventually change the page names, their links will be broken, thus affecting your Google ranking. 3. If you’re going to stay with your current server platform your pages should be developed using ASP.NET Master Pages. This is the evolution of the include file, but with the ability to actually perform like a page all to itself. It is one of the most powerful aspects of the new .NET platform. My Objective We currently have no need for anything other than html. However, I would like to change that. I would like to create the following items: 1. A contact form that, when submitted, sends an email to our admin assistant as well as another person depending on the information given. I would also like the information to go into a database for email newsletters. I would also like to use the database for postal mail. That way we can do a mail merge in Word using the database. 2. Is there software that I can use to send the email newsletters using the database created above? I’d like for it to be a confirmed opt-in newsletter. I’ve used a service before (www.mailermailer.com), but never a software program that would do this for me. 3. I’d like to have a login portion of the site so that my colleagues can post items for everyone to use such as graphics, reports, etc. I saw that Spooky Login would probably do what I need for this portion. I would only want my colleagues to be able to login, but I would like for them to be able to select their own password. Can Spooky do that for me? I know this is a long posting. If you’ve read this far, thank you very much for your patience!!!!
|
|
|
|
womble
Posts: 5721 Joined: 3/14/2005 From: Living on the edge Status: offline
|
RE: Need help with new site - 11/30/2006 5:00:52
quote:
ORIGINAL: ennisv 2. Ensure that your pages are developed with the appropriate page extension/server technology from the start (ex. ASP, ASPX, PHP, etc). We currently have everything as an ASP extension, but he suggested that ASP was antiquated and that we needed to use something else. Is this a major concern? What should I use? His reasoning on making sure that we start off with one technology is below: a. This will drastically affect your Google listing if you have to go back later and change page filename b. If external sites link to your site and you eventually change the page names, their links will be broken, thus affecting your Google ranking. Good advice, but not the end of the world if your page extension does change. You can always use a 301 redirect to your new pages. One thing to look out for though is how your server handles different extensions. I had a site recently that uses php extensions. On all my other sites it's never been a problem, but on this site I recently found out thanks to a friend alerting me that although www.mydomain.com/index.php found the home page okay, just using the domain name and not adding a page, got 401 page not found error message, so if someone just typed my domain name rather than the address of a specific page, it looked as though nothing was there because the server was trying to show an index.html page that's not there. I fixed the problem using a .htaccess 301 redirect redirecting .html extensions to .php. I'd not previously used a refdirect because the site was done with .php file extensions from the start, and it had never been a problem on other sites, but obviously on this site there's something different in the server setup.
_____________________________
~~ "A cruel god ain't no god at all" ~~ ~~ Erase hate. Practice love. ~~
|
|
|
|
ennisv
Posts: 13 Joined: 11/29/2006 Status: offline
|
RE: Need help with new site - 11/30/2006 10:21:43
Update... I just spoke to the graphic designer. She said that she uses a template in Dreamweaver for all of her sites. I have no experience with Dreamweaver; is that their way of creating CSS?
|
|
|
|
Reflect
Posts: 4769 From: USA Status: offline
|
RE: Need help with new site - 11/30/2006 10:44:56
quote:
If I were to go with this, we would have to stick with ASP, correct?[\quote] Correct. http://spookylogin.com/ Take care, Brian
_____________________________
|
|
|
|
ennisv
Posts: 13 Joined: 11/29/2006 Status: offline
|
RE: Need help with new site - 11/30/2006 10:59:34
When you enter things into a "template" in Dreamweaver, does it code everything in CSS for you or is the CSS created in a different way? I'm not sure if she's using CSS or if the template is something different...putting everything in tables, for instance.
|
|
|
|
caz
Posts: 3626 Joined: 10/10/2001 From: Somewhere south of Chester, UK Status: offline
|
RE: Need help with new site - 11/30/2006 11:06:14
quote:
template in Dreamweaver A template is a template, whatever application you use and can be very restrictive for the future if you decide on changes later down the line. Ask how flexible it is for future needs. Some use CSS and others are purely tables based - you need to know this from her. Has she got a url for her business so that we can have a look at her work? As well as liking the look of Spooky Login (good choice!) you also mentioned that you are using Access databases, so unless you were to consider changing to MySQL, then the runes are pointing to ASP.
< Message edited by caz -- 11/30/2006 11:17:56 >
_____________________________
Do not meddle in the affairs of cats, for they are subtle and will dance, or more on your keyboard. Cheshire cat. www.doracat.co.uk I remember when it took less than 4hrs to fly across the Atlantic.
|
|
|
|
ennisv
Posts: 13 Joined: 11/29/2006 Status: offline
|
RE: Need help with new site - 11/30/2006 11:19:31
quote:
ORIGINAL: caz Has she got a url for her business so that we can have a look at her work? I sent you an email with a link to her home page. She's actually a friend of mine, and I don't want her to get her feelings hurt if she comes across the postings online. (I know it's unlikely, but with my luck...) If anyone else would like to see it, let me know. You'll have to post because my email link from this site doesn't work. When I sent the email to CAZ, I copied myself, but only received an undeliverable message saying "sender address rejected."
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|