Getting an error saying URL /cgi-bin/murshed-email.py was not found on the serverHow to hide “cgi-bin”, “.py”, etc from my URLs?Running CGI outside of cgi-bin. Good idea?Execute Python CGI from /cgi-bin/ folderApache: /cgi-bin/my.cgi was not found on this serverCannot display HTML stringPython CGI getting 500 Internal Server ErrorHow to get url route, python cgiPython cgi server module not foundServer Error in python CGIWhy can't I get the alert to show?

Interview not reimboursed if offer is made but not accepted

Preventing Employees from either switching to Competitors or Opening Their Own Business

Why is one of Madera Municipal's runways labelled with only "R" on both sides?

Why was the Sega Genesis marketed as a 16-bit console?

My coworkers think I had a long honeymoon. Actually I was diagnosed with cancer. How do I talk about it?

Is open-sourcing the code of a webapp not recommended?

Were Alexander the Great and Hephaestion lovers?

How to project 3d image in the planes xy, xz, yz?

What's the name of this light airplane?

What can plausibly explain many of my very long and low-tech bridges?

How can I most clearly write a homebrew item that affects the ground below its radius after the initial explosion it creates?

Payment instructions allegedly from HomeAway look fishy to me

Using "subway" as name for London Underground?

What makes an item an artifact?

Can a black dragonborn's acid breath weapon destroy objects?

Is the term 'open source' a trademark?

How would a aircraft visually signal "in distress"?

What risks are there when you clear your cookies instead of logging off?

Passing multiple files through stdin (over ssh)

Should I compare a std::string to "string" or "string"s?

Winning Strategy for the Magician and his Apprentice

Does an ice chest packed full of frozen food need ice?

The eyes have it

Soft question: Examples where lack of mathematical rigour cause security breaches?



Getting an error saying URL /cgi-bin/murshed-email.py was not found on the server


How to hide “cgi-bin”, “.py”, etc from my URLs?Running CGI outside of cgi-bin. Good idea?Execute Python CGI from /cgi-bin/ folderApache: /cgi-bin/my.cgi was not found on this serverCannot display HTML stringPython CGI getting 500 Internal Server ErrorHow to get url route, python cgiPython cgi server module not foundServer Error in python CGIWhy can't I get the alert to show?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have uploaded my python file to my web hosting service and attempted to see if it sends an email as tested, however I am getting an error saying
"The requested URL /cgi-bin/murshed-email.py was not found on this server"
The web host runs on a Apache.2.4.38 unix server
If anyone could help fix this it would be great, or give suggestions on what to try.
I will attach my python code below as well as the HTML Form
Note: Iv'e just put a bunch of asterisks where the password should be for the sake of the question



import smtplib, ssl, cgi 
form = cgi.FieldStorage()

sender_email = "umarfarooq05122@gmail.com" #Email being sent from
receiver_email = "umarfarooq0512@gmail.com" #Email being sent to
message = """
Subject:Test

Body:"""+ searchterm = form.getvalue('Name')
+ searchterm = form.getvalue('email')
+ searchterm = form.getvalue('country')
+ searchterm = form.getvalue('message') #Message that will be sent

port = 465

password = "*****"

context = ssl.create_default_context()

with smtplib.SMTP_SSL("smtp.gmail.com", port, context=context) as server:
server.login("umarfarooq05122@gmail.com", password)
server.sendmail(sender_email, receiver_email, message)


HTML CODE



<div class="enquiries">
<form method="post" name="contactemailform" action="/cgi-bin/murshed-email.py">

<div class="enqtitle">ENQUIRIES</div>
<div class="formclass">

<label for="name" class="namelabel" id="namelabel">First Name</label>
<input type="text" id="name" name="name" placeholder="Name">

<label for="email" id="emaillabel">Last Name</label>
<input type="text" id="email" name="email"placeholder="Email">

<label for="country" id="countrylabel">Country</label>
<select name="country" id="country">
<option value="Country">Choose Country</option>
<option value="Afghanistan">Afghanistan</option>
<option value="Albania">Albania</option>
</select>

<label for="message" id="messagelabel">Message</label>
<textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
<input type="submit" value="Submit" id="submitbutton">
</div>
</form>









