Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/29/2015 in all areas

  1. Hello All . This Module has more than 2000 lines of code . IF YOU WANT TO THANK ME WITH A LITTE DONATION , you can do it with PAYPAL DONATION from here LAST UPDATE : 08-02-2015 , Version 1.7.0 we bring free content , this Module for Proxmox in blesta , rewrited the full code from scratch , i have used as API the pve2-api-php-client . NOTE : THIS MODULE IS NOT YET FINISHED , DON'T USE IT IN A LIVE PRODUCTION ? NOW IT ONLY SUPPORT OPENVZ . ANY BUG, feedback post it here , i more testers , sowe can fix/improuve howthe module work . with the Module , you can : Admin Side - Add VM . - Reboot/Start/Stop/Shutdown - Add/Edit ip_adress , hostname , serachdomain , nameservers . - View VM Config/Settings - View Graphs - Views Tasks - suspend/unsespend/destory VM . - add swap limit in package (for openvz) - add CPU limit in package (for openvz) - add QOUTA UGID limit in package (for openvz) - add Qouta Grace period in package (for openvz) - add start at boot (true/false) in package (for openvz) - auto fetch the iso(for kvm) and template (for openvz). - edit the vmid IN ADMIN SIDE (locally) . Client Side - Order VM , with choosing os template and hostname . - Reboot/Start/Stop/Shutdown . - Edit hostname . - View Graphs (if enabled from package) - Views Tasks (if enabled from package) In gneral i have fixed all this error of the core module . - Add/Remove/Edit servers. - remove default tempalte from server creation , and make it under package . - auto start vm at the end fo creation/activation service. - option to choose template in add service for admin section . - option to edit the vmid (locally) . - more stats (uptime/cpu usage/prossess count/load average) - allow admins/staff add more ip for vm . TODO LIST : - add Qemu Section (kvm) - better implementation of re-isntall vm , as the current now freeze sometimes . - allow change root password for vm (admins/staff) without using the console . (for openvz) - until now is impossible - - add option to edit UBC for VM (for openvz) (admin tab) Some screenshoot : add server Add Package Admin Vm Config Admin Vm network Client Actions tab View Graph/Statistique View Tasks of Vm as always the installtion steps is : 1 - download the file https://github.com/Blesta-Addons/proxmox-module . 2 - upload the proxmoxv2 folder inside componenet/modules directory . 3 - goto modules , and install Proxmox Reloaded . 4 - enjoy the free Module. This Mosdule has more than 2000 of line code . IF YOU WANT TO THANK ME WITH A LITTE DONATION , you can do it with PAYPAL DONATION from here NOTE : THIS MODULE IS NOT YET FINISHED , DON'T USE IT IN A LIVE PRODUCTION ? NOW IT ONLY SUPPORT OPENVZ . Best regards
    3 points
  2. Cody

    Release 3.4.1

    Version 3.4.1 is now available. You can download it in the Client Area. This is a patch release that corrects issues with 3.4.0. Patching Blesta See Patching Blesta in the User Manual for instructions. Release Notes See Blesta Core - Version 3.4.1. See all Change Logs.
    2 points
  3. When will Blesta support the new 2Checkout API? The 2Checkout API allows credit card to be processed directly without needing to redirect users to a separate page. It's much more flexible and makes 2Checkout work like a real merchant account. It also means that Blesta could take care of things like recurring billing directly, offering again much more flexibility.
    1 point
  4. I did try searching for it but couldnt find anything. Whats the inclusive tax calculation? I fix the problem by modifying the default_invoice_pdf.php file making the following change to calculate the cost field instead of using the total from the line item. Problem is that if the system is updated i think this will get overriden (not 100% sure about that). public function drawInvoice() { $options = $this->line_options; $options['y_pos'] = max($this->header_end_y, $this->GetY()); // Build line items $lines = array(); for ($i=0; $i<count($this->invoice->line_items); $i++) { $lines[] = array( 'name'=>$this->invoice->line_items[$i]->description, 'qty'=>$this->CurrencyFormat->truncateDecimal($this->invoice->line_items[$i]->qty, 0), 'unit_price'=>$this->CurrencyFormat->format($this->invoice->line_items[$i]->amount, $this->invoice->currency, self::$standard_num_options), 'price'=>$this->CurrencyFormat->format(($this->invoice->line_items[$i]->amount*$this->invoice->line_items[$i]->qty), $this->invoice->currency, self::$standard_num_options), /**'price'=>$this->CurrencyFormat->format($this->invoice->line_items[$i]->total, $this->invoice->currency, self::$standard_num_options),**/ );
    1 point
  5. Oh, I thought FiRaRi was referring to the format of the date/timestamp (i.e, format: "d M, Y g:i:s A" rather than "M j, Y g:i A") for reply dates, which can be updated in the config file from the Support Manager. I see now that you have a settings page in the Pro version where it can be updated from the admin interface. I don't think you're annoying. Quite the contrary, actually.
    1 point
  6. The problem is not in config file because I have made an option on Support Manager Pro to alredy change settings on Plugin Manage, the problem is por exemple In Portuguese the name is "Janeiro" and its displying "January" in english becase the server as php.ini local time in english, and is not getting the default language. This is a "Multi Language" problem also like many outher problems alredy reported ( not bugs, but a problem ) Multi Language is MultiLanguage, and not "Half Multi Language" @Paul, @Tyson, @Cody dont take me rong and dont think im getting to "anoying" on getting your attention for some details
    1 point
  7. PauloV

    Mass Export Of Invoices

    +1 for this feature. Its not very hard, like naja7host said We will also need for our accounting and a few extras like: 1º- PDF Final Invoice Exporting (this is in this forum) 2º- SAF-T (Standard Audit File for Tax) - its a XML file standard for exporting all Clients Data + Services Data + Invoices Data in one big XML file for all EU countries for legal accounting More info in here: http://en.wikipedia.org/wiki/SAF-T http://ec.europa.eu/taxation_customs/resources/documents/taxation/tax_fraud_evasion/com_2012_722_en.pdf We are using a report that we build for our own WHMCS and we will port to blesta and release here wen time comes to finally go with blesta live
    1 point
  8. @ModulesBakery , i have reported your tread as BUG . i have found a solution . for those who want patch thier system , open app/controllers/client_services.php change at line 943 // Get tabs $client_tabs = $module->getClientTabs($package); with // Get tabs if (!empty($service->date_suspended)) $client_tabs = array() ; else $client_tabs = $module->getClientTabs($package); EDIT : and to prevent client from access to tabs with direct url change the line 123 $tab_view = $module->{$method}($package, $service, $this->get, $this->post, $this->files); to if (empty($service->date_suspended)) $tab_view = $module->{$method}($package, $service, $this->get, $this->post, $this->files); i can sleep now
    1 point
×
×
  • Create New...