Jump to content
UBot Underground

LoWrIdErTJ - BotGuru

Members
  • Content Count

    4744
  • Joined

  • Last visited

  • Days Won

    215

Posts posted by LoWrIdErTJ - BotGuru

  1. Update 12-24-2019

    Christmas Eve Update for everyone..

    Modified files to overwrite
    IpnFunctions.php
    * modified to properly insert activation logs
    
    PaymentNotifier-JVZoo.php
    * modified to properly disable licenses when payment failed, canceled, refund, missed payment
    
    ManageLicenses.php
    * Added ability to select more than 1 license to delete in bulk
    
    AddBundle.php
    * can now select 1 product to give instead of required 2 or more.  
    This is so that you can list a product under any name in a payment processor, or item name and have it issue a corresponding Project 
    (will replace / remove getresponse option shortly as it will not be needed a more)
    
    EditBundle.php
    * can now select 1 product to give instead of required 2 or more.  
    This is so that you can list a product under any name in a payment processor, or item name and have it issue a corresponding Project 
    (will replace / remove getresponse option shortly as it will not be needed a more)
    
    ManageBundles.php
    * Added ability to revoke a bundle given to a particular email address
    
    reset Folder
    Updated reset files to properly reset a license so that someone can not reset their license, install on new machine and the old license still work.
    
  2. Purchasing Options

     

    I have updated the sales page with all latest features list.

     

    I have added purchase buttons for :

    • UbotLocker Desktop Software only
    • UbotLocker Ultimate the updated web admin panel files and mods
    • UbotLocker Desktop software and web panel updates and mods

     

    I have also added below those options if you dont have paypal and want to use credit card, there is alternative options to go through warriorplus and use credit card with stripe.

     

    Purchasing Desktop Software is manual delivery if bought on its own at the moment.

    Packaged with web panel and mods is automated.

  3. I just wanted to follow up and say TJ is a stand-up guy - he immediately jumped in to help me get my issues sorted, and got it all fixed in under 10 minutes. If you don't have this mod yet you're missing out, it's so powerful compared to the original script and worth every penny. Thanks again for the great product and awesome support TJ!

     

    Thanks for that bud, happy to have helped.

  4. Update 12-11-2019

    Updated Files to overwrite
    config_ext.php (version number increase for alerts in Home page)
    Header.php (fixed small error in file)
    ImportToReports.php (performance changes)
    Home.php (fixed small errors that could show up on some environments)
    AddProject.php (minor fixes)
    Update.php (adding in for notes to licenses)
    Install.php (added in for notes to licenses)
    AddLicense.php (added in for notes to licenses)
    EditLicense.php (added in for notes to licenses)
    DoAddLicense.php (added in for notes to licenses)
    DoEditLicense.php (added in for notes to licenses)
    IpnFunctions.php (added in for notes to licenses)
    
    New File
    
    API.php
    
    
    Upload Update.php and run it. Delete when complete.
    
    
    This update adds the ability to attach notes to a license that you can do manually, or you can use the new API.php file to post data to it to update the license notes from your software
    API.php works by
    
    sending POST data email=email%40gmail.com&key=theirKeyHere&notes=notes%20to%20add%20to%20license
    to he url path to API.php
    
    Values should be URL Encoded
    
    
  5. I use close tab all the time, just today actually. 
    close page was failing but with close tab working its fine.

    I've never really seen a need for drag and drop anywhere.  but i guess there is use cases for it.

     

    Have you tried latest Firefox with Exbrowser and using updated extensions?

    I use Chrome latest personally even though not tested or supported, and works flawlessly for me.

     

    But you might have some issues, but I wouldn't go as far as you did to say many more.
    You have a couple isolated issues that your wanting an update for.  Understandable.  As soon as its ready it will be out.

     

    Its also not been a year and a half since last update, it was 
    http://network.ubotstudio.com/forum/index.php/topic/18041-sell-exbrowser-now-on-sale/?p=135908
    17 October 2018 - 10:17 AM
     

  6. 2 Updates in 1 day (UNHEARD OF)

    Updates 12/10/2019
    
    Updated Files to overwrite
    Header.php
    ManageBundles.php
    DoEditBundle.php
    AddBundle.php
    DoAddBundle.php
    Install.php
    Update.php
    PaymentNotifier-**.php *(all files)
    PaymentNotify.php
    custom1.php
    EmailListHook.php
    Home.php
    config_ext.php
    
    
    Upload Update.php and run it.  Delete when complete.
    
    Edit your bundles to include Maximum Available.  Must include value.
    
    This update adds the ability to show number of times a bundle has been issued (used) and number of allowed uses.
    When it reaches its max uses it will auto close the bundle for you
    
    
    
    • Like 1

  7. Updates 12/10/2019

    Updated Files to overwrite
    ManagePayPal.php
    PaymentNotifier-**.php *(all files)
    PaymentNotify.php
    custom1.php
    IpnFunctions.php
    EditProject.php
    DoAddLicense.php
    EmailListHook.php
    DoCHangeSettings.php
    ManageSettings.php
    ManageProjects.php
    ManageLicenses.php
    ManageGetresponse.php
    ManageBundles.php
    ManageActivity.php
    ManageActivations.php
    ManageStaff.php
    ImportToReports.php
    ManageReports.php
    MailLicense.php
    Header.php
    ManagePayments.php
    config_ext.php

    config.php (place your DB details in the new file before uploading)

    Upload Update.php and run it. Delete when complete.

    For the Reports System, you will need to import your transactions for it to start reporting for you.
    Go to Reports under Site Settings - > Reports
    Scroll down to bottom right and click Import

     

  8. create folder($special folder("Desktop"),"flickr")
    navigate("https://www.flickr.com/search/?text=marketing","Wait")
    comment("Number of times to loop down page to show more results")
    loop(5) {
        run javascript("window.scrollTo(0,document.body.scrollHeight);
    ")
        wait(5)
    }
    clear list(%images temp)
    add list to list(%images temp,$scrape attribute(<class="overlay">,"fullhref"),"Delete","Global")
    set(#var,1,"Global")
    loop($list total(%images temp)) {
        navigate($next list item(%images temp),"Wait")

            wait for element(<class="ui-icon-download">,10,"Appear")
            click(<class="ui-icon-download">,"Left Click","No")
            wait for element(<data-track="downloadSizeSelectedOriginal">,10,"Appear")
            set(#download url,$scrape attribute(<data-track="downloadSizeSelectedOriginal">,"fullhref"),"Global")
            download file(#download url,"{$special folder("Desktop")}\\flickr\\{#var}.jpg")

        increment(#var)
    }

×
×
  • Create New...