Jump to content
UBot Underground

tnhomestead

Fellow UBotter
  • Content Count

    69
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by tnhomestead

  1. What file do i have to include with ubot for a bot to run that does not use the browser? the built in installer seems to use a lot more space than I prefer
  2. If someone else ends up needing this, I set a thread before I call the FTP connect, the thread is just a 45 sec wait and an if test. So if the FTP works, i set the connect variable to true, and the bot runs normally. If at the end of 45 sec the connect variable is still false, it pops up an alert about invalid name/password etc and then stops the bot.
  3. Okay, the ftp connection was working fine,then it started acting up on occasion -- now has stopped working! http://keepmysitesafe.com/wp-content/uploads/2017/01/Ashampoo_Snap_2017.01.11_12h26m50s_001_.png This happens on every call to ftp, and its always object reference error. Have deleted all copies of ubot, and reinstalled and still get the error. Anyone have any ideas?
  4. Problem seems to be that if the connection details are wrong, you never get to the next line in the code. Before compiling, you get a pop up from the connection wizard if your details are not correct (ie unable to connect) but after compiling if the connection details are wrong your code seems stuck, and even the pop up doesnt show. I have an alert before and after the connection to ftp, the first one shows but you never get to the second one. Thinking of maybe trying a timer in a different thread and give it 60 to 90 seconds to connect, if not done by then show an error message.
  5. is there any way to test if an FTP connection was successful? After I compile, I no longer see the error message. And the bot seems to die or get stuck there, since the alert I set to show lack of success never gets run.
  6. PHP 7 is the same(pretty much) as 5.6. Any tutorial that teaches 5.4 or better PHP will work to learn from. Even an earlier version of PHP is fine, just download WAMP or another such system to your computer and play. There are a couple good tutorials on Udemy, one has over 50 hours of content. And a lot of tutorials on youtube as well. A good place to start is here at http://www.w3schools.com/Php/, its not the best but it will give you a good primer on PHP. I was at a launch perty for 7, and one of the core devs told us all the new changes -- you wont notice the changes for 7 for a while.Thats
  7. Anyone have any idea why the virus total on this plugin is so high? Ran my own scan with the same results.
  8. There is a free 3rd party plugin that offers switch. You can find it in this thread. http://network.ubotstudio.com/forum/index.php/topic/14198-howtouse-switch-case/
  9. Which files are you saying are infected? Were they core files or third party addons? Seems a lot of users here, and if the core or even addons folks would find out fast.
  10. Dumb question I am sure, but where do you find testers or do you? Not sure if its worth while trying to find some, but only have a couple computers to test on and not sure if thats enough or not! Thanks!
  11. The support files are in appdata/roaming/ubotstudio/browser/version number you are using. Basically all the files in there need to be used.
  12. Okay, maybe use 3 lists -- one with data, another to track the data. IE list 1 is Chicago, New York, Memphis and list 2 is your used list and list 3 is your random list. Get a random list item from list 1, add to list 3 and save the item location to the used list(list 2). On the second random to the last one, do a random number, check to see if its been used or not from list 2. If it has not been used save the item to the list 3 and save the item location to the used number list(list 2), if the item was used already, then get a new random number. This would allow you to build your csv pretty
  13. As long as 98SE is alive, thats all you need to run anything!
  14. Money doesnt rule everything or everyone -- I lived off grid not for money but for fun. And we already have found proof of alien life -- look up the WOW signal! But without money, we starve -- or the government takes our computers and property to pay taxes! But back to my journey, had to work the last few days so not as much done as I wanted. The site is close to done, just a few last tweeks to make. The first page for the first bot is done.and the video for the the bot is finished -- I love Camtasia!
  15. Looking for a good download solution for WordPress. Have set up several sites for customers using WooCommerce, and have played a bit with EDD. Any other ideas? I just need PayPal for my processor. Right now have setup using EDD, but looking for other options.
  16. Well got a few steps done! First bot is running and testing, tutorial site was moved to the new server and is running. The bot site is moved as well, and just needs tweaking to finish, also added help desk(Hesk) and have that up and running. Thanks for the ideas -- I agree on customer service being number 1, and want to make sure my bots will do it better! The last one, my first bot will be cheap, I dont think its worth a huge amount. The second one is going to be at least 100, maybe a bit more per copy. Good point as well! well time for bed, got a long day tomorrow!
  17. Okay, I am going to start this to help keep me on track to my goals. I have had Ubot for a while, never used it much though. But now I am in a position where I want to be more independent and I think(hope) Ubot will help get me there. While I do not have a background as a marketer, I do have one in teaching and programming. So my goal is simple -- I want to make 3K a month so I can work at home instead of leaving every day! To that end, I am going to work on 3 things. I probably should do one at a time, but I prefer to work on more than one project. First -- bots for sale! I have one in b
  18. Thats hard to answer because there is a lot of information left out such as memory of the bot, are you scraping a 10 million item list or having 40 users connect at once? I would suggest a smaller server to start, you can always expand if needed. For SEO, I use a server from Powerup, Hosting due to unlimited bandwidth its cool to run scrapers/etc and that vps is only 1GB ram, but will easily handle 20 to 40 threads at once on 4 different tools. With that said, my old server is being shipped back from Turnkey Internet to be upgraded a bit, that will have 64GB ram, 2 TB hard drives and dual quad
  19. Both installers allow you to pick and choose which support files you want to install, so you can just install the minimum needed. I do agree on the whitelabel, but it does remove it from the front end. Good luck
  20. Yeah you cant hide the location of the support files as far as I know. For the first problem, just use Actual Installer or the Ubot Installer and bundle the support files in with the code. That way you can put them in the proper location and they dont need to be downloaded.
  21. Yes you can create some awesome bots just using the standard version!
  22. Dumb question, but you are installing the support files into the appdata directory, right? Compiling your bot now, I am having no problems compiling bots and running them with 5.9.2 and using actual installer for my installer. Works fine for me, but I did change the click element to use the submit button instead of your choice. Installed it on 2 computers is all, but thats all I have! LOL
  23. yeah the wait goes after the search page command, to give the page time to load. Sometimes the wait until page loaded command seems to need some extra time on some pages so I just add a wait command for a second or 3. I add a wait after every page load to be sure it has time to load the page and scrape it.
×
×
  • Create New...