-
Posts
4,868 -
Joined
-
Last visited
-
Days Won
390
Everything posted by Blesta Addons
-
blesta is installed in the same server you want to connect ? have you any firewall in the server ? is there any logged response in the log under tools/logs
-
Minphp 1 is not working with the actual files in github ... you need to make a build with composer and edit some files manually . I suggest using the old minphp as is working now . I have a complete working build of minphp 1 , i need just time to search it and share it with others .
-
yes is possible . you can use the event "Invoice.Add" in your plugin code to get what you want .
-
why you want v2.5 instead of v3 or v4 ?
-
[Plugin] Css Javascript Toolbox (Magic Box)
Blesta Addons replied to Blesta Addons's topic in The Marketplace
yes it should read/write permission .- 49 replies
-
- javascript
- magic box
- (and 5 more)
-
100% .... i can't live without it now .
-
[Plugin] Css Javascript Toolbox (Magic Box)
Blesta Addons replied to Blesta Addons's topic in The Marketplace
the directory should be created auto when the plugin install . not created mean that the webserver has not the permission to create the directory . try adding it manually /web/blesta/plugins/css_javascript_toolbox/includes/1/ note the last number is the company_id in blesta , in most case is 1- 49 replies
-
- javascript
- magic box
- (and 5 more)
-
Tracy .
-
[Plugin] Css Javascript Toolbox (Magic Box)
Blesta Addons replied to Blesta Addons's topic in The Marketplace
have the plugin show a successfully installation ? then the code successfully added ? when you add a custom js , you should go to source code of your page to see if is well added to the page . you have any files inside the includes directory ?- 49 replies
-
- javascript
- magic box
- (and 5 more)
-
i have found the error , it was the php debugger . the signature is not equal to the verification because the response has a amore data for debugging string(44) "r6VDlsU0Q9MMQglGOSMIfXJ3gIKb7GKCcv9focIsI2Y=" string(3659) "r6VDlsU0Q9MMQglGOSMIfXJ3gIKb7GKCcv9focIsI2Y= 148.9 ms × " so i can confirm after disabling the php debugger in my test server i was able to use the license manager even if the older version . Finnaly when we need to make a call request we need to disable any debugging system in the php as it return extra data in the response .
-
this is fro cpanel .... but exist other services that the services info can be reached immediately .
-
How Do We Whitelist an Email Address to Avoid "Support Request Failed" ?
Blesta Addons replied to turner2f's question in Support
normally the email used in support should not be used in other website that need registration or verification , normally create a new email like admin@...... and use it in other website . it has no sense to make support@... for piping and work with it in other websites .- 6 replies
-
- whitelist
- support request failed
-
(and 1 more)
Tagged with:
-
The post above is a feature request to solve your problem . You can vote for it to make it priority task .
-
put a note under domain name registration case
Blesta Addons replied to elbadr's question in Pre-Sales Questions
If i am not wrong cpanel module only allow client to choose domain , username and password can be set in admin side . The case here i think can be related to browser. The placeholder maybe not working . -
the validation pass when you post data, so after it return a set of error messages that is show them . so it's not specify which input is failed . what you can do as a quick and smart solution , is integrate the jquery validator, at least stop and show error in required empty fields
-
put a note under domain name registration case
Blesta Addons replied to elbadr's question in Pre-Sales Questions
are you sur using cpanel module ? -
put a note under domain name registration case
Blesta Addons replied to elbadr's question in Pre-Sales Questions
open the cpanel module file components/modules/cpanel/cpanel.php search public function getClientAddFields($package, $vars=null) { Loader::loadHelpers($this, array("Html")); $fields = new ModuleFields(); // Create domain label $domain = $fields->label(Language::_("Cpanel.service_field.domain", true), "cpanel_domain"); // Create domain field and attach to domain label $domain->attach($fields->fieldText("cpanel_domain", $this->Html->ifSet($vars->cpanel_domain, $this->Html->ifSet($vars->domain)), array('id'=>"cpanel_domain"))); // Set the label as a field $fields->setField($domain); return $fields; } replace by public function getClientAddFields($package, $vars=null) { Loader::loadHelpers($this, array("Html")); $fields = new ModuleFields(); // Create domain label $domain = $fields->label(Language::_("Cpanel.service_field.domain", true), "cpanel_domain"); // Create domain field and attach to domain label $domain->attach($fields->fieldText("cpanel_domain", $this->Html->ifSet($vars->cpanel_domain, $this->Html->ifSet($vars->domain)), array('id'=>"cpanel_domain",'placeholder'=>"Please choose .com / .net domain name"))); // Set the label as a field $fields->setField($domain); return $fields; } -
you want something similar to jquery validator . that need some huge modification in the core and the template files.
-
50% Off in SolusVM Extended and LogicBoxes Extended - Black Friday
Blesta Addons replied to Abdy's topic in The Marketplace
i think that is the right choice . but what i prefer more is to make a custom CMS than create another site . we have tested the two choices , and finnaly we have opted to centralise all thing , and created a custom CMS to feet our need and all our site is based now over blesta . -
Is only limited to client pages and maybe also for logged in client only . but if blesta make the theme set via configure , then it will be available for all .
-
put a note under domain name registration case
Blesta Addons replied to elbadr's question in Pre-Sales Questions
you need to edit the module , which module you use ? -
Hello try this code . Open app/client_controller.php under parent::preAction(); add the fallowing code /*===================== Theme Switcher ========= */ if (!isset($this->Session)) { Loader::loadComponents($this, ["Session"]); } if (isset($_GET['switcher']) ) { $this->Session->write("blesta_theme", $_GET['switcher']); } if ($this->Session->read('blesta_theme')) { $theme = $this->Session->read('blesta_theme'); // Set the THEME $this->setDefaultView("client/". $theme); } /* =================== Theme Switcher ========= */
-
i have forget this plugin with this plugin you can set any HTML css with your blesta without touching any core file .