Welcome, Guest
  • Author Topic: I do not get mails? - troubleshooting help  (Read 18686 times)

    Mohsin Sumar

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 1646
    • Mohsin Sumar, Extreme Web Technologies
      • MSN Messenger - mohsinsumar@hotmail.com
      • Yahoo Instant Messenger - mohsinsumar
      • View Profile
      • Extreme Web Technologies
      • Email
    Re:I do not get mails? - troubleshooting help
    « Reply #15 on: 06/21/03, 03:41 »
    perhaps your server does not support mail functions.. check with your server about mailing...
    « Last Edit: 06/21/03, 03:43 by Mohsin Sumar »
    - Best Regards, Mohsin Sumar
    - Mohsin Sumar dot com is hosted by Extreme Web Technologies

    Jason

    • Server what's that
    • *
    • Posts: 4
      • View Profile
      • Email
    Re:I do not get mails? - troubleshooting help
    « Reply #16 on: 08/07/03, 00:12 »
    I got the form to work.
    I added this line in:
    IF ($action != "")
    {
    //here is where all the $email=$http_post_vars things go
    }


    thanos

    • Server what's that
    • *
    • Posts: 11
      • View Profile
      • Email
    Re:I do not get mails? - troubleshooting help
    « Reply #17 on: 08/21/03, 02:41 »
    Dear musicman,
    I have the same problem with nubian,i have done everything he did but i still do no get any mails!!!! I server has php v4.3.2
    <?
    // data coming in from the movie
    $Email = $_POST[Email];
    $FirstName = $_POST[FirstName];
    $Company = $_POST[Company];
    $ToComments = $_POST[ToComments];
    $HearAbout = $_POST[HearAbout];


    $ToEmail = "tddada@addada.da";
    $ToName = "dadaad";
    $ToSubject = "dadada";

    // next line is a recommended change if your "comments" field is multiline
    $ToComments = str_replace("\r", "\n", $ToComments);


    $EmailBody = "Sent By: $FirstName\nSenders Email: $Email\nSenders Company: $Company\n\nMessage Sent:\n$ToComments\n\nSender Heard About Site From: $HearAbout\n";
    $EmailFooter="\nThis message was sent by: $FirstName from $REMOTE_ADDR If you feel that you recieved this e-mail by accident please contact us at www.dadad.dada";
    $Message = $EmailBody.$EmailFooter;
    mail($ToEmail,$ToSubject, $Message, "From: ".$FirstName." <".$Email.">");
    Print "&_root.Mail.Status=Complete - Your mail has been sent&";
    ?>

    Roeland de Jong

    • Server what's that
    • *
    • Posts: 7
      • View Profile
      • get Qubed soon
    Re:I do not get mails? - troubleshooting help
    « Reply #18 on: 03/22/04, 16:59 »
    I did upload the phpinfo.php file and when i enter the URL the server asks me if i would like to download instead of executing the programme. My flash movie thereby does not send the variables in any case ..

    Could somebody help me out ..?  ???
    Thanks

    Mohsin Sumar

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 1646
    • Mohsin Sumar, Extreme Web Technologies
      • MSN Messenger - mohsinsumar@hotmail.com
      • Yahoo Instant Messenger - mohsinsumar
      • View Profile
      • Extreme Web Technologies
      • Email
    Re:I do not get mails? - troubleshooting help
    « Reply #19 on: 03/23/04, 05:27 »
    Does your server support PHP?  ::)
    - Best Regards, Mohsin Sumar
    - Mohsin Sumar dot com is hosted by Extreme Web Technologies

    vesa kortelainen

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 3450
      • View Profile
    Re:I do not get mails? - troubleshooting help
    « Reply #20 on: 03/31/04, 02:24 »
    if server ask you download your .php file(s), then it's not supportin php ;)

    Rubend

    • Server what's that
    • *
    • Posts: 41
    • I don't like to type in these info boxes-it's lame
      • View Profile
      • Web Creativity and Cheeseyness all for one affordable price :)
    what is _root
    « Reply #21 on: 04/16/04, 02:14 »
    Hi guys,

    I'm about two weeks into Flash and I'm not quite sure what do you mean by _root level. I'm in good shape because I'm also a Java J2EE developer, but decided to try something more graphic, and Flash surely does that. However, there are a few things of ActionScript that still baffle me (i.e. _root). I know this question belongs to a Flash discussion board, but since I got the script to work, I'm just wondering how in the world my variables were in _root level...any help is much appreciated.

    Best,
    Ruben
    « Last Edit: 04/20/04, 11:55 by Ronald Wernecke »

    reef

    • Server what's that
    • *
    • Posts: 7
      • View Profile
    Re: I do not get mails? - troubleshooting help
    « Reply #22 on: 01/31/07, 01:32 »
    _root means myself/ target paths. there are two ways to use this. you either use relative targets paths or absolute target paths

    examples:

    to target...       absolute path                relative path
    scene 1            _root                           _parent
    square              _root.square                 _parent.square
    cirle                 _root.circle                   this
    triangle           _root.circle.triangle         triangle

    hope this helps!