Jump to content
UBot Underground

flexfanatic

Members
  • Content Count

    24
  • Joined

  • Last visited

Community Reputation

0 Neutral

About flexfanatic

  • Rank
    Member

Profile Information

  • Gender
    Male

System Specs

  • OS
    Windows 8
  • Total Memory
    More Than 9Gb
  • Framework
    v3.5 & v4.0
  • License
    Developer Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Correct, I wrote the last line from the code view and forgot and messed up on the syntax.
  2. plugin command("DatabaseCommands.dll", "connect to database", "mysql:server=\'localhost\';uid=\'myusername\'; pwd=\'password\'; database=\'cboffers\'; port=\'3306\'; pooling=false") { plugin command("DatabaseCommands.dll", "query with results", "select hoplinkurl from hoplinks where url IS NULL limit 1", &hoplinksurl) clear cookies navigate("{$table cell(&hoplinksurl,0,0)}.","Wait") clear list(%results) add item to list(%results,$url,"Don\'t Delete","Global") plugin command("DatabaseCommands.dll", "query", "UPDATE hoplinks SET url=\'{%results}\' WHERE hoplinkurl
  3. Correct, I downloaded the marketplace and then imported it into a MySQL database. What I'm trying to accomplish is getting the actual website URL from the hoplink url. I'm able to get the results I want but now I'm running into a issue with updating the column (last line where I'm performing an update and I don't get a error but no update either). plugin command("DatabaseCommands.dll", "connect to database", "mysql:server=\'localhost\';uid=\'myusername\'; pwd=\'password\'; database=\'cboffers\'; port=\'3306\'; pooling=false") { plugin command("DatabaseCommands.dll", "query with result
  4. I love when its that simple. Works like a charm. Thanks Code Docta
  5. I'm currently working on a clickbank marketplace scraper and I have all of the information like hoplinks, description, etc stored in a database. I'm now trying to obtain the actually website url by navigating to the page and capturing the url but I'm having some issues with figuring out how to obtain this. Looking at the page source there are a few tags that tell me what the full url is but is there a way to capture this from the address bar and save it back to the database table?
  6. Okay so this has definitely put me in the right direction . I decided to take out the description for now until I get the first 4 columns inserted correctly. With your query I'm able to insert without a error now but it's appending text to the front of the data. http://s7.postimg.org/vbshtw8yz/query1.png http://s7.postimg.org/x4vei7u5n/query2.png
  7. That was the first way I had it but it says the row count does not match. The issue is not the amount of columns I'm trying to insert it seems Ubot table is outputting as one cell. http://s12.postimg.org/50e51wsa5/mysqlerror1.png http://s12.postimg.org/vzhzx2er1/mysqlerror2.png
  8. I wrote a bot that scrapes product details from a website and adds the information into a Ubot table (five columns). I'm trying to save this data to a table in MySQL (again five columns). I can connect and run a insert query but it's concatenating all five columns into one for my insert and I'm not sure what I'm doing wrong. ui text box("URL To Scrape:", #url) ui text box("Pages To Scrape:", #pages) ui stat monitor("Product Titles:", $list total(%titles)) ui stat monitor("Product Thumbnails:", $list total(%thumbnails)) ui stat monitor("Product Images:", $list total(%images)) ui stat moni
  9. Okay, so I made a change to how I scrape the title which has resolved by issue with the trailing space and carriage return. Now I'm adding the description of the product to the results but I'm running into the same issue where it outputs to a separate line due to the <li> tags. ui text box("URL To Scrape:", #url) ui text box("Pages To Scrape:", #pages) ui stat monitor("Product Titles:", $list total(%titles)) ui stat monitor("Product Thumbnails:", $list total(%thumbnails)) ui stat monitor("Product Images:", $list total(%images)) ui stat monitor("Product Description:", $list total(%des
  10. So I decided to fire up my Ubot Studio and try to learn how to create a scraper as I need one from Cafepress. I'm able to scrape the results I wanted but I'm having some issues with the saved csv file. For some reason it's putting the Title and URL's on separate lines. I'm also wondering how to handle scraping multiple pages (over 100 just for this product type). ui text box("URL To Scrape:", #url) ui stat monitor("Product Titles:", $list total(%titles)) ui stat monitor("Product Thumbnails:", $list total(%thumbnails)) ui stat monitor("Product Images:", $list total(%images)) ui stat moni
  11. I got a little further with this bot but the popup box is opening in it's own Window (even if I don't set allow popups("In New Window"). The page does not close so no points are awarded. ui text box("AddMeFast Email", #emailaddress) ui text box("AddMeFast Password", #password) ui text box("StumbleUpon Username", #suname) ui text box("StumbleUpon Password", #supassword) set user agent("Firefox 6") clear cookies navigate("http://addmefast.com/en/login", "Wait") wait for element(<href="/terms.html">, "", "Appear") type text(<email field>, #emailaddress, "Standard") type text(<pas
  12. Thanks that worked (although it broke my stat monitors but I can likely fix that without a lot of work). <select variable="#categories" fillwith="value" /><option value="">Select Category</option><option value="http://fancy.com/shop/art/">Art </option><option value="http://fancy.com/shop/food/">Food</option><option value="url3">Cat3</option></select>
  13. So after viewing a pretty good video tutorial on how to scrape data from a website I created my own bot for fun and it currently runs pretty good. Now I'm trying to change some of the UI elements (in this case the drop) to look better than what i currently have. The drop down is basically a selection of urls to choose from but I would like it to show up as the actually category (Art, Food, etc) instead of the full url path. http://s11.postimg.org/oasn074r7/uibox.png ui drop down("Category", "http://fancy.com/shop/art,http://fancy.com/shop/food", #categories) ui stat monitor("Titles Scra
  14. Before I purchased I should have determined what "delivered shortly" means as I have yet to receive any download links.
×
×
  • Create New...