Jump to content
UBot Underground

tripros

Fellow UBotter
  • Content Count

    154
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by tripros

  1. Thanks for this Nick, .mobi is one I would be interested in in addition to the .com/.net etc.
  2. Thanks for the heads up Nick! Looks like these bots are using the 'container' and 'page scraper' HTTP Post commands which are no longer in the plugin apparently. Probably need to re-write these now to use a different page scraper and variables I'm assuming. Would be great to have a list of all the code references so can copy and paste into the code view since can't even switch to node view to use the nodes automatically. Using notepad as you suggested is great, just don't have all the syntax unless I try all the variations in another bot, then switch to code view and copy them all then s
  3. H Aymen, Updated to 2.5.7 and all my bots running http post are showing errors in the code without any changes. Was there a change to the code format or something? Can't seem to pinpoint it. No other changes made, yesterday everything was working, today updated http post to latest and now all bots are showing code errors. Thanks
  4. Aymen, Regardless of the settings, the email is always sent 7 hours behind our current time zone. I tried a different email plugin and it sends normally at our current time zone so have switched to that one temporarily, but would like to get it working so I can switch back. The clients were complaining that the emails were stamped 7 hours ealier then they were sent. Thanks
  5. I've confirmed this with Aymen and have personal experience on the same, the plugin only works properly when there are no null values, if you have a null value in a field, you need to put something in the field rather than a null value. HTH
  6. Hey Dankass - The PDF plugin works, replied to your post above, just need to use basic HTML, nothing fancy like I and others mentioned. I have several apps running with this plugin and it works great. Both the authors are responsive in my experience. Try it with basic HTML and you'll find that it works like I did.
  7. Only basic HTML works with HTML to PDF in my experience, dug into this a lot when I got it initially and no JS, no styling code etc work, just basic HTML, images etc. It works well to produce a nice PDF, but nothing fancy. Keep the HTML simple and it will work fine. HTH
  8. Thanks for the updates Pash, trust your backup issues are better, that is a pain! Yes, the site I'm using is in the WP admin, it's a premium plugin that generates a CSV file on the fly after selecting the options I would like (checkboxes), then click a button and the Save As window pops up to allow me to save the file. It's a standard input button that I would need to be able to have the Save As button clicked, and or change the file name, here is the code below: <input type="submit" id="export_order" class="button-primary" value="Export Orders" />
  9. Sure thing Pash, really only one command, the click on the button that generates the file on the fly click(<value="Export Orders">, "Left Click", "No") plugin command("WindowsCommands.dll", "set active window", "Save As", "") plugin command("WindowsCommands.dll", "click dialog button", "Save As", "Save") the last two are my attempts at clicking on the 'Save As' button, without success, they don't work. And actually, the click doesn't work unless I remove the windows commands. Was thinking if your plugin could be a solution to this pop up save as dialog box?
  10. Hi Pash, Will this help resolve the issue I'm having with clicking (and changing the name of the file) the save button on a save as dialog box pop up generated from a website and pops up in bots? Having trouble getting that to work, the site generates a file after clicking a button, no download link or filename present in the source to use any other built in ubot commands and noticed your plugin today. And weird, if I add any commands after the click on the button to generate the file, the pop up doesn't work at all. Thanks!
  11. very welcome! hope it helps
  12. Unable to share the website, it's inside the WP admin of a client site and the download is in premium plugin options page. The code to generate the file is: <input type="submit" id="export_order" class="button-primary" value="Export Orders" /> There is no download link to the file in the source, the file is generated on the fly after submitting the button above. That's when the save as dialog box opens. Tried using the save downloaded file command and it saves a blank file since the save as dialog box doesn't open at all if there is any code placed after clicking the input button abo
  13. Right on, you'll need to scrape the URL's off the listing pages you captured above (visit the rent to own category page) and then put them in a list, then loop that list and visit each page then run that code that pulls the email off. You'll need to build a little error correction in of course, like if a listing doesn't have an email etc. If you only need the emails, save them to a list, or if you need the url and email (probably) then save them to a table and then save the table to a file.
  14. Right, thanks, there is no option to download file, only click on the link and it generates the file on the fly and opens the save as dialog box. It's a series of checkboxes that you select the options from and then click a button link to generate the file. Did I understand your question properly?
  15. Anyone successfully able to click a "Save As" when a dialog box pops up on a website to save a file? There is no other way to save this file other than to have the save as pop up, file is generated after clicking that link. Found a topic from a year and half ago, but the technique apparently doesn't work in latest version of ubot (5.5.1) after much testing. No other topics on the subject found. Interesting that when I add any commands after clicking the button to download the file, the download doesn't work, no popup at all. If I make that click the last command, the popup works fine, just
  16. sure thing, used innerhtml from <class="anonemail">, but a few others will probably work as well
  17. http://s7.postimg.org/ocn4kqlqj/scrapeclem_Capture.png
  18. plugin command("FTPCommands.dll", "connect to ftp server", "FTP", "ftp.dos.state.fl.us", 21, "anonymous", "anonymous", "/public/doc/FLR/DEBTORS/") { add list to list(%ftpfilenames, $plugin function("FTPCommands.dll", "$ftp get files", ""), "Delete", "Global") if($plugin function("File Management.dll", "$exists in list", %ftpfilenames, "20141031flrd.txt")) { then { plugin command("FTPCommands.dll", "ftp download file", "20141031flrd.txt", "{$special folder("My Documents")}/20141031flrd.txt") } else { } } } Just tested and works. Just nee
  19. What is the ftp connection code you used? (go to code view and copy and paste that line)
  20. Got it, thanks a bunch Dan, works like a charm now Appreciate your help!
  21. Sure thing, thanks Dan, here is the code, file attached: plugin command("SQLlite.dll", "SQLite Create Database", "{$special folder("My Documents")}/pc/pcdb.sqlite")alert($plugin function("SQLlite.dll", "sqlite error")) plugin command("SQLlite.dll", "SQLite Query", "{$special folder("My Documents")}/pc/pcdb.sqlite", "create table mytable (name varchar(50), category varchar(25), filename varchar(75))") alert($plugin function("SQLlite.dll", "sqlite error")) plugin command("SQLlite.dll", "SQLite Query", "{$special folder("My Documents")}/pc/pcdb.sqlite", "insert into mytable (name, category) val
  22. Regardless of how I set up the db path and what sql command I use, I continue to get the "Object reference not set to an instance of an object" error. Can create a db file, that works, all other sql commands give me this error and can not show any data using the get data command. Tried to create and populate the db file using sqliteexpert as Dan suggested (great program BTW, thanks Dan!) and then get data using ubot, still get the object error and 0 results. Tried this using the special folder (my documents) as well as direct path e:\dbname.sqlite and get the same error. Even tried the exa
  23. Thanks for the update Nick, you were right, it was the xpath! Videos showing fine here, and a quick note, don't use user agents! They don't seem to show any youtube results in google if you use a user agent the the http post plugin. Tried a bunch of different ones Aymen suggested, and they only work sometimes, never could get a consistent result. If anyone else has any experience with this let me know. Thanks again!
  24. Thanks Nick, appreciate that. Don't think it's the xpath though, I may be wrong, but checked the complete result of a basic google search.... google.com/search?q=keyword using http get, and reviewed the whole page source and it's the same exact result as in a browser, except for the youtube video listings.
×
×
  • Create New...