Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/26/2014 in all areas

  1. we think that template should be accept custom language file . for example , some word are not loaded for all the system , or the themers want to include they own phrases in templates , so is better to allow language files for templete . with that the template it will be multilinguage and the author will just add language pack to add new language . maybe a direcotry language is needed here .
    1 point
  2. Blesta Addons

    Urgent Admin Page Blank

    SAFE_MODE probleme do you have root access ? if yes you have two solution : 1 - disable SAFE_MODE in php.ini 2 - run the following command from ssh chwon -R username:username /home/username/public_html if you have cpanel and don't want to disable safe_mode then run the fallowing command /scripts/chownpublichtmls best regards
    1 point
  3. this is probleme of mal installed apache or missconfugured
    1 point
  4. Tyson

    Urgent Admin Page Blank

    What has changed since you last visited that page? You should check your error logs, or enable error_reporting in Blesta to see what error is causing the issue.
    1 point
  5. Tyson

    [Logicboxes] Ftao: Tyson :d

    Unfortunately, you couldn't do it without negating the changes added in CORE-611 and CORE-1262 which were to automatically set the order-id on add/edit, respectively. You could, at least temporarily, update the module to not attempt to fetch an order-id. I haven't tested this, but you could try to update /components/modules/logicboxes/logicboxes.php (around line 318) from elseif ($status == "active") { if ($package->meta->type == "domain") { $api->loadCommand("logicboxes_domains"); $domains = new LogicboxesDomains($api); $order = array_intersect_key($vars, array('domain-name' => "")); $response = $domains->orderid($order); $this->processResponse($api, $response); if ($this->Input->errors()) return; $order_id = null; if ($response->response()) $order_id = $response->response(); return array( array('key' => "domain-name", 'value' => $vars['domain-name'], 'encrypted' => 0), array('key' => "order-id", 'value' => $order_id, 'encrypted' => 0) ); } } to /* elseif ($status == "active") { if ($package->meta->type == "domain") { $api->loadCommand("logicboxes_domains"); $domains = new LogicboxesDomains($api); $order = array_intersect_key($vars, array('domain-name' => "")); $response = $domains->orderid($order); $this->processResponse($api, $response); if ($this->Input->errors()) return; $order_id = null; if ($response->response()) $order_id = $response->response(); return array( array('key' => "domain-name", 'value' => $vars['domain-name'], 'encrypted' => 0), array('key' => "order-id", 'value' => $order_id, 'encrypted' => 0) ); } } */
    1 point
×
×
  • Create New...