Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/24/2017 in all areas

  1. you will not recieve any error , the probleme is only you are not set the correct view dir . what you should do is the fallowing : 1 - create a file called blesta_cms_controller.php in the main root plugin directory with the fallowing content <?php /** * Blesta Cms Plugin * */ class BlestaCmsController extends AppController { /** * Setup */ public function preAction() { $this->structure->setDefaultView(APPDIR); parent::preAction(); $this->company_id = Configure::get("Blesta.company_id"); // Override default view directory $this->view->view = "default"; $this->orig_structure_view = $this->structure->view; $this->structure->view = "default"; } } in your admin_page.php change the code to fallowing : <?php class AdminPages extends BlestaCmsController { public function preAction() { // Parent pre-action parent::preAction(); // Require login $this->requireLogin(); // Load language Language::loadLang('blesta_cms', null, PLUGINDIR.'blesta_cms'.DS.'language'.DS); // Restore structure view location of the admin portal $this->structure->setDefaultView(APPDIR); $this->structure->setView(null, $this->orig_structure_view); } public function index() { //die("admin page"); } }
    2 points
  2. Paul

    Module gogetssl

    It works for 3.6.2 without issue? Interesting. I've created CORE-2362 so we can take a look.
    1 point
  3. Michael

    Module gogetssl

    so something to do with V4 @Paul mate.
    1 point
  4. Nelsa

    Module gogetssl

    Today I tested GGSSL module on B4(non production version of my website I upgrade few days ago) and I got same result,..I try to debug it but three is no response at all I coud catch,also I couldn't find any trace in log about request or anything,like never happen.....than I tryed B3.6.2 wich is same website just non upgraded production website..and module work without issue.
    1 point
  5. 1 point
  6. i have a customer from Spain need the same goal .some state in Spain are tax exempt . unfortunately we can't do this without core files modification . a events in the future can allow us make a plugin for this .
    1 point
  7. my toolbox plugin is here for that case
    1 point
×
×
  • Create New...