Jump to content
UBot Underground

arunner26

Fellow UBotter
  • Content Count

    283
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by arunner26

  1. I find ''scrape table'' under Browser Commands in v5.
  2. I wouldn't say it is an impossible task at all. Here is what I would do: 1. Find the most understandable of the "various equations out there" that you mention above 2. Break down the equation you found in #1 above into several mathematical steps. 3. Write a UBOT command for each of the steps you defined in #2 above. 4. Display or use the results of #3. If you show us the equation you want to solve here I bet you'll get some coding help. Good luck, Andy (Arunner26)
  3. SmileyBot, I was having quite a few problems with email functions too. I think some may have been UBOT Studio problems but there were several problems with ISPs blocking in various ways. What I did was to take a different approach and one where I can watch what is going on. I set up an account with GoDaddy that can have 500 email accounts. GoDaddy support states they do not block outbound emails. Next I wrote a BOT to create 500 accounts and forwards any messages to the 500 accounts to 1 of the accounts. Next I wrote a browser based BOT that sends emails using CPANEL's
  4. Thanks for the information calheira!
  5. Nick, some great information in the blog article, thanks.
  6. Innovativerise, Yes, I agree that since each website is different it will be a challenge; but I believe it is possible with enough effort. I suggest you get a copy of Nick's (HelloInsomnia) yellow page scraper which gives you name, address, phone and email (from one YP site) for given keywords at a location.and uses proxies. I find his programs great for learning and as the basis for new bots. http://www.ubotstudio.com/forum/index.php?/topic/16179-sell-yellopagescom-scraper-its-time-to-learn-and-earn/?hl=scraper Good luck on developing the new bot. Andy (Arunner26)
  7. I wouldn't say that the coding with tables in MySQL is easier but with MySQL tables you can use INDEXING to make access for the compare faster. In addition, if you call a stored procedure to do the work it will use the power of the server to do the compare. 10 million rows is a big table and represents a serious work load. At my regular job we regularly process tables in the 40 million row range and have history tables that go over 1 billion rows. So given the right servers and techniques some amazing processing is possible these days.
  8. IF - #ThisVar contains "ABC" AND #ThisVar contains "XYZ" THEN - do this
  9. Check the "ADVANCED" drop down on "add list to list" where you have the options "DELETE DUPLICATES" and "DON"T DELETE DUPLICATES".
  10. Nick, Thanks for your write up. You have some really great ideas there. You did say that "my end goal is to check 1 million against 10 million; ideally.". If you want to check 1 million against 10 million I think you may have a problem scaling the in memory approach. I think that if I was going to do that I would load the 1 million and 10 million into MySQL database tables. Then I would write a stored procedure to do the compare of the 2 tables on the server and put the results into a 3rd table. So if you have that database method setup you can call the stored
  11. Rich, Thanks for the update. I just became an affiliate on JVZoo for your products yesterday. They look great. I'm putting together an email to blast out on "Business Listing Submitter". Hopefully we can sell some products. I also put them on one of my websites at: http://www.sweetbots.com/products/ Great work, keep the products coming. I'll sell them. Andy (Arunner26)
  12. Thanks for the shares!! I'm always trying to learn more so I appreciate them.
  13. This is how I do it for the current date/time. MySQL table: CREATE TABLE MailingInProcess ( ID int AUTO_INCREMENT NOT NULL, MailingName varchar(50) NOT NULL COMMENT 'Mailing Name', MailAccountUsername varchar(100) NOT NULL COMMENT 'Mail Account Username', MailAccountPassword varchar(50) NOT NULL COMMENT 'Mail Account Password', MailConnectionType varchar(50) NOT NULL COMMENT 'Mail Connection Type', MailServer varchar(100) NOT NULL COMMENT 'Mail Server', MailServerPort int NOT NULL COMMENT 'Mail Server Port', Email
  14. Traffik Cop, Thanks for the information. I have not read about ReadyBoost before; but I will give it a try. Andy (Arunner26)
  15. Buddy, I am to day 17 of the 30 day training and have learned quite a bit. Training online is definately the way to go and at $97 it is such a bargain compared to being in a classroom. Thanks for making the training available and keep up the good work, it is appreciated by your Gold members. Andy
  16. I just submitted the following ticket to support: I have noticed that errors generated in version 5 (ESPECIALLY for DATABASE and EMAIL Commands) do not display messages to the developer in Version 5. I can take the same program I am developing in Version 5 and run it in Version 4 and I get the error messages. Yes, I have the option turned on to SHOW ERRORS in Version 5. This may be one of the reasons people think that Version 5 is UNSTABLE. In reality I think when there is a problem with a script in version 5 the error is not reported and people think that version 5 does not work or is hu
  17. Based on what Gogetta said, I would ask your customer what language his machine runs. Once you know the answer maybe you can reproduce the environment where the program fails. Then again, if he is using the same language as you, you could remote access his machine and watch it in action for clues. Andy
  18. Nick, thanks for the update. I tried to say thanks in an email back to you and got the following bounce details: I thought you would want to know. Hi. This is the qmail-send program at bounce.mail.unifiedlayer.com. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. <sales@imautobots.com>: 192.232.219.99 does not like recipient. Remote host said: 550-"JunkMail rejected - gproxy2-pub.mail.unifiedlayer.com [69.89.18.3]:41374 550-is in an RBL on rbl.websitewelcome.com, see Blocked - see 550 http:/
  19. Hi Nick, I did get past the "Assertion failed!" error. I went back to plugins and found that even though I had installed the "Aymen's File Management" plugin it wasn't there. I reinstalled it and I was able to open the source. Now when I click on the SAVE LOCATION button nothing happens, like there is an error but it is not displayed. Do the "File Management" plugin and the "YP Scraper" program work on UBOT 5 or do I need to use UBOT 4? Or is there something else I am missing? Andy
  20. Thanks Miriam. I did install the required plugin for the YP Scraper and still got the error. I was thinking since the error has been seen before maybe someone or the developer could offer a fix.
  21. Hi Nick, When I open the source code YP SCRAPER or EMAIL EXTRACTOR PRO I get this error: Assertion failed! Program:... File C:\boost\boost\boost/smart_ptr/shared_ptr.hpp Line 653 Expression:px!=0 I am running UBOT 5, what should I do to fix that error? Andy
  22. Being new to UBOT Studio I only have UBOT 5 installed. I bought the YP Scraper from Nick (HelloInsomnia). When I try to open the source file I get the error everyone was talking about back in October of 2013 shown below: (Assertion failed! Program:... File C:\boost\boost\boost/smart_ptr/shared_ptr.hpp Line 653 Expression:px!=0) Did anyone figure out a fix for this? Andy
  23. quite_interesting and Dan Thanks to both of you for the input. I hope the 5.0.10 version helps to stabilize version 5. The current project I have under contract will scrap a site for master/detail information using proxies as well as multi-tasking and then the data will be inserted into a MYSQL tables for inclusion in a subscription service I am also writing. At this point, I am planning to buy UBOT deveoper version because the scraper will be fairly complex and need to be production grade to be run over and over. I have been doing this type of work in the past with .NET custom application
×
×
  • Create New...