Jump to content

Abdy

Blesta Developers
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Abdy

  1. Very good integration, I really liked the idea. I think I'll do the same in my Blesta installation.
  2. I just tried in my Blesta installation and got the same (weird) result. I think the solution you're proposing is pretty good, I did some testing even using Punnycode domains and it seems to work perfectly.
  3. https://invisioncommunity.com/contact-us
  4. You can disable the cron job from your control panel or via SSH if you don't have a control panel of your old installation and put Blesta in maintenance mode.
  5. Thanks, I'm going to take that into consideration.
  6. The new version will include confirmation popovers on all irreversible action buttons, such as the "Delete" button. There is not yet available.
  7. In the statistics tab, the new version of cPanel Extended will include graphics of the site traffic (Bandwidth last and current month) and domain hits, updated in real time.
  8. This is one of the small changes (but useful) that will be included in the next version of cPanel Extended.
  9. I know, I know I'm working at full speed on the module, however some details are missing. But I will send tomorrow an email to the contributors with more information an access to the second beta, So they can see the current progress.
  10. Abdy

    CentovaCast

    I added the option to select the AutoDJ type and AutoDJ capabilities. https://github.com/blesta/module-centovacast/pull/2
  11. Yes, but will be accessible from /forum/index/1/ If you want to delete the index part of the url you will need to make a route like this Router::route("^forum/(.+)", "/my_plugin/forum/index/$1"); You can take as an example the main controller of a previous version of BlestaCMS. It works in a similar way.
  12. You can also print the $this->get variable to check the content with print_r($this->get); exit;
  13. Assuming you have a controller named "Forum" and a "page" function. http://awesomecompany.com/client/plugin/my_plugin/forum/page/1/ class Forum extends MyPluginController { public function index() { // Main view } public function page() { if (!empty($this->get[0]) && is_numeric($this->get[0])) { $page_id = $this->get[0]; } else { $page_id = 1; } // Load forum model Loader::loadModels($this, ['MyPlugin.ForumsFunctions']); // Get forum page $forum = $this->ForumsFunctions->getForum($page_id); } }
  14. I guess that $this->get can do the job. For example, for http://awesomecompany.com/client/plugin/my_plugin/page/12/ $page will be 12 if (!empty($this->get[0]) && is_numeric($this->get[0])) { $page = $this->get[0]; } else { $page = 1; } Then you can get the page from your model Loader::loadModels($this, ['MyPlugin.MyModel']); $page = $this->MyModel->getPage($page);
  15. I usually use print_r to see the content of a variable, is more human-friendly. public function validate(array $get, array $post) { $cgOrder = $this->coingateCallback($this->ifSet($post['id'])); $return_status = false; $status = null; // Debug print_r($cgOrder); exit;
  16. @thehoster4you If you can provide me a test server of CentovaCast, I can help you to modify the module to add AutoDJ.
  17. Abdy

    CentovaCast

    You should be able to add the existing services from your CentovaCast server to Blesta, adding a new service but unchecking the "Use Module" checkbox.
  18. The module has not been abandoned and is still under development, but it is a large module and is being developed from 0. In February it will definitely be released to the public. I initially miscalculated the timing of the development and I apologize for that. However, if someone wishes, as indicated in the campaign you can request a refund. You can send me a PM to request a refund.
  19. I believe that this proposal is a good option, as the company will be able to choose what best suits their needs.
×
×
  • Create New...