File upload / download overview percentage bar

hi there,

will try again from home, once again i really appreciated this. just need a working template to show the kids.

regards

vitor

But there is nothing to try again, you already have a server connect form:

hi there… help
i done all the right steps… me thinks and the form to email does not work

http://www.bikemeetingpoint.com/mail.html

nothing happends…

Please do what is explained here, so we can debug this: Debugging Problems

i there

  1. {code: 0, file: “/home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/mail/Rfc822.php”,…}

  2. code: 0

  3. file: “/home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/mail/Rfc822.php”

  4. line: 162

  5. message: “set_time_limit() has been disabled for security reasons”

  6. trace: “#0 [internal function]: exception_error_handler(2, ‘set_time_limit(…’, ‘/home/hp3-linc8…’, 162, Array)↵#1 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/mail/Rfc822.php(162): set_time_limit(30)↵#2 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/mail/HtmlMimeMail.php(724): lib\mail\Rfc822->parseAddressList(’“Vitor” <vitor@…’, ‘www.bikemeeting…’, NULL, false)↵#3 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/mail/Mailer.php(114): lib\mail\HtmlMimeMail->send(Array, ‘smtp’)↵#4 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/modules/mail.php(64): lib\mail\Mailer->send(Object(stdClass))↵#5 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/App.php(159): modules\mail->send(Object(stdClass), ‘’)↵#6 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/App.php(128): lib\App->execSteps(Object(stdClass))↵#7 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/App.php(98): lib\App->execSteps(Array)↵#8 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnectLib/lib/App.php(71): lib\App->exec(Object(stdClass))↵#9 /home/hp3-linc8-nfs2-z/228/1896228/user/htdocs/dmxConnect/api/form2mail/ActionMail.php(8): lib\App->define(Object(stdClass))↵#10 {main}”

this is what i get

Well your provider seems to have enforced you some strainge restrictions. You should contact them about this

Thanks, i use the cdo and all works well

<%
Set myMail=CreateObject(“CDO.Message”)

                    HTML = HTML & "<html>"
                    HTML = HTML & "<body>"
                    HTML = HTML & "<font face='calibri'>"

                    HTML = HTML & "<h2>Message from Website</h2>"
                    HTML = HTML & "<br><Br>"

                    HTML = HTML & "<font face='calibri'>"                   
                    HTML = HTML & "<b>Name: " & Request.querystring("name") & ":</b>"
                    HTML = HTML & "<br><br>"
					HTML = HTML & "<b>Email: " & Request.querystring("email") & ":</b>"
					HTML = HTML & "<br><br>"
					HTML = HTML & "<b>Message: " & Request.querystring("message") & ":</b>"
					HTML = HTML & vbCrLf
                        

                    HTML = HTML & "</font>"                 
                    HTML = HTML & "</body>"
                    HTML = HTML & "</html>" 



 myMail.Subject= "Pyghtle Badminton Club - Email From Website"
 myMail.From = "info@pyghtlebc.co.uk"
  myMail.To = Request.querystring("email")
 'mymail.CC= Request.Form("displayemail")
      myMail.ReplyTo="Do Not Reply"
 'myMail.TextBody="This is a message."
 myMail.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
 'Name or IP of remote SMTP server
 myMail.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpserver")="*****************"
 'Server port
 myMail.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25 
myMail.Configuration.Fields.Update
myMail.HTMLBody=HTML
myMail.Send
Response.redirect "thankyou.asp"

set myMail = nothing
Response.Write “Message Sent”

%>

is there anyway around or can i use another mail option

Now i’m confused… are you on PHP or ASP hosting? You shouldn’t mix those…

well long story… is this mix fasthosts…sh*********** sorry about that.

now that i have changed the type of email server here in wapler i get email (YESSSSSSSSS) but no info from the input fields

v

1 Like

Have you followed the tutorial and bound your input values in the email body?

yes, clicked on the globals

selected the form page
selected the form
clicked on the import from form
then

went to steps
then selected send mail
then put the subject

then in sender
clicked on the bolt for name and selected from $_post
then
clicked on the bolt for email and selected from $_post

have i missed anything

v

So what/where is missing from the form fields? I am not sure I understand you.

name and email

http://www.bikemeetingpoint.com/mail.html

if you put the name and email and dont get them in the body

if i put the sender dynamic fields in i should get them in the body

???

Please attach a screenshot of what is entered in the email body.
If you followed the tutorial, nothing should be missing…

1Capture

Is your form method set to POST?
EDIT: Actually it’s not. Please set your form method to POST. This will fix your issue.

while you on there how do i do a form to redirect after sending the email
?

YES
THAT WORKED!
Thanks for your help

while you on there how do i do a form to redirect after sending the email

Hi Every one
is there a video or procedurefor page redirect?