-
Posts
4,868 -
Joined
-
Last visited
-
Days Won
390
Everything posted by Blesta Addons
-
You can't inject a new tab view to Tools>Logs via plugin , you need to add it manually and hack the core files for this . you only safe solution is to make a plugin that inject a new link in Tools and add permission class to control who can access the link from your staff group .
-
technically is not matter of you put the SMS email in the cpanel. when you put it in cpanel you will recieve a sms regarding cpanel issue not blesta .
-
"Support Manager Pro" plugin gives a PHP Error
Blesta Addons replied to turner2f's question in Support
ok not sure , but try this simple fix open the file plugins/support_managerpro/support_managerpro_controller.php , the move the second line require_once dirname(__FILE__) . DS . "support_managerpro_kb_controller.php"; to the line before the last ?> so the last of the file should be like require_once dirname(__FILE__) . DS . "support_managerpro_kb_controller.php"; ?> -
Why they are saved with id 0;?
-
"Support Manager Pro" plugin gives a PHP Error
Blesta Addons replied to turner2f's question in Support
You have installed the plugin , so you didnt see any upgrade button until a new version is released. Have Xcache activated in your php ? Wich blesta V you use? -
"Support Manager Pro" plugin gives a PHP Error
Blesta Addons replied to turner2f's question in Support
have you eroor_reporting set to -1 ? try disbaling it . -
How to Limit File Size and Restrict File types from Upload
Blesta Addons replied to turner2f's question in Support
First where you want to use it ? you need to add this code in your plugin/module that your are coding it . -
if you search OVH module for server , We have the module already done, the module is working with OVH/SoyouStart/kimsufi servers , it will be released soon , is paid . now we are working for the OVH vps module that is not yet completed .
-
Can Support Tickets be deleted within Blesta ?
Blesta Addons replied to turner2f's question in Support
you can download it from the first post , the link is here http://on.gweb.pt/Public_Open_Blesta/support_managerpro.zip note this is a another plugin that will not work with the core support plugin . -
How to Limit File Size and Restrict File types from Upload
Blesta Addons replied to turner2f's question in Support
if you want to use the UPLOAD class you can do like this a sample how to like this : // Load the pload components Loader::loadComponents($this, ["Upload"]); // Set the alloweded file types $this->Upload->setAllowedMimeTypes(['gif','png','pdf']); // Set the maximum file size $this->Upload->setMaxFileSize(2048); // size in bytes $this->Upload->setFiles($files, false); // the files list to upload $this->Upload->setUploadPath("/home/user/upload_directory/"); // the upload path directory // Will not overwrite existing file // And we will support the uploaded files are in $files['data'] $this->Upload->writeFile("data", false); // check if the upload was successfully if (!($errors = $this->Upload->errors())) { $this->Input->setErrors($errors); return; } -
[Plugin] Admin Tools (More Options For Staff)
Blesta Addons replied to Blesta Addons's topic in Contribute
look at tools menu ; you will see a new sub-link link called admin tools -
regarding your question,it need some code skill to do it, a it need to change the directadmin module and add pdt view file and languages if needed .
-
is better to create new post for new questions rather than changing the first post !!!!
-
even if it won't work .... i have installed it manually !
-
addons in order form, enable/disable
Blesta Addons replied to Blesta Addons's topic in Feature Requests
at now what i prefer is a checkboxs like : [ ] Allow Order In order Form [ ] Allow Adding For Activated Service that we can have the full choice to select 1 action of both action . also i have a complicated case, that is not priority now, as we need to make this option to a package if is inside addon group . -
Disable manage and tabs for all services != active
Blesta Addons replied to Blesta Addons's topic in Feature Requests
is possible to see a fix for the final v4 ? -
We need option to select to wich packages the actual package can be upgraded or downgraded . So many service allow only upgrades and no downgrade is allowded . I think already requested. But i cant get the post .
-
It would be nice to have option to make addons available in Order form and/or Client area . As some addons can be ordered with the main package, and others should be ordered only when the package is active . A checkbox to check where the addon should be avaible will be usefull in so many cases . The same for config options .
-
Why not use blestacms or the core cms instead of wordpress ? You will get all centralized and 1 admin for site and billing
-
i think is better to make more info available to the process service changes info , we can't know wish services is concerned , like the fallowing output : Attempting to process service changes. Service Change #13 was not processed because its service is inactive. Service Change #27 was not processed because its service is inactive. Service Change #31 was not processed because its service is inactive. The process service changes task has completed. is better to include service_id to the info .
-
[Module] Internet.bs Domain Registrar Module - R/c 1.0.4
Blesta Addons replied to PauloV's topic in The Marketplace
Congratulation Sir ... is a good news that anyone can hear . -
[Module] Internet.bs Domain Registrar Module - R/c 1.0.4
Blesta Addons replied to PauloV's topic in The Marketplace
Normally yes . And i think so . -
Help with pdt styling for license verification portal
Blesta Addons replied to timnboys's topic in General
Have you used the Form class in building the form ?