Jump to content
UBot Underground

dschmid

Members
  • Content Count

    9
  • Joined

  • Last visited

Posts posted by dschmid

  1. Hi, sorry to hear that somebody shares your stuff. I'm signed up as a basic member on your site today and I'm interested in the gold membership and got one question about it. 

     

    You've also got some stuff like this one on your site which you sell for 5$, will this also be available for free if I sign up to the gold membership for $97 ??

     

    http://ubottraining.com/ppv/video-uploader-pay-per-post/?wlfrom=%2Fsource-code%2Fvideo-uploader%2F

     

    Are also updates included? I mean, when you bring out new stuff on the site, I will also get access to it?

     

    Thanks

  2. Hi, sorry me again with a question to the tutorial series  ;)

     

    I'm now in video 7 and try to confirm an account on one site I've created. My problem is, that the email seems to be encoded in some way and I can't figure out how to click the confirmation link in the email. 

     

    Here is the video link:

     

     

    Here is a screenshot how's the table is looking in the debugger:  http://screencast.com/t/PFdQahUSJy - As you can see column 2 looks fine, but column 4 and 5 are encoded in some way.

     

    In webmail the email just looks fine, as you can see here: http://screencast.com/t/Xx2yt9yCfA

     

    Maybe there is something wrong with the code or I need to add a function to transcode the email? Anyway, I hope somebody can help me with that ;) Here is the code of my script:

    ui text box("Email Username:", #emailusername)
    ui text box("Email Password:", #emailpassword)
    ui text box("Email Server:", #emailserver)
    clear table(&emails)
    connect to mail server("POP3", #emailusername, #emailpassword, #emailserver, 110) {
        create table from emails(&emails)
    }
    set(#rowcounter, 0, "Global")
    loop($table total rows(&emails)) {
        if($contains($table cell(&emails, #rowcounter, 2), "Webnews: Jetzt geht's los!")) {
            then {
                load html("<html>
    <body><p>
    {$table cell(&emails, #rowcounter, 5)}
    </p>
    </body>
    </html>")
                pause script
            }
            else {
            }
        }
        increment(#rowcounter)
    }
    
    

    Thanks in advance!

  3. Hi, 

     

    sorry I'm new to ubot and have a little problem.

     

    My Backspace and Delte Keys are not working to delete elements in the node view and also in ui fields.

     

    It works fine in the code view and on the webpage itself. Does anybody got the same problem with version: 5.0.13 ??

     

    What also did not work ist to make an undo with "STRG+Z" - I've read in the forums that this should be possible. 

     

    Thanks

  4. Hi, I'm new to ubot and trying to follow the tutorial videos.I'm now at video 5 

    (my problem is at 14:30)

     

    It's about scraping google search results. My problem is, that google changed how the search results are delivered and the method described in the video did not works for me.

     

    Here is a screenshot of the advanced element editor. As you can see there is no class attribute: http://screencast.com/t/q0HnY6Ww

     

    Any idea, how I can get all search results into my list?? 

     

    Thanks for any tips ;)

×
×
  • Create New...