Leaderboard
Popular Content
Showing content with the highest reputation on 12/30/2014 in all areas
-
Virtualmin Module (Test Stages)
Joseph H and one other reacted to LukesUbuntu for a topic
Hi guys i have a virtualmin module that ive created and its in final stages for testing i was wondering if there would be any keen virtualmin tester's out there or if you have a virtualmin sandbox i could use for more remote testing. if so could you send me a PM and i will send plugin for testing in a couple of days. here is a couple of screenshots nothing fancy... (70% finished) Module Add http://prntscr.com/5new17 Package Add http://prntscr.com/5nete4 Client Panel http://prntscr.com/5qnjzt Client Panel - Mail Accounts http://prntscr.com/5ntek1 http://prntscr.com/5nk5be Client Panel - Databases http://prntscr.com/5rtrhz2 points -
Are you having trouble with POP or IMAP also? If pipe.php is getting the email via stdin, as with any email piping, it should work. Try what I suggested with sending the output of an email in a text file to pipe.php. If that works, you've narrowed down the issue to the mail server. If worse comes to worse, and you're willing to give me access.. I'm happy to dig into it and see what I can find out. Edit, also enable error reporting in config/blesta.php. piping a text file via a shell to pipe.php, or a bounce email may then have more information about the error.2 points
-
Yipikaye A great way to start the new year 2015 So many work on January lol (update my plugins/modules/mods, release new ones, and hoping to use in production finally) it will be a good year for Blesta To all Blesta Staff (Paul/Cody/Tyson), have an Happy New Year 2015 To all Blestars and "Blestars wanna be", have an Happy New Year 20152 points
-
[Plugin] Download Manager - Allow Remote Links
LukesUbuntu reacted to Keanu for a topic
Hi there, I was trying to add a few things to the download manager but hosted off-server, It would be great if we could allow remote links inside of the download manager rather than having to host them on the server. Thanks! -Josh1 point -
Email Piping With Directadmin
LukesUbuntu reacted to Paul for a question
755 should work, that's executable for all. You could try chmod +x pipe.php to be certain, but that's probably not the issue. Where does DA store the forwarder file? You've probably seen this page http://docs.blesta.com/display/user/Support+Manager#SupportManager-EmailPiping On a fresh CentOS/RHEL install, it would be in /etc/aliases. This page from the docs gives an example of what to use. Also, you may need to create the symlinks as described in /etc/smrsh to php and pipe.php.1 point -
Version 3.4.0 is now available. You can download it in the Client Area. Installing Blesta See Installing Blesta in the User Manual for instructions. Upgrading Blesta See Upgrading Blesta in the User Manual for instructions. Migrating to Blesta See Migrating to Blesta in the User Manual for instructions. Overview Client Contact Logins Two Factor Authentication for Clients and Contacts Knowledgebase via the Support Manager plugin Tons more... PHP 5.5+ Users Included in this release is a /hotfix-php5.5/ directory. Please use this directory to overwrite the default /blesta/app/app_controller.php, /blesta/app/app_model.php, and /blesta/app/models/license.php files. Release Notes See Blesta Core - Version 3.4.0-b1. See Blesta Core - Version 3.4.0-b2. See Blesta Core - Version 3.4.0. For older releases see all Change Logs.1 point
-
1 point
-
Since you are using Blesta Future it's hard to say as I'm stuck in 2014 at the moment. Good to know there will be a 5.4, I hope it's awesome. In all seriousness, you need to find the module row. In MySQL check the "modules" table for your module. Note the "id". Search the "modules_row" table where modules.id=modules_row.module_id to find the module_row.id for all module_rows related to that module. Then, for each module_rows.id that matches that module, search the "services" table, services.module_row_id. That should help you identify which services are using that module. If you can remove those services, then you should be able to remove the module. I hope that helps!1 point
-
The license is unable to validate because you changed its location. You should login to your Blesta account with us to reissue your license, or contact the reseller you bought the license from to ask them to reissue the license for you.1 point
-
Domain Management is a big priority, it's also a big feature. The new domain management is large enough to basically require its own full release, and then some. Since we have quite a few high priority items, and since some of them are much quicker to implement, we are trying to knock those out of the way so we can put our full efforts into domains.1 point
-
totally agree with Paulov domain management refraction should be priority just like the other features of blesta in my opinion i dont mean domain management should be in the top of the list of course not, i believe in balance, so i think blesta should be balance and work good features or improve some at the same time including domain management. pd: im webhoster but currently using whm... yet1 point
-
Should be a feature request these forums will be hidden soon and 3.4 is out of beta mate.1 point
-
Never mind! I sorted it out. Sorry!1 point
-
[Blesta Bookmarks Plugin] - Comming Really Soon :p
Blesta Addons reacted to PauloV for a topic
Hoping to finish the plugin in January 20151 point -
Awesome!
Darin reacted to domaingood for a topic
I want to just say about mass mailer.We can use other plugins and When WxxxS start mass mailing after 3+ year.But Domain management from Beginning. As Web Hosting Billing you need 1st Domain Name Management then Web Hosting VPS Server Support.But 1st thing is Domain.because customer buy domain 1st then Web Hosting. Thank you1 point -
Directadmin Server Info Not Propagating In Create Package Screen
Michael reacted to hostingDifferent-Scott for a question
Server IP got blocked. Whew! I hate upgrading! LOL1 point -
Yeah, if you have ACL perms to it, it should show up under Support > Knowledge Base1 point
-
Want Recurring Invoice, But Not Related To A Module
LukesUbuntu reacted to Paul for a question
You can create a recurring invoice by creating a manual invoice and selecting to make it recurring. If you want a service that renews and customers can order, then you can use the Universal Module. Just create a Universal Module product under Settings > Company > Modules > Universal Module that has a name. If you require the customer enter any details during checkout for the service, create service fields for the Universal Module product.1 point -
Which Is The Best Way To Make A Provisioning Module With Queue On Backend
LukesUbuntu reacted to Blesta Addons for a topic
i was have almost the same case (with different needs ) in my actual module , what i have do . the server return a status of the task of creation (running/stopped) , what i do in the addservice function , is to look up this taskid status . if finiched go to the next task . $finished = false; while( !$finished ) { $task = $this->Tasks($module_row , $params , $response) ; if ($task['status'] == "running") $finished = false; else $finished = true; sleep(2); } with this i'm sure the task has been stopped and i can go to the next step/job . for the same case , i have already request that modules should have the ability to add job task , but until now notyet implemented . but you can create a helper plugin that will create plugin with cronjob . then in the addservice function , poll the info in the database , then the cronjob sendthe jobto the server , when the task is marked as finiched , send the welcome (that shouldbe done via the plugin not the module ) , and then send the next task in the cronjob .... i hope i have give you some idea to help you .1 point -
Awesome!
domaingood reacted to Joseph H for a topic
I totally Agree with you @Naja7host and @Paulov , Domain management is an important core feature, currently having some trouble on domains renewal and management as well. I would love to see the Domain manager done @Licensecart , I would love to have the mass mailer, and It's one of the things I miss from my previous Billing system. But that can wait, the domain manager is very important for web hosting business. I sell domains 3x more than I sell hosting, managing/transferring/renewing is pain1 point -
Awesome!
domaingood reacted to Blesta Addons for a topic
if i remember will your voting thread , it was not radio button , it was multiple checkbox . so any member can select his needed module and his favorite plugin . like me , i have selected the domain manager and mas mailer and afiliate system . if we compare mailer and domain manager , we found the mailer plugin is used by all , and all need it , but domain manager is neded by webhosters . i'm 10000% sure if it was a radio button for one slection , the mailer plugin will not get a lot of votes , because every voter will select the wanted module and not a value added plugin . our goal from this discussion, is not attack blesta staff or blestars like you and me and PauloV , the attention is to rich and give some feedbacks from our experience . staff should take care to enrich the core and the core plugins (order-support... ect ) , in my case the order form and the domain manager should be rewrited in the next release . about plugins , we can take care of it ,^personnaly i have a lot of plugins/modules to write , but i can't lose time in it and i'm still in v2 , i prefer add more features to my modules of v2 that writing new for v3 . we can make a deal , blesta adjust and enrich the core files, and we make a and release new plugins and free (yes is free) ... P.S - I LOVE BLESTA1 point -
Awesome!
domaingood reacted to PauloV for a topic
Im shure that if I could open a voting pool, for exemple on WebHostingTalk, the "Domain Managment" will be on Top off all voting in Blesta Foruns, the voting is very limited to people that "dont need" domain managment like you Licencecart, you only sell licences and not domains (i know in the pass you had sell) Blesta is primary an Hoting Billing System, so it as to focus 100% in this market and not the extras I like so much blesta, that "hurts me" a lot that I have to continue using WHMCS because of Domain Managment But im not talking just for me, im talking in behalf of hundreds of people that I have talk in Hosting Foruns, that one of main blesta problems is Domain Managment now (opensrs was one of the problem that I solved in 50%) My opinion is, blesta will grow more with Domain Managment that any outher extra module/plugin Blesta can now fully support EU invoicing Blesta can now Upgrade/Downgrade in client area Blesta is Mobile Ready (Client Area for now) biggest extras for me, and alot of people, are: 0- (not an extra) separted Plugin for Domain Managment (do not relate with "Services" plugin, because Domains are totaly diferent) 1- Upgrade/Downgrade a package only after client pays the invoice. 2- If you have an "Auto Cancel" package, and the client upgrades to anouther package without an "Auto Cancel", remove the auto cancel for that package. 3- Dont suspend an account if you have an open invoice (this is on CORE for 3.5). 5- Always use sequential numbers in Pro-Forma invoices, even if you have converted an invoice, and dont reuse the old pro-forma numbers. 6 -Mass Mailling with auto cron sending on some action like (on cancel, after xx days purchaging, etc.) 7- Affiliate Plugin (this is the eseast plugin of all ) 8- use your imagination P.S - I LOVE BLESTA1 point -
Awesome!
domaingood reacted to Blesta Addons for a topic
i'm totally agreed with your idea . i'm very happy that i'm not the only one in this road , until this moment , i prefer stay in v2 than moving to v3 . in fact , v3 is so modular and very customizable in so many aspect , but what is related to the core files , i can't touch it until the staff do it . in my simple idea , what is better to do next , more modules or add more feature to the core ? the webhosting market is the big market for billing software , and us as we have a lot of years in this market we can see what is the needed and better to add as feature , i don't see any benifict from coding more plugins than ignoring some great feature to the core system (domain manager , powerfull hosting managerment -cpanel/plesk/directadmin- , server management -softlayer/ovh/hetzner/leaweweb/ect .... - , coupons , powerfull shopping cart system , ...) .1 point -
The problem with your Pool is that, people that are not registered in Blesta Foruns, or people that are not Blesta clients, will not vote So the Pool are limited to the people thar are alredy accustomed using without the Domain Managment, so they will not Vote What are the biggest needs in a webhosting managment system? 1º- Manage Clientes 2º- Manage Invoices 3º- Manage Servers / Shared Hosting 4º- Manage Domains 5º- Manage Support/Help Desk 6º- all outher things are extras... But now Blesta is putting all outher things in first, and the demands of "new clientes" and some of us, like me, that manage for several years servers and domains, dont agree with the needs for now for Mass Mailling (we have alot of free/open source alternatives for mass mailling), and we dont have any alternatives for fully supoport Domain Managment only WHMCS/ClientExec/Hostbill etc.. fully support Domain Managment, that is sad Alternatives for now, for us: 1º- wait a few months for blesta release a core domain management 2º- make some patchs to core files to suport fully domain managment 3º- continue using outher billing systems we have opt to use (3º) for now, our current billing system, untill we have time to fully test (2º), or blesta relase (1º) We still have hope that blesta will change there mind Best reagrds to all1 point
-
Fully Workin Promox Module
PauloV reacted to Blesta Addons for a topic
the module is almost done . i have used the PHP API class https://github.com/CpuID/pve2-api-php-client . the admin side is 100% completed . the package section is 100% completed . the order form is also 100% . the openvz party is 100% done . the kvm is not fully completed now . the client side is almost 80% . i will try to release it the first week of 2015 . a lot of work with a little of free time .1 point -
1 point