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

  1. B

    how to save traffic monitoring statistics to list

    i would like to save the URLs that zennoposter 'sees' when going through a certain template i was looking at the GetTraffic C # method and UseTrafficMonitoring but those don't save anything that happens outside of the C # block. can we access traffic logs somehow and save it to a list?
  2. B

    Using PHP in zennoposter 5

    you can of course always use php on a webserver and use zenno to interact with that
  3. B

    Bugs in new version 5.26.0.0

    since i updated from 5.25.0.0 to 5.26.0.0 projectmaker sometimes doesn't start. there's no notification of why it doesn't start (like what happens when you're not connected to the internet it says it can't verify the license) and it doesn't appear in the task manager. also today i still had...
  4. B

    multiple recaptchas on one page

    lucky me, the webpage removed one of the recaptchas. thus don't need this anymore :)
  5. B

    multiple recaptchas on one page

    i need to solve multiple recaptchas on one page, but zennoposter only ever solves one of them obviously they have the same sitekey. any idea on how i can get zenno to solve the 2nd recaptcha? note: i'm using 2captcha/rucaptcha, anti-gate and deatchbycaptcha for solving recaptchas
  6. B

    Discussion - new version 5.23.0.0

    The thing Ahlem wants to do, parse content. If he makes a template based on the RSS feed of the site he wants to scrape. Then he could potentially also use it for parsing other sites because RSS feeds are always in the same format. Also RSS feeds already have way less code in the texts (no css...
  7. B

    Discussion - new version 5.23.0.0

    might be easier to do from their rss feed (if they have a full feed and not excerpts)
  8. B

    Proxy pass through

    you can disable and enable the proxy during certain parts of the template. to for example always use proxy for site A and never use proxy for site B
  9. B

    Just Login:Pass Set Proxy, How to set it ?

    ip-address can sometimes also be a domainname. that works fine in zenno by the way
  10. B

    Recaptcha2 module

    try this (thats what solved this issue for me on twitter): a C# node (somewhere before the page is loaded) with: instance.SetBrowserPreference("security.csp.enable", false);
  11. B

    Start project in zennoposter using API

    other workaround is have all your projects check a txt file, if contents is 'go' have it start the rest of the template, if contents if 'wait' then execute a x minute pause and loop to start then use dropbox/resilio sync/something-else to be able to write to the txt files (one for each project)...
  12. B

    Is there any tutorial that explain how to solve Recaptcha V2 with DBC ?

    you don't need capmonster, just retry the node till it succeeds as DBC doesn't always succesfully solves recapthas (success ratio is higher with rucaptcha and anti-gate for me)
  13. B

    Basic math question

    adding multiple variables in javascript works fine for me something like this: https://www.dropbox.com/s/fwnm7vsvoqor4ey/Calc%20AVG.zip?raw=1 (sorry i have no idea how to add files in the forum as it's all Russian) part of me is wondering why you're not simply using the AVERAGE function in...
  14. B

    enable/disable delayed drawing from node

    it would be nice if we could have a node or some C# code that enables or disables delayed drawing. so while debugging in projectmaker we can automatically speed up some sections that otherwise might take a long time and go back to normal speed for other sections, where we actually might need to...
  15. B

    enable / disable delayed drawing from node

    for example... lots of templates i have start by comparing the an ID from a list to a row from a table (which holds all the variables for that ID). there's thousands of lines in the table, thus the loop that goes through all the lines at the start of the template (to find the proper variables)...
  16. B

    enable / disable delayed drawing from node

    can we enable / disable delayed drawing from within the project? maybe some C # code? There are a lot of times when I've been debugging. but then afterwards i'd like to have it disabled. make it to debugging faster.
  17. B

    Have Projects Run One After Another Constantly?

    another option is to write (new) status to a text file at end of each template and check status at start of each template. if the text file tells a template to start, have it continue. if it's not time to start put like a 5min pause and then have it end. run all templates at the same time and...
  18. B

    show instances

    i got it to show up whenever i want by clicking 'show/hide instance' for the template. HOWEVER it doesn't matter whether the option was selected or not selected, clicking it makes the instance show up. here's a screenshot where you can see i just clicked it to hide the instance, which made the...
  19. B

    show instances

    it's starting the VM with bluestacks pretty soon in the template yes, but it does some file reading and VM changing first
  20. B

    show instances

    in zennodroid the show instances is only working occasionally. most of the time the instance doesn't show. when it does show it has no outer window, thus i can't drag it around to a different location
  21. B

    recaptcha problem during twitter registration

    with auto solving the recaptcha: when solving the recaptcha manually:
  22. B

    recaptcha problem during twitter registration

    when registering accounts for twitter i'm usually required to solve a recaptcha (because of my datacenter proxies probably). however i can't seem to automate the process. when anti-gate or deatchbycaptcha solves the recaptcha it shows the green check-mark, but the continue button from twitter...
  23. B

    Improve location accuracy Notification

    nobody? :(
  24. B

    Improve location accuracy Notification

    I often get the 'Improve location accuracy?' notification popup which asks to collect location data periodically and then has the 2 options disagree and agree. Which results in the template going wrong... I have tried: - clicking disagree - click agree - disabling the notifications (in...
  25. B

    Russian in EN

    In projectmaker in advanced settings: And should not these 3 options be one option? Like 'Android processing'
  26. B

    ZP opening WinAMP?!?

    Sometimes I get asked to open something like URL.asf as well. Windows wants to use VLC for it. Only got that problem with public proxies.
  27. B

    How to handle Form# differences?

    I would like to know this as well as I've got the same problem.
  28. B

    Add items in scheduler from within a template

    It would be cool if a template could add templates to the scheduler. For instance: Template A does posts an article (with a backlink for seo) to some wordpress install. If successful I'd like it to automatically schedule template B to be repeated 5 times each day over the next 7 days and...
  29. B

    Links grabber

    Simply first grab all h3 <h3[\w\W]*?\<\/h3\> Then look for hrefs in the above results: (?<=href\=\")[\w\W]*?(?=\")