Leaderboard
Popular Content
Showing content with the highest reputation on 01/03/2015 in all areas
-
Total: 347 Articles. Note: Reselling our Selling our Articles is not allowed. Now you can save time by purchasing our Latest and Up-to-Date Ready-Made Articles for your Blesta Billing System. Step by Step Tutorials for cPanel,Softaculous,DNS, AutoSSL, 2FA, SiteWorx, Wordpress, Security, SolusVM, SSL, DirectAdmin, etc. Step by Step 347 Professionally Written Article with Images. 1x Demo Article for Blesta Article Category: Backup/Restore cPanel - Control Panel WHM - Web Host Manager DirectAdmin Databases DNS - Nameserver Domain Management Email FTP SSL Installing a Control Panel Mail Filters & SPAM Others Mobile Wordpress Security Softaculous SolusVM Price: $41 - Only. Order & More Info with List of Articles: Minimum Blesta Version Requirement is: 3.4.0+ (Knowledgebase Support Module must be enabled) Installing and upgrading are so easy. Features? - Step by Step Articles with Images (Screenshot) - Professional Articles - Easy Installation - We are working on 50 other articles - Articles are Reviewed our Team for Errors and Grammar - 100% White Label - Free updates up-to six month - We will provide images with a watermark of your domain name or company name. - Support both - Support Manager and Support Manager Pro. - Tutorial for iPhone/iOS, Thunderbird, Wordpress, cPanel, Softaculous, etc2 points
-
Look at your package welcome email. Find any use of {module.*} and remove it. {module.*} is not a valid tag. The asterisk simply indicates that there could be "any" field available, and that it depends on the module. For example, cPanel supports the {module.host_name} tag, but the module you're using may differ. This goes for {service.*} and {package.*} tags as well.2 points
-
[Plugin] Support Manager Pro - Tickets Delete, Merge, Spam, Multiple Tickets.
LukesUbuntu reacted to PauloV for a topic
I have started coding in ZX Spectrum (Pascal) in 1994 lol, good old days then strat C and C++, after that VB6, after that HTML and in 2000 PHP + MySQL, in 2006 working with DIV's insted Tables + CSS, and in the recent years 2008 jQuery/jMobile What's next eheh (dont like Ruby, its still slow in now days) Now we have "Hacker" code, develop from Facebook people (its PHP but with some mod's, dont like it) What I have learn to today, is, dont waste your money in learning in schools how to code, just grabe an online manual or some tutorials and start Trying some lines of code, its te fastes way to learn how to code you (i also), will error many times, but thats the beuty of things is to learn with your own mistakes, and a good developper will easy debug and find a solution for the problems Exemple: Until January 2014 (after we have purchased Blesta license), I have learn from anouther develop from Blesta foruns (Eric) that using <? tags for php was the rong way for using because not every php.ini will interpret <? tags as PHP tags, so after that leson, now I always use <?php for all PHP code1 point -
No but I can set it up when I get home or give you access to the control panel?1 point
-
OT: Yeah, I saw that on Christmas. It's what I expected -- silly. Although I've coded sites since the 90s, and dev'd php since the 2000s, I shun the idea that I'm an expert in any way. However, I may be able to bring some of what I do know to Blesta. The deeper I look, the cleaner and easier it looks. Although I've griped a lot lately, it is clean code -- I'l give them that.1 point
-
We recommend these guys: https://licensecart.com/billing/plugin/support_manager/knowledgebase/view/233/recommended-developers-for-blesta/3/1 point
-
I want to watch it mate haha, I've always said since I heard what goes on in NK, that our government (UK) and USA should send troops in to kill Kim. And this film is about just that.1 point
-
We have plans to have a Blesta importer to go from an identical version to an addon company. This would be useful in consolidating when hosting providers acquire other hosting providers. Demand has been low, so I don't have an ETA at the moment.1 point
-
[Poll] What Module/plugin Do You Need ?
ModulesBakery reacted to Joseph H for a topic
Thats good news. mate... On the mean time... I'm setting up cPanel DNS only ...1 point -
[Poll] What Module/plugin Do You Need ?
Joseph H reacted to ModulesBakery for a topic
Yeah, it will be released soon .... very very soon !!!1 point -
[Poll] What Module/plugin Do You Need ?
ModulesBakery reacted to Joseph H for a topic
Awaiting for the release mate...1 point -
The KB has only been out in 3.4, and as it's just gone past christmas and new year you need to give Paulov a chance to update their third party plugin1 point
-
I believe this plugin is still actively being updated. There are quite some differences compared to the core one (not just the bubbles?), which being introduced in very first post of the said plugin's thread. I suggest waiting for Paulo's reply.1 point
-
"Priorities" are are silly. Everybody thinks they have an emergency. It needs to be useful AND editable. Take a page from ClientExec. They use tickets types -- which is the same as priorities if you think about it. "Server down" (emergency!) is not the same as "email issues" (lower priority). Best of all, you can edit them in CE to suit your needs.1 point
-
Using The Current User's Data While Provisioning Service Through Module
tszilassi reacted to LukesUbuntu for a topic
From when they are logged in you could get the clients info , something like this in your addService Loader::loadModels($this,array("Clients")); #update checked the client model and you can do something like this obviously some checking of client_id etc... $client = $this->Clients->get($vars['client_id'],false); $email = $client->email; $first_name = $client->first_name; $last_name = $client->last_name; //you may need to add something to check when addService is run from admin panel so your not passing the admin id im not sure check it out code is well documented its awesome.... Anyway there maybe a better way of grabbing the clients details i haven't tested this as ive only just started doing modules for blesta last week so don't quote me on it but it is one way....1 point -
Looks nice well done and good luck.1 point
-
Which Is The Best Way To Make A Provisioning Module With Queue On Backend
LukesUbuntu reacted to Rodrigo for a topic
Hi, I'm thinking about making a custom provisioning module for my game servers since I don't use any known game server panel. Since there may be some deployments that are not so fast, it's not possible to return the server data in the same call to the backend API (like multicraft does). Along with this, I want to implement a deployment queue at backend, so if 10 clients rent a server at the same time, Blesta will add a job to the backend's queue (via POST to an API) and then a job processor at backend will poll every 10 seconds for a new game-server install job. The part that i'm not sure how to do is how the backend notify Blesta that the service has been activated, considering that in a worst case scenario deployment can be done 999 days later after blesta POSTed the job into backend's queue. So I've been thinking about some ways to do this: 1) Magic blesta API call that I don't discover yet which allows to set service field data and mark service as active so the welcome e-mail is sent 2) Make the backend send the e-mail with service field data generated at deployment (i.e the IP address of a virtual machine, or a gameserver port ). In this case, I don't know how to send this data back to blesta, so custom data is shown at service tab. Does anybody have a suggestion or maybe had experience developing a similar module? Thanks!1 point