Результаты поиска

  1. M

    C# code to trim url to root?

    Thank you sir! Useful snippet.
  2. M

    C# code to trim url to root?

    Anyone have a C# snippet they can post for trimming a URL to it's root?
  3. M

    Can Sites Tell WHERE on a button or field ZP is clicking? Do they watch that?

    OK thanks, that is good to know!
  4. M

    Can Sites Tell WHERE on a button or field ZP is clicking? Do they watch that?

    I have seen that video and I do know how to use mouse emulation, however it's never been clear to me if it's actually needed to avoid detection or not. Personally I'd love to see a post or tutorial about measures that can be taken to avoid being discovered as using automation. By your response...
  5. M

    Can Sites Tell WHERE on a button or field ZP is clicking? Do they watch that?

    I am having some issues being detected on a site I am regging. I am wondering if I need to emulate mouse clicks for buttons and fields so that they use a random spot each time. Is this something that some sites may look at to determine if automation is being used?
  6. M

    Whats best way to handle this?

    Yes I know I can do that, but the entire point of this thread was to find a cleaner easier way to do that without all the loops and delays. The C# code is supposed to do that, but it's not. Thanks for the suggestion though, it looks like I will have to resort to that. I am still very...
  7. M

    Whats best way to handle this?

    Actually it works OK, but I've noticed it's taking a long time to find the elements 35+ seconds. http://screencast.com/t/GHwZr4I3D8BW Is this correct way to use it, put C# in front/on top of element I am waiting for? Any reason why it could be taking so long to find the element? Visually it...
  8. M

    Whats best way to handle this?

    Wow, can not believe I missed that.... derp. Works great thanks.
  9. M

    Whats best way to handle this?

    HtmlElement he; for(int i=0;i<20;i++) { he = instance.ActiveTab.FindElementByAttribute("fulltag,text,a,28"); if(!he.IsVoid) { break; } System.Threading.Thread.Sleep(2000); }
  10. M

    Is this new feature?

    http://screencast.com/t/lEsrD203Ub Is this meant to be a pseudo replacement for keyword emulation?
  11. M

    Whats best way to handle this?

    Meh Code is giving me an error :( Compile code of actionaction group id: 3be0fc92-ed76-4470-96b6-33ba21b3105a Error in action "CS1501" "No overload for method 'FindElementByAttribute' takes 4 arguments". [Строка: 4; Cтолбец: 10] Not sure if I have made a mistake in entering data or if it is...
  12. M

    Whats best way to handle this?

    Got it. Thanks!
  13. M

    Whats best way to handle this?

    Very good, I am not quite sure of what I need to put in "your data in parameters" could you expand on that a bit, maybe give an example? Thanks for help.
  14. M

    Whats best way to handle this?

    oops dupe post
  15. M

    Whats best way to handle this?

    I am regging a 2.0 site and they have added a long series of next buttons. There is no pageload since it's a window so unless I put in an extra long delay it can overrun them and error, especially if I run many threads. A wait for element would solve this easily, but that's not available yet...
  16. M

    Hey how can I grab time/date?

    Is there an easy way to grab a time/date stamp to use in my templates? Wondering if I am missing a way to do this without actually regexing it out of a website? Tnx
  17. M

    "Hilight important elements only" gone in ZP5?

    Good! I used that often too.
  18. M

    how to use the taskmanager

    Good to know, was wondering why it was not working for me :) Guess I can stop looking now.
  19. M

    Step Placement Goofy After Save

    OK, then it's creating the new group inside of the old one ;) I will select the group now first thanks for the tip.
  20. M

    Step Placement Goofy After Save

    Sorry if this has been mentioned already. In debug/edit mode after data is saved next element added is often jammed in between existing steps instead of being added at the bottom of logic as it should. http://screencast.com/t/UzlDjhFq1AT
  21. M

    Can someone explain to me how to select theme on weebly?

    Having a hard time figuring this one out. Any chance someone could show me a snippet or explain what I need to do or point me to a tut on how this is done, I can not find anything. I figured it out, maybe not best way but it's pretty clean and it works. V5 is soooo much easier to work with...
  22. M

    Can we count words with ZP?

    I get what you are doing, clever idea. Do you happen to have an example snippet you could post? I know what you are doing, not 100%$ on how to do it exactly.
  23. M

    parameter is not valid for captcha why?

    Big thanks to Bigcajones for helping me solve this. Apparently it was finding multiple images and getting confused or whatnot. I eliminated the group 1 entry in the cap recognition data and it's now working like a champ. I figure I'd post here just in case anyone else runs into this issue in...
  24. M

    parameter is not valid for captcha why?

    Yup, I sent logs as requested too. It is the captcha Originally I was using look ahead in the regex *.recaptcha but someone told me that may be causing the issue so I edited it to what it shows now. It's still doing it after eliminating the look ahead from regex. Just a FYI in case the logs...
  25. M

    Captcha Recognition - Parameter is not valid error - PM crashes

    DEL Was Double Post...
  26. M

    Captcha Recognition - Parameter is not valid error - PM crashes

    Not sure you are asking me, but I posted mine here http://zennolab.com/discussion/showthread.php?9860-parameter-is-not-valid-for-captcha-why&highlight=logs
  27. M

    parameter is not valid for captcha why?

    dupe post
  28. M

    parameter is not valid for captcha why?

    This is the error. These are my cap settings It's not a location issue, it works 90% of the time just fine. Also, when I get this error it shuts down the entire instance immediately, It seems to happen before or when the captcha is sent to service. I also tried multiple captcha services...
  29. M

    parameter is not valid for captcha why?

    It's just a standard Re-captcha as is on thousands of sites.. It's not a location issue if it were, it would say element not found pretty sure. No one has seen this before or knows what it means? My template is running perfectly except for this one random error :mad:
  30. M

    Captcha Recognition - Parameter is not valid error - PM crashes

    I have same issue. I Can't fix it if I don't know why it's doing it or what the error even means.
  31. M

    parameter is not valid for captcha why?

    Seeing the error "parameter is not valid" for captcha field once in awhile in one of my templates causing it to end badly. It won't do it in debug and only once in awhile when running, I can't seem to catch it happening or figure out why? I am using -1 for form and I don't think anything is...
  32. M

    Can we count words with ZP?

    Yes I can understand that, it would be very hard to cover everything for sure. Thanks for the help.
  33. M

    Can we count words with ZP?

    I don't know HOW to use string.space, that is the problem ;) I don't like having to ask for help all the time, but it's very hard for me to find the help I need, esp with the search function being as bad as it is. I checked the wiki too, nothing there on split.string or how to use it. I was...
  34. M

    Can we count words with ZP?

    Thanks, so my next move is to look for string.space and how to use it, so I type it into the search window and I see 15 pages of posts not related at all to string.space.... I mean the text is not even found anywhere on the page. WTF :mad: Count words in a variable text: return...
  35. M

    Can we count words with ZP?

    I'd like to get a words count in one of my templates, is this easy to do? I CAN count characters and that might work for me, but would prefer to get a word count if possible. Is this easily done?
  36. M

    How to make ZP post punctuation?

    Oh... OK I am not up on my text formats thanks.
  37. M

    How to make ZP post punctuation?

    Notepad2 is saying it's ANSI This is where it goes funky...
  38. M

    How to make ZP post punctuation?

    The awkward moment when you�re waiting for a text but then you realize you�re the one who didn�t reply. Sure this one is easy but I don't see how to do it. I am posting random status posts as above and ZP is not posting punctuation correctly, it's posting the character codes for some reason...
  39. M

    IS there a way to see if ZP is leaking any identifying data?

    Thanks very much for offer but I finally got it working :) Was not easy but that is a part of learning...
  40. M

    IS there a way to see if ZP is leaking any identifying data?

    Thanks for that tip about FF Dozer, I have installed FF15 and I AM able to create accounts consistently manually, even through a proxy or VPN. So it must be possible just need to connect the dots. Now I totally understand why no one wants to talk about this stuff...., it's a pain in the ass...
  41. M

    IS there a way to see if ZP is leaking any identifying data?

    Thanks dozer, I'll crack this egg yet.
  42. M

    IS there a way to see if ZP is leaking any identifying data?

    Yeah thanks for replies guys, I slept on it and was thinking along these same lines too, that they are able to see proxy somehow. I did some research myself and learned it's not hard at all for them to see if I am using proxy, high annon or not...
  43. M

    IS there a way to see if ZP is leaking any identifying data?

    Yeah I thought so too, but then I got new proxies and see same issue. Then I got privates from another provider all together, same issue. I made a mobile version of template, same issue. I'm done for the night.... I don't know what else to try. I now have 100% emulation mouse and kb, random...
  44. M

    How to Do this?

    Actually there are a LOT of good tuts on Youtube. bigcajones and dexlabs are 2 of the better guys on Youtube to learn from, many of the others are just trying to sell templates or zenno through their aff links.
  45. M

    IS there a way to see if ZP is leaking any identifying data?

    If ZP were leaking any info that would let a site know it's a bot, is there any site I can goto and log this info? If it were leaking what would it likely leak? I have my DNS servers set to public DNS, fresh private proxies, clearing cashe, cookies each time, random UA/browser/OS/Screen...
  46. M

    How To Grab Proxy Value when I Pull it from ZP?

    Yeah, you might be right, I was thinking that these issues were happening only with the proxies that were getting caught by the blacklist filter but I was wrong. I got a fresh batch of private proxies and still had troubles straight away. It seems I am having some sort of anonymity issue...
  47. M

    How To Grab Proxy Value when I Pull it from ZP?

    OK... Yeah well they start doing things like making the site load VERY slowly, causing the accounts to say username taken (when they are not). Telling me my my password is does not have enough characters (when it does), not asking for a conform email (still lets me create account) but it is...
  48. M

    How To Grab Proxy Value when I Pull it from ZP?

    The blacklist filter pulled them from the list, said they were blacklisted. I'd be nice to be able to export the ones left to a list to pull from. I'm not sure I understand what you are saying, you mean manually delete them? ^_^
  49. M

    How To Grab Proxy Value when I Pull it from ZP?

    It does work, but I had a situation using shared (semi private) proxies and 50 of them were put on a spam list. The accounts being created with those proxies all got suspended. I was hoping to use ZP checker to make sure chosen proxy was not on any ban list. It's not a huge deal just did not...
  50. M

    How To Grab Proxy Value when I Pull it from ZP?

    Normally I pull my private proxies from a list but lately I have been having ZP look after them to make sure they are staying off the ban lists and so on. So I just assign them at startup in the control panel as normal. Is there an easy way to grab the proxy and assign it to a value I am...