Jump to content
UBot Underground

Pete_UK

Members
  • Content Count

    133
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Pete_UK

  1. Great stuff. Is there a video or document showing how the API works?
  2. The API support is what I am interested in. I have software not created with UBOT and need an API licensing system... will this work?
  3. Like the API support. Can you explain how it works for securing other apps?
  4. Nick, is the price quoted in the posts the purchase price?
  5. Sorry for not responding sooner Nick... I did run the beta version and didn't have any issues at all. Ran for around 5 hours while monitoring memory etc... And it never ballooned once. Seemed to keep everything under control.
  6. The ability to load extensions would be a great addition.
  7. Hi Meter, I'm thinking of setting up a new server for different projects. Will have a server for each site. Will this cause any issues? Do I new a new license from you?
  8. we all have to use a secret secret key!! hahaha
  9. I see the "http load error page" command Kev. It doesn't seem to change anything for me though. Aymen, can you explain how this is used? I presume you just set "Yes" or "No" prior to a Get Request. If so, may be there is a bug with it because I never get a full error page loading.
  10. How do I get the contents of a 404 page using "$http get" ? EG... This page retrns a customised 404 page that I want to scrape: http://www.disneystore.com/anna-and-elsa-placemat-frozen/mp/1341437/1000349/
  11. I thought I would revisit this old thread and run the first test. Every time I run I get 5000 in the table. All seems to work okay. I increased the loop to 50k ... all runs fine too. Is threading working okay now and I missed the announcement or am I missing something?
  12. not in can be faster but quite often you may get the same underlying plan. in my experience, adding the secondary index will make most tables that size fly.
  13. that would select all records from account and the matching urls, if a url exists If you want only matching records then just an inner join is needed. SELECT Table1.Id, Table2.url FROM Table1 INNER JOIN Table2 ON Table1.Id=Table2.Id;
  14. I would add the account id field into the URL table and create a secondary index on that field. Then make the select statement using a left join. I'm presuming the account Id is a primary key in the Accounts table. Something like SELECT Table1.Id, Table2.url FROM Table1 LEFT JOIN Table2 ON Table1.Id=Table2.Id;
  15. Is there a way to have a controller bot run a server bot multiple times simultaneously, passing data as needed ? EDIT: After watching some of the videos again... I guess this is where the Dynamic Worker bot scenario comes in, right?
  16. When a server bot is called it could take quite a long time to run. In my testing I am seeing a timeout at around the 100 seconds if the server does not respond in that time frame. Is there a way to increase / decrease the Timeout period? Is there a way to keep the connection alive? This is the scenario I have... Controller bot loops through a list of URL's and calls a server bot for each url in the list The Server bot can some time takes 10 seconds to do it processing before returning the results to the controller. But other times it could take 5 mins or 10 mins etc.. So anything above
×
×
  • Create New...