Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/29/2015 in all areas

  1. ChrisB

    Braintree Gateway

    I saw a request for a BrainTree payment gateway and remembered that while ago we whipped one up as we were contemplating using BrainTree. This was tested with test credentials but we never actually tested it or used it live.. there may be issues/bugs/etc and unfortunately as we don't currently use Blesta nor will we be using BrainTree, we won't be working on it/supporting it any further. I am 100% okay with Phillips Data, inc. taking over the plugin if they want to as we extended their stripe one to begin with, anyway. Or anyone else who wants to take over development on it is fine too. Anyway, feel free to test it out and report back here what you find for other users. Hope some folks find some value in this. braintree_gateway.zip
    1 point
  2. CCWHUK2

    Whmcs Migration

    Will do that tomorrow when backing up the db for testing. Thanks!
    1 point
  3. Paul

    Whmcs Migration

    If you import products using WebsitePanel, they will be imported using the Universal Module, and will continue to be billed normally. Blesta just wouldn't be able to auto provision new orders, or provide any management features. You should do a test import. We're continually improving/adjusting/refining the importer, it works great for a lot of people, but some people have issues, it all depends on what your data looks like and how you are using it. Updating it to import KB articles probably wouldn't be terribly difficult, so if that's the only hang up then we're happy to work with you to add that functionality and you can help us test it. You found the thread on WebsitePanel, I wonder if ModulesBakery still has plans for it. WorldPay is part of CORE-149 (I just made it public), not a ton of requests for it, but we might be able to help get this one built.
    1 point
  4. It actually is, since 1998, it's only used for legacy applications and should be avoided otherwise. SSL should be avoided when possible and TLS should be used. Gmail runs TLS over the standard port 587. Anyway, Which provider is this, your datacenter the server is located? That seems odd. What do your PHP and mail logs say? We can only speculate as to what the problem may be, but a quick look at the logs should shed some light on the issue. I'm using Mandrillapp for blesta and I don't have this problem, so sounds like a server configuration issue.
    1 point
  5. using port 465 for SMTP was revoked technically By the end of 1998! http://en.wikipedia.org/wiki/SMTPS So yes since it was revoked 17 years ago, it's VERY OLD FASHIONED ;-)
    1 point
  6. ChrisB

    Braintree Gateway

    See here: http://www.blesta.com/forums/index.php?/topic/4293-braintree-gateway/ Hopefully some people find some use for it as we unfortunately never got around to using it.
    1 point
  7. Here, I've fixed it: Starting at line 305 in package model. However this is not ideal, as it won't retain ordering if a group is added (even if old groups are kept) What should be done is - empty the group/package relationship table (excluding the ids of groups in the array from the submitted form), then do an array diff on the group ids, and add the new groups. that way the old relationship records are kept instead of blanked every time. since the ordering appears to be in the table for the many to many relationship between groups and packages. I'll try to implement when I have some time but keep in mind I have been working with the internal code for all of 2 days now so I am not very familiar. $group_ids = array(); foreach ($package->groups as $group) { $group_ids[] = $group->id; } // Replace all group assignments with those that are given (if any given) if (isset($vars['groups']) && $vars['groups'] != $group_ids) $this->setGroups($package_id, $vars['groups']);
    1 point
×
×
  • Create New...