Jump to content

Paul

Blesta Developers
  • Posts

    6,735
  • Joined

  • Last visited

  • Days Won

    842

Everything posted by Paul

  1. It is supported now. See http://docs.blesta.com/display/user/Logging+In scroll down for the section on Yubikey. Make sure you have another full rights admin account you can login and remove the TOTP settings in case things go sideways, but I did test this with our Yubikey and it was working just fine.
  2. Thanks, it's intentional. I've seen some people complain that Blesta looks "too slim", but we did that on purpose. While we will be adding in additional support for a lot of things, or goal is to keep everything simple. The fact is that the multi-level, super long nav that our competitors have contains things most people never need. The way we implemented the plugin system, and designed things overall, reduces the number of links to those actually necessary and settings and things that aren't needed on a frequent basis are hidden away. The problem for us I think, is that people are use to the clutter, but I'm hopeful that once they spend enough time in Blesta they will come to appreciate the way we handled the UI.
  3. What OS, Browser, and version?
  4. Ok, I see a task, CORE-439, to correct invoice padding.
  5. OpenSRS is planned immediately following an Enom module, which is more highly requested. We met with some of the OpenSRS guys at HostingCon in Austin, and have everything we need to start development.
  6. What version of Plesk is your Plesk server running? This appears to be an error returned directly from Plesk.
  7. Under Tools > Module log, look for an entry for Plesk. Copy & Paste that here (Feel free to redact *** any sensitive details)
  8. Can you provide a screenshot or steps to duplicate?
  9. It's certainly possible, but we have not implemented anything yet.
  10. After making a change to padding and padding character, did you create a new invoice?
  11. If you are using suPHP then it would be writable so long as owner is writable. In app/controller/install.php I wonder what would happen if you bypass the key generation. Would you mind giving this a try? Comment out lines 270 and 271 and statically set $system_key to something. // Generate a sufficiently large random value // Loader::load(VENDORDIR . "phpseclib" . DS . "Crypt" . DS . "Random.php"); // $system_key = md5(crypt_random() . uniqid(php_uname('n'), true)) . md5(uniqid(php_uname('n'), true) . crypt_random()); $system_key = "somethingrandomtotestwith"; Then run the installer, does it populate config/blesta.php's database details?
  12. Paul

    Piping Emails.

    Thanks for confirming. I've updated the manual to display both methods http://docs.blesta.com/display/user/Support+Manager
  13. I believe we talked about this early on in development, and architected the login system to be able to support this later without too much trouble.
  14. Paul

    Piping Emails.

    You can, just change the path to pipe.php to index.php, make sure to keep all the other parameters. Yes, so long as the server handles mail for the primary domain.
  15. Paul

    Namecheap Error

    The logicboxes issue was related to missing security certificates on peoples servers to verify SSL hosts with curl. verifyhost and verifypeer in the curl request was subsequently disabled. I believe this was disabled for Namecheap as well. Verify that there is not a firewall blocking egress connections to the Namecheap API, and that all login details are correct.
  16. Paul

    Piping Emails.

    pipe.php was created in an attempt to resolve this issue. Previously it was piped to public_html/index.php and people had trouble because there was no hashbang in the file. Some people allowed cPanel to add the hashbang itself, and got it working but this seemed less than ideal, which is why we created pipe.php. Email piping and the way various different panels implement it in their UI seems to vary.
  17. These would be good feature requests, and I would just move the thread but it's better if there's 1 request per thread.
  18. Looking really good, thanks for sharing and glad you're happy with what we've done!
  19. We don't mind.
  20. I would do a backup of the database after you do a fresh install. Then, you can just restore the database without having to do a whole new install.
  21. Please provide steps so that we can try to duplicate the issue.
  22. I think this is a result of a missing mbstring extension. If you install mbstring in your php, it should resolve it. I have assigned this to CORE-680 as I don't think we want mbstring to be a system requirement. If we have to use it we may have to check for it before allowing GeoIP to be enabled.
  23. i'm not sure this is a bug, Blesta is attempting to use the language define to display the language, which is the intended purpose except that a language define does not exist.
  24. Try this.. Try the following to enable debugging during import. Then attempt to import again. Open /config/blesta.php and change (line 11): Configure::errorReporting(0); to Configure::errorReporting(-1); Then open /plugins/import_managers/components/migrators/blesta/2.5/blesta2_5.php and change (lines 199-201): //echo $e->getMessage(); //echo $e->getTraceAsString(); //continue; to: echo $e->getMessage(); echo $e->getTraceAsString(); die;
  25. If someone answers, and their answer provides a resolution to the OPs question then mark it as solved. This helps other people who may be searching for a similar issue.
×
×
  • Create New...