Jump to content
UBot Underground

beachwood

Fellow UBotter
  • Content Count

    54
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by beachwood

  1. I have a simple email bot that logs into GoDaddy and sends emails from a list using the domain webmail. This bot has worked flawlessly for years until I upgraded to Dev/Ubot X V6 last week. Now every time I load the list into a UI open file then I navigate to the file on my machine and hit open the box immediately closes then opens again allowing me to add the .txt file but then the file is not read when I run an add list to list with that file called for. What would cause this all of a sudden after upgrading? Thanks in advance I am in no hurry...Chris

  2. So I upgraded this week to Dev & 6.0 and many of my bots have stopped working and I have no clue why. I am extremely frustrated. Mostly simple navigations and scrapes but I will start with this. I am using Chrome 21 and have uninstalled and reinstalled ubot. I have the latest .net 4.5. This url is the godaddy login https://sso.godaddy.com/loginusing Ubot's browser it will not navigate to it. It will navigate to it using Ubot's "in external browser" but as far as I know I can't build a bot in the external browser or can I? Can you guys throw that url in a navigate command and then in a navigate command in an external browser and let me know if you have a problem? And if you are able to navigate without a problem why would it not navigate for me?

     

    Thanks,

    Chris

  3. Hi everyone! I have a challenging scrape attribute(well challenging for me) that is kicking my ass. Here is the code that returns when I click on it with scrape attribute 

    <a class="addToolTip" href="javascript:view(15503,149406912)" tooltiptext="Click here to view your message.">View</a>
    

    I have tried every combination of attribute that I know of and keep getting just

    javascript:view(15503,149406912) 

    which can't be navigated to.

     What this is, there is a list of 30 of these on a page. Each one is exactly the same except for the 149406912. The 15503 is the affiliate # which will get credit when clicked. I'm trying to scrape the url then navigate to that url in a list. I am sure it has to do with that javascript string, I just have no clue how to deal with that.

    Thanks in advance for any help!

  4. Thanks pash! Nothing fancy here but this exact code the "change file field" works perfectly in Ubot V4 and not in V5 for me. Any ideas?

    Thanks!

    clear cookies
    navigate("http://www.aaaaaaa.c...10&md=add_form","Wait")
    clear list(%ads)
    ui text box("Username:",#username)
    ui text box("Password:",#pass)
    ui text box("Title\{Spintax|Supported\}",#title)
    ui block text("Description\{Spintax|Supported\}",#description)
    ui text box("Email:",#email)
    ui text box("URL:",#url)
    ui open file("Image",#image)
    add item to list(%ads,#ads,"Don\'t Delete","Global")
    set(#ads,0,"Global")
    set list position(%ads,0)
    ui stat monitor("Ads Posted:",#ads)
    type text(<username field>,#username,"Standard")
    wait(3)
    type text(<password field>,#pass,"Standard")
    wait(3)
    click(<value="Submit">,"Left Click","No")
    wait($rand(5,15))
    click(<value="Submit">,"Left Click","No")
    wait($rand(5,15))
    loop(20) {
        navigate("http://www.aaaaa.com...10&md=add_form","Wait")
        type text(<name="title">,"{$spin(#title)}{$random text(5)}","Standard")
        wait($rand(5,15))
        change dropdown(<size=1>,"Offered")
        wait($rand(5,15))
        change dropdown(<country dropdown>,"USA")
        wait(3)
        change dropdown(<onchange="window.parent.document.getElementById('tcity').value=this.value;">,"Random - Skip First Choice")
        wait(3)
        type text(<name="brief">,$spin(#description),"Standard")
        wait($rand(5,15))
        type text(<email field>,#email,"Standard")
        wait($rand(5,15))
        type text($element offset(<url field>,0),#url,"Standard")
        wait($rand(5,15))
        type text(<name="passw">,#pass,"Standard")
        wait($rand(5,15))
        change file field($element offset(<name="userfile[]">,0),#image)
        wait($rand(5,15))
        type text(<name="verfcode">,$solve captcha(<outerhtml=w"<img src=\"vrfcd.php?idcd=*\">">),"Standard")
        wait($rand(5,15))
        click(<value="Submit Ad">,"Left Click","No")
        increment(#ads)
        wait(15)
    }
    
  5. Wanted to start out saying earlier this week I upgraded from Standard V4 to Professional V5 and am super stoked with the upgrade and what can be done in V5. My question is this, I have a bot that when run & compiled in V4 the Change File Field works flawlessly but when I run & compile the exact same bot in V5 it doesn't work. All it does is shake the screen like when running a solve captcha command. Is anyone else having this problem? Is it a bug in V5? How do I fix it? Bottom line the bot works fine compiled using V4. It just bugs me that I can't do it in V5. Thanks in advance for any help. The wealth of knowledge on this forum is mind boggling!

    beachwood

  6. Thanks everyone for the help but none of this worked although theoretically they should have. It is very weird when I by "hand" refresh the page the captcha box appears but when I command a refresh via ubot with navigate-$URL it goes to the page it would have previousely been on had I been posting manually. My bots have worked flawlessly for over a year and now they are dead in the water.

    I will figure this out! I am determined but clueless as of now on how to fix this.

    Thanks again for the help and insight. This forum rules!

    Chris

  7. Wow! I just asked the exact question above! I am having the exact same problem as you and like you it has me stumped! If I find a fix I will let you know. I also tried the above and they don't work but theoretically they should. Something is up with Backpage I think.

  8. Hi

    I build auto posting bots for Backpage and have never has any difficulties until now. What is happening is when it cycles through the posting process it clicks "submit" which takes it to the review ad/captcha page but now for some reason the captcha box doesn't show up, but when I do it manually it shows up like it is supposed to. Also when I hit the refresh button in ubot it shows up? I have done everything I know to do like lengthening the wait but something tells me that isn't it. To me it's almost like Backpage know I am using a bot? Any ideas on what is going on and if there is a work around? Like a "refresh page" command?

    Thanks in advance, you guys always hook me up when I am in need of a solution to a problem.

    Chris

  9. You can use remove from list, but typically people would just keep the list intact and use next list item. If you have to use the url several times in one loop (like if you have to create a report or something at the end and use the url again) then set a variable to be the next list item and then use that variable as many times in that loop as you want.

     

    Hope this makes sense.

     

    If for some reason you have to use remove item from list then the easiest way to do it in a loop is to use list item (position 0) and then remove from list (position 0) since it will remove items and not have to increment the position or anything like that.

    Hey Helloinsomnia,

    Thanks for the help and that is exactly what I was looking for and have already incorporated into one of my bots so thanks a bunch bro!

    • Like 1
  10. Hi everyone,

    I hope everyone is having a great Friday and is looking forward to the weekend. I sure as hell am! 

    My question is this, how do I delete an item from a list? For instance when I am building and testing my bots, how do I delete the previously navigated url so as not to repeat an action while stepping through a bot? There is no "clear list item" in "standard" version that I can see. Is there a command that I can use that that will accomplish this?

    Thanks in advance for your help!

  11. Thanks TJ!

    I think I figured out how to get it to work for me. If I open the VPN prior to opening the bot seems to work whereas before I was opening the vpn in the middle of the bot running so I think this is just a case of a simple rookie mistake.

    Thanks everyone for the help!

  12. Hi everyone,

    I always get great answers to my questions here so here goes. Whenever I try to run my VPN while running a bot, I get the "something went wrong" error message. Is there a way to structure my bots so I can use vpn instead of going the proxy route?

    Thanks,

    Chris

  13. Hi guys, thanks for the help but neither worked. I even uninstalled my avg to be sure it wasn't that. Here is exactly what is happening, I have no problem with my "Connect to email server" node when I test connection it comes back successful. It is when I drag in the "verify emails" command that I get the error you see in the screen shot. Anyone have any other ideas?

    Thanks in advance for your help

  14. Hi guys to this day I have yet to be able to conquer the "verify email" command and I don't know why and am hoping you can help. I have no problem successfully connecting to mail server but when I drag in a "verify email" node I get the error in the screen shot attached. I am sure this is something quite simple as it usually is with me but I just can't figure it out.
    Thanks everyone,
    Chris

    PS Thanks admin for deleting screenshot with email/password. I have attached a new one and changed all account passwords. Thanks again!

    post-6752-0-74941000-1370911269_thumb.png

×
×
  • Create New...