Forum Archive

Go Back   3D Realms Forums > General Topics > Programming Forum
Blogs FAQ Community Calendar

Notices

 
 
Thread Tools
Old 10-08-2009, 01:33 PM   #1
Rumble

Rumble's Avatar
Need Help with Web Form (URGENT)
I have a customer who has asked me to fix this web form on their website. I manage their server/network and general web page maintenance for them. The site was made with Dreamweaver CS3 and the company just wants it to work. LOL

I don't have any experience with fillable web forms, but if anyone does if you could help me out I would really appreciate it. There are a bunch of blank radio buttons which shouldn't even be there, and the form doesnt actualy generate the email, just a blank email with the send to address in it.

http://www.classichomestx.com/ContactUs.html

I'm not getting paid to fix this for them, just helping them out. However, I would be grateful and I am sure I can find something like some schwag I got at a game trade show or something to give the person who can help me out. Either PM me or email me if you can help.

Edit: Real quick, what they wanted originaly was a web form that when submitted emailed the info to the person in the company responsible for the new contacts. I told them I would try to fix this for them by Monday when I go in to train one of their people on how to add For Sale listings to their website. As I said I am not being paid for this, but they are a really good customer so I want to help them, and I will be as generous as I can to the person who helps me out.

Rumble
__________________
Rumble
[email protected]
Last edited by Rumble; 10-08-2009 at 01:43 PM.
Rumble is offline  
Old 10-08-2009, 02:42 PM   #2
Jiminator

Jiminator's Avatar
Re: Need Help with Web Form (URGENT)
don't know anything about dreamweaver, but my guess is that the information is getting generated based on some records, first check would be the tool that creates the form, second check might be if a record has become 'unlinked' and then no longer appears in the tool. deleting the question and all options may fix it, alternate method might be to delete the form and make a new one. worst option would be to look at the data used to build the form. anyway good luck.
__________________
big badass nasty weapons here....
Jiminator is offline  
Old 10-08-2009, 02:51 PM   #3
Feared
 
Re: Need Help with Web Form (URGENT)
I'm working on the problem now.
I'll send you the updated/fixed code in a minute.

Edit:
Okay it's fixed, I didn't spend my time testing or making it pretty so you will have to do that.

Have fun.

P.S If I may make a suggestion, don't use Dreamweaver, it's best to use Notepad++.
Dreamweaver make's junk code and it's quite useless.
Attached Files
File Type: rar fixed.rar (2.4 KB, 4 views)
Last edited by Feared; 10-08-2009 at 03:03 PM.
Feared is offline  
Old 10-08-2009, 07:04 PM   #4
Rumble

Rumble's Avatar
Re: Need Help with Web Form (URGENT)
you are awesome! Thank you so much!
__________________
Rumble
[email protected]
Rumble is offline  
Old 10-09-2009, 08:53 AM   #5
peoplessi

peoplessi's Avatar
Re: Need Help with Web Form (URGENT)
Feared, well, if you know how to use Dreamweaver, it's quite handy development tool.
__________________
Duke Nukem Forever
Who am I to judge?
peoplessi is offline  
Old 10-09-2009, 01:24 PM   #6
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by peoplessi View Post
Feared, well, if you know how to use Dreamweaver, it's quite handy development tool.
I know how to use it, I used it for year's.
I find Notepad++ much better as all the code is produced by me not a program.
Not to mention it's nice not having a memory hogger.
Feared is offline  
Old 10-14-2009, 03:21 PM   #7
Rumble

Rumble's Avatar
Re: Need Help with Web Form (URGENT)
I tried the fixed.rar and it didn't work but I can't find where it's failing.
__________________
Rumble
[email protected]
Rumble is offline  
Old 10-15-2009, 12:48 PM   #8
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Rumble View Post
I tried the fixed.rar and it didn't work but I can't find where it's failing.
Did you try it on a server, when testing with PHP it MUST be on a server.
Feared is offline  
Old 10-16-2009, 10:44 AM   #9
Rumble

Rumble's Avatar
Re: Need Help with Web Form (URGENT)
Yeah. Windows 2003 server running the website.
__________________
Rumble
[email protected]
Rumble is offline  
Old 10-16-2009, 11:21 AM   #10
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Rumble View Post
Yeah. Windows 2003 server running the website.
You sure it's running PHP? Do a PHP Check.
What doesn't work? White screen of death? No e-mail after submit?
( You gotta change the e-mail within the php file by the way )

Could you give me a little more information?
Feared is offline  
Old 10-16-2009, 12:31 PM   #11
Rumble

Rumble's Avatar
Re: Need Help with Web Form (URGENT)
ok I checked the php, the email is correct. The server is running php, but the screen I get on submit says "Thank you for submitting your information" and that's it.

---------- Post added at 01:31 PM ---------- Previous post was at 01:30 PM ----------

i'll check the server out more momentarily. I will be out of the office for a few hours but will post here tonight.
__________________
Rumble
[email protected]
Rumble is offline  
Old 10-16-2009, 12:35 PM   #12
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Rumble View Post
ok I checked the php, the email is correct. The server is running php, but the screen I get on submit says "Thank you for submitting your information" and that's it.

---------- Post added at 01:31 PM ---------- Previous post was at 01:30 PM ----------

