8point2
Members-
Posts
13 -
Joined
-
Last visited
Everything posted by 8point2
-
I built the site from scratch, and have made a form for it (which matches the rest of the site, of course). I don't want to use authnets Payment Forms, but would like to use the one I made. I am just having trouble wth the integration.
-
I'm trying to figure out how to integrate with Authorize.net, but being a novice to scripting, I find their help stuff on their website just PUZZLING! Can anyone who has used Authorize.net offer any other websites which might have more step-by-step directions, as I assume that this type of simple integration is a fairly routine process once you figure out what is going on?
-
Php Script Problem - Used To Work, Now It Doesn't
8point2 replied to 8point2's topic in Scripting Talk
Sigh, fixed. It was the littlest thing. I just had to move the .php file out of the cgi-bin folder and into the root folder with my form.htm Thanks for the help guys -
Php Script Problem - Used To Work, Now It Doesn't
8point2 replied to 8point2's topic in Scripting Talk
Trying that now, I'm afraid I'm not sure what you mean by "blank lines" in the include file? Black lines in my php code? I figured it was like HTML, where hitting return to space out lines does not actually affect the way the stuff displays, but just helps the coder to organize. -
Php Script Problem - Used To Work, Now It Doesn't
8point2 replied to 8point2's topic in Scripting Talk
<{POST_SNAPBACK}> Thanks for the tip. Tried to add that in, but it's still a "no-go." -
Php Script Problem - Used To Work, Now It Doesn't
8point2 replied to 8point2's topic in Scripting Talk
This is what the php code looks like in relation to the HTML/javascript tags. (random javascript code) } //--> </script> </head> <body onLoad="MM_preloadImages('../../MAP/navbar/05intro_glow.jpg','../../MAP/navbar/05bio_glow.jpg','../../MAP/navbar/05music_glow.jpg','../../MAP/navbar/05booking_glow.jpg','../../MAP/navbar/05contact_glow.jpg','../images/insets/teachers.jpg')" onmousemove="closesubnav(event);"> <?php (the php code posted above) ?> <table width="778" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> (more html) -
Php Script Problem - Used To Work, Now It Doesn't
8point2 replied to 8point2's topic in Scripting Talk
Yes, it's pretty short! Surrounding this, there is a lot of HTML, some javascript stuff, none of that could be causing the problem, though, right? Here's the actual php part: <?php ////////////////////////////// // Here we will do processing of the form into variables that will // be emailed out ////////////////////////////// // Here are variables you can change $recipient = "..@gmail.com"; $subject = "Booking"; // Here we allocate the request information $engagementType = $_REQUEST["engagementType"]; $dates = $_REQUEST["dates"]; $audienceSize = $_REQUEST["audienceSize"]; $groupName = $_REQUEST["groupName"]; $contactPerson = $_REQUEST["contactPerson"]; $address = $_REQUEST["address"]; $city = $_REQUEST["city"]; $state = $_REQUEST["state"]; $zip = $_REQUEST["zip"]; $telephone = $_REQUEST["telephone"]; $fax = $_REQUEST["fax"]; $email = $_REQUEST["email"]; $details = $_REQUEST["details"]; $message = "Type of engagement: ${engagementType}\n" . "Tentative dates: ${dates}\n" . "Audience Size: ${audienceSize}\n" . "Organization: ${groupName}\n" . "Contact Person: ${contactPerson}\n" . "Address: ${address}\n" . "City: ${city}\n" . "State: ${state}\n" . "Zip: ${zip}\n" . "Telephone: ${telephone}\n" . "Fax: ${fax}\n" . "Email: ${email}\n" . "Details: ${details}"; mail($recipient,$subject,$message); ?> That's it! Thanks for the help guys -
Hi guys, having a problem with a .php script that a friend of mine made (tried to get help from him but he is out of the country at the moment, and I would really like to get this fixed). It's a fairly straightforward script, which I have used with success on other websites (and my Totalchoicehosted site) to take the information from an html form and send it as text to an email address. What's so weird is that this script used to work on my TCH site, and in fact, only stopped working two weeks or so ago according to the client (I am jsut a designer). Now it brings up a page with a 500 Internal Server Error, script may be misconfigured, etcetc. It definitely used to work, I tested it heavily..and I have not made any changes to the script since. So to test, yesterday, I uploaded the script and the HTML form to another web domain (not TCH hosted) and it does work there as expected. (I receive the email, and the "Thank you" page displays). What could have gone wrong? I tried to contact TCH for support but they can't help with coding issues, but were able to share this: I've looked at the script, but I haven't made any changes, so I'm at kind of a loss. Any suggestions for what could have gone wrong? I have tried deleting and reuploading the .php Thanks!
-
Ohh, is there any other simple alternative to stream a wma? I don't want to make any fancy players or interfaces or anything, I just want it to open up in WMP and play as it downloads. Thanks for the quick reply!
-
Hi! I'm designing my first site for a client, and hosted with TCH. These forums are really great, and have been useful for finding answers. I'll try to explain the problem I'm facing trying to finish my site, and hope that someone out there will be able to help. The main page sits in the middle of the screen, and when the browser width extends out, the user just sees a solid background color. But dividng the main page from the background, I have used a one-pixel high graphic with a "drop shadow" effect, which I basically just repeated to a fixed pixel height so that it would run to the bottom of the screen, creating two vertical shadow lines. (hope that was clear) The problem I've found, is that if the user increases their browser TEXT size (and the target audience for the site includes many elderly users), these shadows can fall short of the bottom of the page, because the text has grown so much in size. Is there an elegant way to fix this problem? Perhaps with CSS? I am not very good with CSS for laying out page elements. Any help would be great. Thanks!
-
Hi! I am relatively new to streaming content. I used that link posted above, with all the tutorials for how to "stream" on a shared server using HTML. Using .ram and .rm files, I had no problem. However, using WMA files, I encountered some difficulty. I was using an .asx file which read like this <ASX VERSION="3.0"> <ENTRY> <REF HREF="http://www......wma" /> </ENTRY> </ASX> And I couldn't figure out how to get it to work, because whenever you clicked the asx link, it just showed the text contents of the asx file (as shown above) in the browser. This was in Firefox, my default browser. However, when I switched to IE, the streaming wma worked properly. Can you suggest any reason why this would be, and if there is any way to get .wmas to stream on non-windows browsers? Thank you!
-
Ahh.. I had to enable "passive FTP mode." It seems to be working great now. False alarm!
-
I'm having a problem FTPing to my TCH site. I'm using DREAMWEAVER to upload and I just keep getting this message ... SERVER NOT RESPONDING WAITING FOR SERVER.... Every once in a while it works and I can upload some stuff, but we're talking 1/10 attempts. It's making it very difficult to get my files uploaded, especially the larger files, in which case it sometimes times out during the upload. I'm behind a router, on a PC. Is this a firewall issue? Or the server? Any help would be appreciated. Thanks! Edit: It connects fine, but then it tries to retrieve the remote server info / and the Server not responding comes up. It also comes up after a lil while on a successful connection, when I am trying to upload files. Edit2: Argh..now I can't connect at all (I suspect too many connection attempts in too short of a time...