share|improve this question






























    0















    I have uploaded my python file to my web hosting service and attempted to see if it sends an email as tested, however I am getting an error saying
    "The requested URL /cgi-bin/murshed-email.py was not found on this server"
    The web host runs on a Apache.2.4.38 unix server
    If anyone could help fix this it would be great, or give suggestions on what to try.
    I will attach my python code below as well as the HTML Form
    Note: Iv'e just put a bunch of asterisks where the password should be for the sake of the question



    import smtplib, ssl, cgi 
    form = cgi.FieldStorage()

    sender_email = "umarfarooq05122@gmail.com" #Email being sent from
    receiver_email = "umarfarooq0512@gmail.com" #Email being sent to
    message = """
    Subject:Test

    Body:"""+ searchterm = form.getvalue('Name')
    + searchterm = form.getvalue('email')
    + searchterm = form.getvalue('country')
    + searchterm = form.getvalue('message') #Message that will be sent

    port = 465

    password = "*****"

    context = ssl.create_default_context()

    with smtplib.SMTP_SSL("smtp.gmail.com", port, context=context) as server:
    server.login("umarfarooq05122@gmail.com", password)
    server.sendmail(sender_email, receiver_email, message)


    HTML CODE



    <div class="enquiries">
    <form method="post" name="contactemailform" action="/cgi-bin/murshed-email.py">

    <div class="enqtitle">ENQUIRIES</div>
    <div class="formclass">

    <label for="name" class="namelabel" id="namelabel">First Name</label>
    <input type="text" id="name" name="name" placeholder="Name">

    <label for="email" id="emaillabel">Last Name</label>
    <input type="text" id="email" name="email"placeholder="Email">

    <label for="country" id="countrylabel">Country</label>
    <select name="country" id="country">
    <option value="Country">Choose Country</option>
    <option value="Afghanistan">Afghanistan</option>
    <option value="Albania">Albania</option>
    </select>

    <label for="message" id="messagelabel">Message</label>
    <textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
    <input type="submit" value="Submit" id="submitbutton">
    </div>
    </form>









    share|improve this question


























      0












      0








      0








      I have uploaded my python file to my web hosting service and attempted to see if it sends an email as tested, however I am getting an error saying
      "The requested URL /cgi-bin/murshed-email.py was not found on this server"
      The web host runs on a Apache.2.4.38 unix server
      If anyone could help fix this it would be great, or give suggestions on what to try.
      I will attach my python code below as well as the HTML Form
      Note: Iv'e just put a bunch of asterisks where the password should be for the sake of the question



      import smtplib, ssl, cgi 
      form = cgi.FieldStorage()

      sender_email = "umarfarooq05122@gmail.com" #Email being sent from
      receiver_email = "umarfarooq0512@gmail.com" #Email being sent to
      message = """
      Subject:Test

      Body:"""+ searchterm = form.getvalue('Name')
      + searchterm = form.getvalue('email')
      + searchterm = form.getvalue('country')
      + searchterm = form.getvalue('message') #Message that will be sent

      port = 465

      password = "*****"

      context = ssl.create_default_context()

      with smtplib.SMTP_SSL("smtp.gmail.com", port, context=context) as server:
      server.login("umarfarooq05122@gmail.com", password)
      server.sendmail(sender_email, receiver_email, message)


      HTML CODE



      <div class="enquiries">
      <form method="post" name="contactemailform" action="/cgi-bin/murshed-email.py">

      <div class="enqtitle">ENQUIRIES</div>
      <div class="formclass">

      <label for="name" class="namelabel" id="namelabel">First Name</label>
      <input type="text" id="name" name="name" placeholder="Name">

      <label for="email" id="emaillabel">Last Name</label>
      <input type="text" id="email" name="email"placeholder="Email">

      <label for="country" id="countrylabel">Country</label>
      <select name="country" id="country">
      <option value="Country">Choose Country</option>
      <option value="Afghanistan">Afghanistan</option>
      <option value="Albania">Albania</option>
      </select>

      <label for="message" id="messagelabel">Message</label>
      <textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
      <input type="submit" value="Submit" id="submitbutton">
      </div>
      </form>









      share|improve this question
















      I have uploaded my python file to my web hosting service and attempted to see if it sends an email as tested, however I am getting an error saying
      "The requested URL /cgi-bin/murshed-email.py was not found on this server"
      The web host runs on a Apache.2.4.38 unix server
      If anyone could help fix this it would be great, or give suggestions on what to try.
      I will attach my python code below as well as the HTML Form
      Note: Iv'e just put a bunch of asterisks where the password should be for the sake of the question



      import smtplib, ssl, cgi 
      form = cgi.FieldStorage()

      sender_email = "umarfarooq05122@gmail.com" #Email being sent from
      receiver_email = "umarfarooq0512@gmail.com" #Email being sent to
      message = """
      Subject:Test

      Body:"""+ searchterm = form.getvalue('Name')
      + searchterm = form.getvalue('email')
      + searchterm = form.getvalue('country')
      + searchterm = form.getvalue('message') #Message that will be sent

      port = 465

      password = "*****"

      context = ssl.create_default_context()

      with smtplib.SMTP_SSL("smtp.gmail.com", port, context=context) as server:
      server.login("umarfarooq05122@gmail.com", password)
      server.sendmail(sender_email, receiver_email, message)


      HTML CODE



      <div class="enquiries">
      <form method="post" name="contactemailform" action="/cgi-bin/murshed-email.py">

      <div class="enqtitle">ENQUIRIES</div>
      <div class="formclass">

      <label for="name" class="namelabel" id="namelabel">First Name</label>
      <input type="text" id="name" name="name" placeholder="Name">

      <label for="email" id="emaillabel">Last Name</label>
      <input type="text" id="email" name="email"placeholder="Email">

      <label for="country" id="countrylabel">Country</label>
      <select name="country" id="country">
      <option value="Country">Choose Country</option>
      <option value="Afghanistan">Afghanistan</option>
      <option value="Albania">Albania</option>
      </select>

      <label for="message" id="messagelabel">Message</label>
      <textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
      <input type="submit" value="Submit" id="submitbutton">
      </div>
      </form>






      python cgi






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 26 at 20:00









      snakecharmerb

      13.6k52554




      13.6k52554










      asked Mar 24 at 16:26









      Umar FarooqUmar Farooq

      11




      11






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325947%2fgetting-an-error-saying-url-cgi-bin-murshed-email-py-was-not-found-on-the-serve%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325947%2fgetting-an-error-saying-url-cgi-bin-murshed-email-py-was-not-found-on-the-serve%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript