Leaderboard
Popular Content
Showing content with the highest reputation on 02/13/2018 in all areas
-
We want you! :)
MineHarvest66 and 3 others reacted to activa for a topic
What about whmcs module to sell blesta product ?4 points -
I usually use print_r to see the content of a variable, is more human-friendly. public function validate(array $get, array $post) { $cgOrder = $this->coingateCallback($this->ifSet($post['id'])); $return_status = false; $status = null; // Debug print_r($cgOrder); exit;3 points
-
I have updated the request title and added a comment. We'll revisit this soon. The solution isn't simply updating the Stripe gateway to use stripe.js, but rather a change to the core gateway system is required to allow the gateway to essentially bypass Blesta. The change isn't trivial, and we need to consider how other gateways that behave similarly work so it can be as inclusive as possible.2 points
-
EA-PHP70 - 72 & HTTP 500
Abdy and one other reacted to WebhostingNZ.com for a question
Did you apply the PHP7 patch ? [EDIT] The patch/hotfix is in the folder 'hotfix-php7' when you extract the blesta.zip2 points -
[Module] Generic Domains
turner2f reacted to Blesta Addons for a topic
Generic Domain Module For Blesta we have released our first release of Generic Domain Module, the module is support almost all Extension list in the IANA website and use Whois Library that didn't require any Settings or Subscription; The client/ Admins can register or transfer domain . As the module isn't tie to any registrar, so no tabs for clients, and registration outside blesta should be done manually. this Module require a the Pro (Silver) subscription . Order Link1 point -
Hello blestars We want you to tell us, what do you need for blesta? to be able to start coding1 point
-
Notification Center
activa reacted to Blesta Addons for a topic
i can confirm officially that we are going to make this plugin for our internal use and make it available to the community . the first release will include Slack, Web Notification..... then we will include : HipChat, and maybe Onsignal or push. for Slack is better to work with webhooks or via API Token ? Any Ideas or Suggestion We are open .1 point -
Already exists, https://docs.blesta.com/display/dev/Reseller+Modules#ResellerModules-LicenseModuleforWHMCS And welcome back @PauloV! I hope you are doing well!1 point
-
We have finally opened our roadmap to the public: https://atlantis.plutio.com/p/blestacms This will show the versions with have been done and also the backlog of public tasks we have planned.1 point
-
[Module] Logicboxes Reloaded
Joseph H reacted to Blesta Addons for a topic
Version Released now .the first registrar module of blesta that support Dns Management, Domain Forwarding, RAA Verification, RFT Verification. and IDN Supported as well (beta test),1 point -
Perfect, thanks so much. really appreciate it1 point
-
There will be a solution added to 1.2.6 for this and for blank categories1 point
-
PayPal Payments Standard issues
activa reacted to firefoxinc for a question
I guessed that was the issue just could not find the correct file to point it to (kind of feel dumb now) Thank you1 point -
1 point
-
I had it on our docs website but it will be in the new readme. Maybe @GosuHost can help us add it in 1.2.6 as a setting? Open: plugins/blesta_cms/views/default/main_category.pdt Find: foreach ($entries as $entry) { Replace with: foreach (array_reverse($entries) as $entry) {1 point
-
Blog Posts > List new first1 point
-
WHMCS to Blesta
katycomputer reacted to bw1 for a question
I agree with katycomputer. Tyson - it seems like the Blesta team is just trying to blow this off like it's normal. I get it that many direct merchant accounts operate like this and require more for PCI compliance but I think one of the reasons so many people go with Stripe is so that isn't worry. It should be very obvious to the devs when they have to instruct users to go change the "not reccomended" setting in their Stripe account in order for this to work. I think changing the gateway to comply should be pretty straight forward. I realize I'm not a dev but knowing about this for a long time it should have been done by now. Especially with the warning starting in October from Stripe. @katycomputer I think this is exactly what will happen. If Stripe figures out you are using the gateway this way, they will eventually require the FULL PCI documentation and if not completed will stop processing transactions @Tyson - Any thoughts on how soon this could get fixed??1 point -
2ND Suggestion: https://www.blesta.com/forums/index.php?/topic/10945-is-there-a-way-to-only-send-ticket-response-to-the-contact-that-submitted-it/ AND... https://www.blesta.com/forums/index.php?/topic/10737-reply-support-tickets-to-a-sub-account-email-get-sent-to-the-primarys-email-too/&do=findComment&comment=568481 point
-
Welcome back Paulo V. One significant suggestion would be for a WYSIWYG to be integrated into the Support Ticket like... - Tiny MCE - CKEditor I believe Blesta already has CKEditor built in. Would be great if it could be used for the Support Manager Pro plugin1 point
-
Allow Modules To Add Cron Tasks
Abdy reacted to Blesta Addons for a topic
for a long time developing and discovering the new v3. i have found that allowing modules to add it own crontask like plugins , will be a great feature , as the addition for this is a easy task and not a heavy coding . the modules is already handle the install() and uninstall() function inside module . and we can easly add and remode tasks . public function install() { Loader::loadModels($this, array("CronTasks")); $task = array( 'key' => "my_task", // a string used to identify this cron task (see MyPluginPlugin::cron()) 'plugin_dir' => "my_plugin", // the plugin directory of this plugin 'name' => "My Plugin Task", // the name of this cron task 'description' => "This cron tasks does stuff", // the description of this task 'type' => "time" // "time" = once per day at a defined time, "interval" = every few minutes or hours ); $task_id = $this->CronTasks->add($task); if (!$task_id) { $cron_task = $this->CronTasks->getByKey($task['key'], $task['module_dir']); if ($cron_task) $task_id = $cron_task->id; } if ($task_id) { $task_vars = array('enabled' => $task['enabled']); if ($task['type'] == "interval") $task_vars['interval'] = $task['type_value']; else $task_vars['time'] = $task['type_value']; $this->CronTasks->addTaskRun($task_id, $task_vars); } } until here there are no probleme . the problem is comming from cron_task.php model , because it will not exucute any cron that is not belong to plugin enabled . if blesta staff can make some change the cron task structure , we can arrive to a working solution to achieve this task . why modules need crontasks ? some modules for registrar need tgis to check the transfer status . some modules for hosting need this to sync data between blesta and server . some modules can be mainly need to get data from api to parse some info into database , like statistiques and reports . ....... also i know is possible to add a separate plugin for achieve this scenario , but i prefer maintain and code in one place , rather than make two reposity to achieve 1 more task .1 point -
Hello I will make from scratch the new update and i like to add two important features 1- Import from Support Manager 2- Revert to Support Manager Maybe I will add more option Sure, if you could send me the modifications I can add on this update1 point
-
We want you! :)
PauloV reacted to MineHarvest66 for a topic
Cpanel module that allowed additional automated options such as extra disk space and bandwidth would be nice. With WHM tokens I wonder if this can be a "thing" now?1 point -
Thanks for the notice, I've created CORE-2596 to address this at some point.1 point
-
Notification Center
activa reacted to Blesta Addons for a topic
W***S has this option in core from 7.4, they provide support to Slack, HipChat, emails ... My team has suggest us to make plugin to handle this, but the time is a hope we can't get more .1 point -
Logicboxes considerate error response as success response
Blesta Addons reacted to activa for a topic
This caused me also to pay a restore fee for a domain, that time i have not understand what happen, but now is clear the issue .1 point -
If the check is returned, you can edit the transaction and change the status. This is the case with many forms of payment, the customer makes it but it's later returned, charged back, fought, etc. It's good to record the payment when it has been received, and update if the status changes. Now, if you are activating something that you can't easily undo, or shipping something to the customer, then you may want to hold recording the payment in Blesta. Eventually crypto currency will solve all of this1 point
-
Actually I wasn't talking about your Plugin. I was referring to the OP code. I will say I did notice you versioned your Resend Welcome Email. So I singed up for your Basic service to get it just in the off chance its was compatible with PHP 7. It was!!! Thanks. You might add PHP compatibility to your site under the requirement or specs.1 point
-
Allow Modules To Add Cron Tasks
Abdy reacted to Blesta Addons for a topic
This is what i have in my mind, i have made a shema for a plugin that i have called "cron hoster", the idea is a bit simple, the plugin has it own table that store the cron data like the core one, and it intern cron run every 5 min, the only different is changing the plugin_dir by the module_dir , then the module can add cron via install() function , then in the module should have a function called cron(), this function will be executed by the plugin cron . this function will use it inf registrar modules to check transfers and domains expiration sync, export or import data to a remote server via API . this task will save us a lot of time and hard coding and this should be out with the new domain management and pricing .1 point -
Domain Manager - We need your feedback on domains
Blesta Addons reacted to Daniel B for a topic
ah, gotcha. Yeah, in that case I'd like that functionality as well :).1 point