Недавний контент bartjan

  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)...