Leaderboard
Popular Content
Showing content with the highest reputation on 11/15/2014 in all areas
-
[Plugin] Support Manger Addons (Add Widget/badge)
Blesta Addons and one other reacted to PauloV for a topic
Great Work, simple and very useful Blesta, could add by default many of these feutures athat we togetter have added on Support Manager, to be native I give 100% of my Support Manager Pro, rights to Blesta integrate as Native, I really dont mind and it will benifitiate all of us P.S - Did you already see the "CORE" on the next Support Manager? it will be sweet2 points -
[Plugin] Admin Tools (More Options For Staff)
Michael and one other reacted to Blesta Addons for a topic
this task are planned for the next release .2 points -
Version 3.3.2 is now available. You can download it in the Client Area. This is a patch release that corrects issues with 3.3.0. Patching Blesta See Patching Blesta in the User Manual for instructions. Release Notes See Blesta Core - Version 3.3.2. See all Change Logs.1 point
-
There is no email address. Looks like this is the web host. Looks like I'm going to have to call Italy. http://www.9net.it/default.asp1 point
-
Thanks guys, yes there was problem with files, now everything is working ok.1 point
-
What do you have on line 116 in init.php (Few lines before, few lines after also)? These are all defines, so a syntax error like that almost sounds like the file is incomplete.1 point
-
I have clients that I created dedicated solutions. This was many years ago 2008/2010 I'm looking for a module to handle solusvm but with API - End-User http://solusvmcontroller.com/ - but this is not a module.1 point
-
The "two weeks" that I have tell will have to incrise a litle more because of work After we have sort all company internal work we will continue to help Blesta1 point
-
1 point
-
Release 3.3.2
Blesta Addons reacted to PauloV for a topic
Sweet anouthe release P.S- Sorry my lack of interation with Blesta. To many work, very litle time at the moment1 point -
[Plugin] Admin Tools (More Options For Staff)
Blesta Addons reacted to PauloV for a topic
Great work as always naja7host1 point -
Many sorry about the late response, Lots of work (migrating servers, and alocaing some new networks) There isnt, for now an easy way to do that, because we have sew fields on Support Manager Pro database. We will trie to implement on the next release (The new Blesta Support Manager as now knowlede base built in in the next relase)1 point
-
Blesta will still store the last four digits of a card number, and its expiration date for use in email templates (e.g. card expiration reminders). So you would still need to be PCI compliant. It sounds like what you want is to use a non-merchant gateway, as the client will be forwarded off-site to make a payment instead. This has been discussed at length in another thread.1 point
-
Blesta Developer Wanted
Blesta Addons reacted to Michael for a topic
Blesta has a PayPal Pro gateway already. And there's 5 well known third party developers: 1. Eric (http://www.blesta.com/forums/index.php?/user/4-secforus-ehansen/) 2. Mujahed (http://www.blesta.com/forums/index.php?/user/10676-modulesbakery/) 3. Mohamed (http://www.blesta.com/forums/index.php?/user/13-naja7host/) 4. Paul (http://www.blesta.com/forums/index.php?/user/9426-paulov/) 5. AllToolKits [sorry don't know his name] (http://www.blesta.com/forums/index.php?/user/4347-alltoolkitscom/)1 point -
Advanced Debugger In Blesta
Blesta Addons reacted to MartyIX for a topic
Hello, Blesta has its own mechanism for displaying errors. It is part of minPHP framework and the relevant files are /lib/stdlib.php and /lib/unknown_exception.php. However, there are PHP libraries that can help you further to ease development in PHP. I like https://packagist.org/packages/tracy/tracy (see an example here: http://examples.nette.org/ndebug/nette-exception.html) Advantages Tracy has a production mode (useful for production version of Blesta when you want to log exceptions and other errors to files) and a develoment mode (useful for plugin developers, maybe even Blesta developers). Development mode allows you to see stack trace, parameters and much more (see http://examples.nette.org/ndebug/nette-exception.html) You can catch all unhandled exceptions. You can event catch NOTICE errors (I believe that everybody should do that.) If an error occurs you have a log file to examine. How to make it work in Blesta 1) Composer settings (composer.json) { "config": { "vendor-dir": "vendors" }, "require": { "tracy/tracy": "dev-master" } } 2) Create folder /log (in Blesta folder) 3) Update /index.php <?php /* SVN FILE: $Id: index.php 52 2010-10-01 20:50:08Z cody $ */ /** * This file transfers control over to the dispatcher which will invoke the * appropriate controller. We also handle any exceptions that were not handled * elsewhere in the application, so we can end gracefully. * * @package minPHP * @version $Revision: 52 $ * @modifiedby $LastChangedBy: cody $ * @lastmodified $Date: 2010-10-01 13:50:08 -0700 (Fri, 01 Oct 2010) $ */ $start = microtime(true); include __DIR__ . '/vendors/autoload.php'; include __DIR__ . '/vendors/Logger/Logger.php'; // my logging class containing \BlestaLogger (it has nothing to do with Tracy) \BlestaLogger::create(); \BlestaLogger::addDebug("==== REQUEST START ===="); //try { include(dirname(__FILE__) . "/lib/init.php"); // Start Tracy // Note: Error handlers are registered in lib/init.php. Tracy does the same therefore // Tracy needs to be initalized after init.php to overwrite previous behaviour) $serverName = isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : ""; $productionMode = php_sapi_name() === 'cli' || stripos($serverName, '.local') === false; $logDir = __DIR__ . '/log'; \Tracy\Debugger::$strictMode = true; \Tracy\Debugger::$scream = true; \Tracy\Debugger::$onFatalError = "\UnknownException::setFatalErrorHandler"; \Tracy\Debugger::enable($productionMode, $logDir); // Dispatch the Web request if (!empty($_SERVER['REQUEST_URI'])) Dispatcher::dispatch($_SERVER['REQUEST_URI']); // Dispatch the CLI request else Dispatcher::dispatchCli($argv); //} /*catch (Exception $e) { try { // Attempt to raise any error, gracefully Dispatcher::raiseError($e); } catch (Exception $e) { if (Configure::get("System.debug")) echo $e->getMessage() . " on line <strong>" . $e->getLine() . "</strong> in <strong>" . $e->getFile() . "</strong>\n" . "<br />Printing Stack Trace:<br />" . nl2br($e->getTraceAsString()); else echo $e->getMessage(); } }*/ \BlestaLogger::addDebug("==== REQUEST END ===="); $end = microtime(true); // Display rendering time if benchmarking is enabled if (Configure::get("System.benchmark")) echo "execution time: " . ($end-$start) . " seconds"; ?> Feature request If you like Tracy (please note that I'm not affiliated with the library in any way) maybe you can integrate it into Blesta. Have a nice day!1 point -
Nice! When you tweet out updates, if you mention Blesta we'll usually retweet. If it doesn't mention us, we don't usually see it. Nice work!1 point
-
Cpanel Module (Enhanced Integration)
PauloV reacted to ModulesBakery for a topic
New Update For The Tasty cPanel Module has been released, click here.1 point