Jump to content
UBot Underground

meter

Fellow UBotter
  • Content Count

    954
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by meter

  1. Hi Dan, It depends on the web service really. Usually all the logic is in PHP/Python/.NET, but there is nothing preventing that web service from talking to other systems/services if need be. You can also repurpose any server to do anything you want. So yeah, a cloud server could be repurposed to be an exchange server. I'm a bit confused by your terminology, so I'm going to define some things below: A frontend is considered to be: HTML/Javascript/CSS. This is what the customer sees. A backend is considered to be: PHP/Python/.NET/Ruby. This is the actual code executed on the server, to r
  2. 2 of the most popular cloud services that automatically scale up/scale down to accommodate traffic to your services: https://www.heroku.com/ http://aws.amazon.com/elasticbeanstalk/ There are many others. Also you can make your own scaling software using the APIs of whatever cloud platform you're using. However in 90+% of cases you can just get away with using a properly tuned dedicated server. A lot of people using these clouds are prematurely optimizing and wasting a lot of money in the process.
  3. Sorry dude, that's not something i have done, although I recall some people posted code samples in this thread. I am looking into adding smtp support to UbotLocker yes. -meter
  4. It's 100% a cookie/sessions issue, either sessions for PHP aren't working, or cookies are not being saved by your browser. It's weird that a PHP update didn't cause this. You can open CheckLogin.php and try changing this: //session_register("myusername"); //session_register("mypassword"); //session_register("id"); session_start(); $_SESSION['myusername'] = $myusername; $_SESSION['mypassword'] = $mypassword; $_SESSION['id'] = $id; To this: session_register("myusername"); session_register("mypassword"); session_register
  5. Hi Volund, This might happen sometimes if your host updated PHP and broke the sessions addon. Basically UbotLocker is unable to find cookies to authenticate you as logged in, so that's why you're seeing that. -meter
  6. Hi Team_LX, can you please describe problem? Hi neutralhatter, sending you a PM -meter
  7. Hi Volund, One way I saw a customer do this is you have each bot in a separate directory. Then in topmost directory you have custom C# bot that runs the license prompt, checks for update, and then copies license file into all subdirectories if license is correct. It was fairly advanced but seemed to work well. -meter
  8. Sorry Kev, Enterprise licensing isn't something I plan UbotLocker to do for now. It can get very complicated and I just don't want to descend into that rabbit hole. -meter
  9. Not sure Dan, sorry. I start working on this and something else always comes up. -meter
  10. Hi Volund, sorry the https incompatible thing is my fault. It's a bug that I should have fixed long ago. @dyvel: Yes they can, but the caveat is the bots cant be in the same directory. -meter
  11. UbotLocker has no support for trials thus far! Various users have implemented them on their own. -meter
  12. No worries Just sent you your package, enjoy! -meter
  13. I think at that point it would be best for someone to make their own customized system to handle the credits Nonetheless, an interesting idea, thank you -meter
  14. Hi Otts, there is a variety of ways to do this. One would be to records the timestamp of when the license is created, and then disallow access if a certain time has elapsed since the timestamp. -meter
  15. Hi Lucas, Due to holidays I won't be on Skype for next week. Please send me PM or email -meter
  16. No, no option to tie into DAP thus far. Did you make a RAR file by accident instead of a zip?
  17. Hi mamica, Open Internet Explorer, go to Tools -> Options -> Connections -> LAN Settings, and then check if there is some weird proxy setting there. Usually that is the problem. Newer Chrome and Firefox inherit this proxy setting by default, so it can make it look like you have no internet if the proxy is set incorrectly. -meter
  18. You can also write a custom SQL query, then run it under phpmyadmin. Let me know if you need help with that -meter
  19. Sorry mamica, if you want to add rate limiting or filtering by IP address or a captcha to the emailhook, it has to be done by you. The emailhook is just a very simple mechanism that each person must customize to fit their needs. Generally select all is a very bad feature to have. It gets very tiring to get a PM each week that goes "I SELECTED ALL MY LICENSES AND DELETED THEM NOW THEY'RE ALL GONE PLZ HELP ME!!!" Sendgrid is an alternative email sending solution, but UbotLocker doesn't support it out of the box. -meter
×
×
  • Create New...