i'll check the server out more momentarily. I will be out of the office for a few hours but will post here tonight.
Uh okay, did you check the e-mail?
"Thank you for submitting your information" is a sign that it e-mailed properly.
There are I do believe two error catch's so I don't see what the problem is if you are receiving "Thank you for submitting your information".
Feared is offline  
Old 10-17-2009, 12:35 PM   #13
peoplessi

peoplessi's Avatar
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Feared View Post
I know how to use it, I used it for year's.
I find Notepad++ much better as all the code is produced by me not a program.
Not to mention it's nice not having a memory hogger.
Nothing stops you from doing so in Dreamweaver, the generated code isn't the only feature in Dreamweaver. One can use Notepad++, but I see too much of this "Dreamweaver is bad".
__________________
Duke Nukem Forever
Who am I to judge?
peoplessi is offline  
Old 10-17-2009, 02:43 PM   #14
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by peoplessi View Post
Nothing stops you from doing so in Dreamweaver, the generated code isn't the only feature in Dreamweaver. One can use Notepad++, but I see too much of this "Dreamweaver is bad".
Dreamweaver is NOT bad, neither is Frontpage.
I just PREFER Notepad++ and I recommend anyone serious in web-development to use something other than Dreamweaver/frontpage.
Feared is offline  
Old 10-17-2009, 11:20 PM   #15
Crosma

Crosma's Avatar
Exclamation Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by peoplessi View Post
the generated code isn't the only feature in Dreamweaver.
Eclipse has all of those other features and more, and is open-source. Dreamweaver is some kind of freaky product from the nineties that's out of time.

Dreamweaver discredits the generated-code philosophy by doing it so badly. I don't think any serious web-designers use that feature any more. Not any of the good ones, anyway.
__________________
(define love (lambda () (map conquer all)))
Crosma is offline  
Old 10-18-2009, 10:05 AM   #16
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Crosma View Post
Eclipse has all of those other features and more, and is open-source. Dreamweaver is some kind of freaky product from the nineties that's out of time.

Dreamweaver discredits the generated-code philosophy by doing it so badly. I don't think any serious web-designers use that feature any more. Not any of the good ones, anyway.
All the serious web-designers I know always use some type of text editor.
( Notepad, Notepad++, Wordpad, Word, etc )

It's not it matter's, it's all personal preference.
It does affect how you get a job at places like xHTMLPros, if you use Dreamweaver and try to apply for a job there they would just toss you aside and send you a generic Sorry you are not hired e-mail.

Like I said, it was just a Suggestion I was making.
No more, no less.
Feared is offline  
Old 10-21-2009, 04:39 AM   #17
peoplessi

peoplessi's Avatar
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Crosma View Post
Eclipse has all of those other features and more, and is open-source. Dreamweaver is some kind of freaky product from the nineties that's out of time.

Dreamweaver discredits the generated-code philosophy by doing it so badly. I don't think any serious web-designers use that feature any more. Not any of the good ones, anyway.
Definitely, but that elitism is beyond surreal
__________________
Duke Nukem Forever
Who am I to judge?
peoplessi is offline  
Old 10-22-2009, 02:38 AM   #18
Crosma

Crosma's Avatar
Exclamation Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by peoplessi View Post
Definitely, but that elitism is beyond surreal
It's not elitism. Dreamweaver's just really dated and people use it out of habit. It's of a different era.

The only feature that really sells it is its integration with Fireworks, which can help designers make really great looking fluid-width sites with a minimum amount of fuss (and ugly HTML). No-one actually uses that feature though, except for my wife. Practically every professional Dreamweaver user uses Photoshop, and there's no integration with that. So they're not really gaining anything.
__________________
(define love (lambda () (map conquer all)))
Crosma is offline  
Old 10-22-2009, 10:38 PM   #19
Feared
 
Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Crosma View Post
It's not elitism. Dreamweaver's just really dated and people use it out of habit. It's of a different era.

The only feature that really sells it is its integration with Fireworks, which can help designers make really great looking fluid-width sites with a minimum amount of fuss (and ugly HTML). No-one actually uses that feature though, except for my wife. Practically every professional Dreamweaver user uses Photoshop, and there's no integration with that. So they're not really gaining anything.
I thought they added integration between Dreamweaver and Photoshop in CS3/CS4?
Feared is offline  
Old 10-23-2009, 01:06 AM   #20
Crosma

Crosma's Avatar
Exclamation Re: Need Help with Web Form (URGENT)
Quote:
Originally Posted by Feared View Post
I thought they added integration between Dreamweaver and Photoshop in CS3/CS4?
It's nowhere near the level that Fireworks has.
__________________
(define love (lambda () (map conquer all)))
Crosma is offline  
Old 10-30-2009, 02:12 PM   #21
peoplessi

peoplessi's Avatar
Re: Need Help with Web Form (URGENT)
I use Netbeans, but we have classes that have Dreamweaver as the maintool.
__________________
Duke Nukem Forever
Who am I to judge?
peoplessi is offline  
 

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 06:42 AM.

Page generated in 0.16732907 seconds (100.00% PHP - 0% MySQL) with 17 queries

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

Website is ©1987-2014 Apogee Software, Ltd.
Ideas and messages posted here become property of Apogee Software Ltd.