Results 1 to 7 of 7

Thread: HTTP/1.1 404 Not Found

  1. #1
    Join Date
    Sep 2008
    Location
    My House
    Posts
    519
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default HTTP/1.1 404 Not Found

    when I play my script it says that. Anyone know why?

  2. #2
    Join Date
    Mar 2007
    Posts
    478
    Mentioned
    4 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by death12652 View Post
    when I play my script it says that. Anyone know why?
    Script?
    Back from the dead.....

  3. #3
    Join Date
    Jul 2007
    Location
    Missouri
    Posts
    318
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Maybe it has something to do with the email part death? are you allowing the script to connect to the websites?

  4. #4
    Join Date
    Sep 2008
    Location
    My House
    Posts
    519
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it doesn't have the email part in it. here is part of it...

    Code:
    function yaboe_SignUp: Boolean;
    var
      F: TAppaFormArray;
      a, b, FileNum: Integer;
      URL, Data, CaptchaAnswer: string;
    begin
      Result := False;
    
      NavigateTo('www.yaboe.com/registration', 10000);
      
      URL := appa_GetHTML;
      URL := Between('captcha.net)" src="', '"', URL);
      URL := 'http://www.yaboe.com' + URL;
    
      Writeln('Downloading captcha..');
      Data := GetPage(URL);
    this is what I get...

    Code:
    Downloading captcha..
    HTTP/1.1 404 Not Found

  5. #5
    Join Date
    Dec 2008
    Posts
    209
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    404 means that the page is not found, therefore you may have an invalid URL

    I searched the source for, "captcha.net)" src="" and no results were found?

  6. #6
    Join Date
    Oct 2009
    Location
    Stockton, CA
    Posts
    2,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by death12652 View Post
    it doesn't have the email part in it. here is part of it...

    Code:
    function yaboe_SignUp: Boolean;
    var
      F: TAppaFormArray;
      a, b, FileNum: Integer;
      URL, Data, CaptchaAnswer: string;
    begin
      Result := False;
    
      NavigateTo('www.yaboe.com/registration', 10000);
      
      URL := appa_GetHTML;
      URL := Between('captcha.net)" src="', '"', URL);
      URL := 'http://www.yaboe.com' + URL;
    
      Writeln('Downloading captcha..');
      Data := GetPage(URL);
    this is what I get...

    Code:
    Downloading captcha..
    HTTP/1.1 404 Not Found
    Put http:// in front of the URL.
    Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
    Quote Originally Posted by #srl
    10:45 < Toter> daphil when can get sex anyday I want
    10:45 < Toter> he is always on #SRL
    "A programmer is just a tool which converts caffeine into code"

  7. #7
    Join Date
    Sep 2008
    Location
    My House
    Posts
    519
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It still appears every once in a while though need help???
    Last edited by Death12652; 05-26-2010 at 05:33 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •