This has been brought up a few times before, but it is not a bug. The SolusVM API does not support fetching the friendly name of the templates. I'd suggest asking them to update their API to support it.
They are a very strong team, and they win without any doubt against Portugal, but of course, I hope Portugal wins the next 2 games (and Germany looses the next games eheh)
Im not a football fanatic, but I like to see games wen my Country is in it , but if they loose, well, life goes on
i am not using this, not yet, so i will use this opportunity to bump the thread and commend the effort PauloV puts in Blesta and shares it with other Blestars(along with other fellas like Mike from LicenseCart), this is just stunning ....this kind of community is the real strength of Blesta.....because of things like these, i always want to check out what is going on in Blesta world
Having created a plugin using the developer documentation (http://docs.blesta.com/display/dev/Plugins) that creates new pages in the client area, I notice that I am able to browse those pages without being logged in as a client. How do I make them protected by the auth component?
Thanks for your help.
Hello guys I'm a bit confused with this, it only happens on InterWorx was working fine on cPanel just wondering if I need to install anything.
On licensecart.com we use the new API the guys did for the community to make our lifes easier however I get this in the error log:
[Thu Apr 03 15:22:07 2014] [error] [client MYIP] PHP Warning: Invalid argument supplied for foreach() in /chroot/home/username/licensecart.com/html/blesta.php on line 48
The code on that line is important:
foreach ($package->pricing as $price) {
// Get monthly term
if ($price->period == $period && $price->term == $term) {
return $price;
}
}
It's part of this:
function getPackagePrice($api, $package_id, $period, $term) {
$package = $api->get("packages", "get", array('package_id' => $package_id))->response();
$package_price = null;
foreach ($package->pricing as $price) {
// Get monthly term
if ($price->period == $period && $price->term == $term) {
return $price;
}
}
return false;
}
And I have:
InterWorx 5.0.14 (Beta Tier)
Blesta 3.1.3
MySQL 5.5.36
PHP 5.4.26
Apache 2.2.26
Thanks guys.