Jump to content
UBot Underground

askwpcoach

Members
  • Content Count

    15
  • Joined

  • Last visited

Community Reputation

0 Neutral

About askwpcoach

  • Rank
    Member

Profile Information

  • Gender
    Male

System Specs

  • OS
    Windows 8
  • Total Memory
    More Than 9Gb
  • Framework
    v4.0
  • License
    Professional Edition

Recent Profile Visitors

2257 profile views
  1. @nuc63 Thanks for the instructions, I will update the script and try again tomorrow.
  2. Thanks for all of your attempts to assist. This bot task is now finished, so I no longer need it to work. However I think it may be worth it to say the following: I have created 7 bots on this particular migration project, all of which have had tasks exceeding 300 iterations. None of my other bots have had trouble. I have run the bot on more than one computer I have made adjustments to the codeIs there any way I can debug the exe bot just for the sake of learning what I did / went wrong ? Thanks.
  3. @Arunner26 Just finished running the bot, it made it to 14 this time (see screenshot). ui open file("Load Settings File", #open_settings) ui save file("Create new settings file", #settings) ui open file("Open content csv file", #content_csv_file) if($comparison(#open_settings, "!=", "")) { then { create table from file(#open_settings, &store_credentials) set(#domain, $table cell(&store_credentials, 0, 1), "Global") set(#username, $table cell(&store_credentials, 0, 2), "Global") set(#password, $table cell(&store_credentials, 0, 3), "Global")
  4. @Arunner26 Fantastic idea, I have updated my code and running the bot now. I will let you know the result.
  5. @Arunner26 Thanks for the recommendation. I started off with 309 items to post, since then I have posted 177 during debugging and running. I have analyzed and changed things around in the data file, but still get the same results. I have run the bot on various computers also. I think I will have no other choice than to finish the job 13 posts at a time :-( . This will take me much longer than I expected when building the bot, but I suppose it is still less time than it would take doing it manually. Thanks again for all of your attempts to help.
  6. :-) I know this may not mean much, but I'm a WordPress developer. I know in detail everything that is in the site and can assure you there are no security triggers. I have been creating small bots to do this type of task and only ran into trouble on this one. Nothing on the site is broken or disabled, etc... The bot just stops after posting the 13th item no matter what I do.
  7. Thanks for your suggestions, the wait for browser event wasn't important so I removed them from the loop. The category change and tags change are very small ajax buttons that submits text (screenshot: http://screencast.com/t/h8uJ9wW9KrY ). The wait for browser event commands are removed but the bot still stops at 13. Will it be helpful if I provide WordPress credentials to you so you can run it from your computer? I will send in private. ui open file("Load Settings File", #open_settings) ui save file("Create new settings file", #settings) ui open file("Open content csv file", #content_csv_fil
  8. Hello Dan, Thanks for the suggestion, I added the wait for element at the end of the loop (before the iteration). But I still have the same result, the bot is fully functional and working perfectly until the 13th iteration. ui open file("Load Settings File", #open_settings) ui save file("Create new settings file", #settings) ui open file("Open content csv file", #content_csv_file) if($comparison(#open_settings, "!=", "")) { then { create table from file(#open_settings, &store_credentials) set(#domain, $table cell(&store_credentials, 0, 1), "Global") set(#
  9. Hello Everyone, Thanks for taking the time to review my issue. I'm still pretty new to building bots, so I'm sure there's something I'm doing wrong in my code: ui open file("Load Settings File", #open_settings) ui save file("Create new settings file", #settings) ui open file("Open content csv file", #content_csv_file) if($comparison(#open_settings, "!=", "")) { then { create table from file(#open_settings, &store_credentials) set(#domain, $table cell(&store_credentials, 0, 1), "Global") set(#username, $table cell(&store_credentials, 0, 2), "Global")
  10. Correction, I just checked. It was .Net 4.0, I upgraded to 4.5 and it is now working perfectly. Thanks
  11. yes, most recent version of .net also most recent version of Flash, I have tried the exe on two computers one win 7 and one win 8, it's not working on either.
  12. Thanks for your suggestions, I don't think I can compile anything since I only have the professional version. If I am mistaken, please guide me to more information. I have tried moving the .exe to C drive & running as administrator. I have also disabled AVG but I still can't get past loading. Thanks for your help, I am very new to Ubot Studio.
  13. Hello Everyone, I recently finished a bot that works fine on my desktop & laptop (I have full ubot studio installed on each), but it will not get past the "Loading..." stage when running on my other laptop. I have ensured he has .net framework, google chrome browser and Windows 7 operating system and a strong connection to the internet. Any thoughts on what could be wrong? Thanks
  14. Thanks for your solution, you were correct about the problem. After adding wait commands, the script no longer freezes the UI. Thanks for your help.
  15. Hello, I am working on writing a bot that will allow the user to gather Youtube videos to a list for posting on their WordPress website. My problem, is that this code: loop while($comparison(#stop, "!=", "Stop")) { set(#add_all_videos, "false", "Global") set(#add_video, "false", "Global") if($comparison(#add_all_videos, "=", "add")) { then { add list to list(%vid_urls, $scrape attribute(<class="contains-addto yt-uix-sessionlink spf-link ">, "fullhref"), "Delete", "Global") } else { } } if($comparison(#add_video, "="
×
×
  • Create New...