Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/28/2015 in all areas

  1. Paul

    [Gateway] Braintree

    The merchant gateway Braintree is now available for Blesta, and will be included in the next release. The gateway requires PHP 5.4 so, don't install it if you aren't running PHP 5.4 or greater. To install, download the attached braintree.zip, unzip and upload the braintree directory to ~/components/gateways/merchant/ Then, follow the directions in the documentation at https://docs.blesta.com/display/user/Braintree braintree.zip
    4 points
  2. Rocketz

    Paypal Billing Agreements

    It would be great if Blesta could support paypal billing agreements. This way, we can drop paypal subscriptions. If someone downgrades, upgrades, adds a service, etc, you need to cancel the subscription, and have the customer set it back up again. It's a very tedious process, especially when there's something simpler available with Paypal. The goal is the least amount of work a customer has to do, the better. Customers want things to just *work* and not have to perform billing's job. Can we get this feature put in place in the near-ish future please?
    1 point
  3. Anyone outside the UK seen this comedy it's amazing some videos are removed due to copyright I believe.
    1 point
  4. Is port 587, 465, and 25 egress open at your firewall? That is the most common issue.
    1 point
  5. I don't experience it with Safari version 5.1.7. It looks to be a bug with Safari >= version 6 in how it interprets CSS fixed positioning. I would recommend using one of the other browsers until they come up with a fix. Or, you could try to implement some kind of work around in Blesta to get it to appear.
    1 point
  6. When does the empty error box appear? After what action is performed? Modules often display errors received from the module API, so it could be that the error returned by the API is blank. In this case, you might want to check the module logs after you receive the error to see if there is any raw error log data.
    1 point
  7. The OP's issue ended up being caused by normal markdown behavior in the creation of a header (<h2>) tag. The header font was larger and appeared bold. e.g. He had a sentence on one line immeditaelly followed by a line of hyphens: This sentence was translated to a header <h2> in markdown. ---------------------------- when the desired behavior was a paragraph followed by a horizontal rule, which requires a blank new line in between, e.g. This sentence becomes its own paragraph <p> when it is followed by a blank new line. ----------------------------
    1 point
  8. The merchant gateway Converge (formerly VirtualMerchant) is now available for Blesta, and will be included in the next release. To install, download the attached converge.zip, unzip and upload the converge directory to ~/components/gateways/merchant/ Then, follow the directions in the documentation at https://docs.blesta.com/display/user/Converge converge.zip
    1 point
  9. Paul

    [Gateway] Sofortüberweisung

    Free or paid? You may want to provide more information in your post.
    1 point
  10. Tyson

    Invalid Sid In Support Manager

    One of these reasons caused the redirect: The ticket is assigned to a client. -- The client must be logged in to reply. The ticket's support department only allows clients to reply. The SID was not given or is invalid.
    1 point
  11. Hi I bring today a very useful plugin. This is a Uptime Robot and Server Monitoring Plugin, Requires ssh2 installed in the server for Server Monitoring. Features Uptime Robot Check the server every 5 minutes Alerts over Email or via SMS with Twilio Server Monitoring (Requires ssh2 and root Password) Automatic updates (Updates the software and packages every day, via yum or apt-get) RAM Alerts (If only have 10% free) HDD Alerts (If only have 10% free) CPU Alerts (If CPU usage is more than 80%) Update [07/08/15]: Now is possible delete a server Fixed problems with emails I don't have screenshots, but I have a video. https://youtu.be/haI03KEbWSg UPDATE: In some cases the plugin don't create the Cron Job Task, If this occurs login into PHPMyAdmin, Go to your blesta database and go to the cron_task_runs and add the following entry: id => n+1 task_id => Cron Task ID (You can view this in the cron_tasks table) company_id => Your Company ID (Normally 1) time => NULL interval => 5 enabled => 1 date_enabled => 2012-01-01 00:00:00 uptime_robot.zip
    1 point
  12. From his order form themes: If you want send me a donation, you can send to order@cyandark.com.
    1 point
  13. Cody

    Update Geoip Database Weekly.

    Yup, it's on todo list.
    1 point
  14. Adam

    Update Geoip Database Weekly.

    If you run this in a cronjob, no need to log each message since you log the whole script (email or pipe redirection). I would also make the suggestion you use https as opposed to http for the transfer (geolite supports this). You could get a small performance boost if you used named pipes and curl. Something like this would work: curl -L https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz | gunzip > GeoLiteCity.dat That is pretty agressive. The Maxmind website says the database is updated on the first Tuesday of the month. Taking into account the various number of timezones and not knowing when on Tuesday the database is updated, lets run this on Wednesdays instead. 0 9 * * 3 [ `date +\%d` -le 7 ] && curl -L https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz | gunzip > /srv/uploads/system/GeoLiteCity.dat Runs on the first Wednesday of every month at 9AM server time. It is more then just countries, cities are accounted for. With IPv4 shortage, v4 addresses are being reallocated, reassigned more fequrently then ever before. Note to Blesta Devs: Should switch to the new GeoLite2 database format. The current one is legacy and will be deprecated at some point. The new GeoLite2 also includes md5 sums which can be added to the script above. http://dev.maxmind.com/geoip/geoip2/geolite2/ -Adam
    1 point
×
×
  • Create New...