-
Content Count
355 -
Joined
-
Last visited
Community Reputation
19 GoodAbout ManagedCloud-Hosting

-
Rank
Senior Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Thank you @WHMCS John
-
@Kian Hi, Thanks for you detailed explanations on this topic... Yes you are right one decision and life changes course... Knowing and using codes / scripts / software from trusted developers who value security is actually the best thing to do.
-
Hi @Kian you are absolutely correct...it's best option to go for MG However saying that we all should note that there are too many small companies and providers using WHMCS who might not be able to afford MG. In that case what security measures they can take and valid ones... security is important for everyone smaller or bigger they are right... @WHMCS John please advise what WHMCS techs recommend in such cases where security should be tight and strict...Thanks
-
Thanks @yggdrasil and @Bigol'tastynuggets we are using below - -- WHMCS (Billing & Server Management) Freedcamp (Task Management & CRM) Tally (Accounting) --- This requires lots of time, effort and money...we are looking for the cheap and best solution combined... Vision Helpdesk For Tech Support, We are absolutely happy and will keep support only with Vision Helpdesk software.
-
Hi, I have some questions and want to know if this is possible or not. Thanks 1. If I want to use Two WHMCS installs - one for Billing and another for server setup and support is it possible ? 2. How to sync and automate order and account / server creation (shared & reseller) and send to clients automatically 3. How to enable Clients login to the second WHMCS (for server and support) using single click from the first WHMCS (Billing Portal) ?
-
Hi, I am suddenly facing issue with automatic updates, below is the error message. Please help resolve this issue, Thanks. ---------- Update Failed - An error occurred that prevented the update from completing successfully. Insufficient File Permissions For Deployment (Help Documentation) Error: Failed to perform early file copy during WHMCS file relocation: init.php Please try again and if the issue persists, please contact support. ---------- Screenshot -
-
Hide terminated products in client area?
ManagedCloud-Hosting replied to mino's topic in Developer Corner
Hi How to hide the cancelled invoices ? don't want clients to see the cancelled invoices. Thanks -
Paypal issue
ManagedCloud-Hosting replied to Jessie Abernathy's topic in Admin & Configuration Questions
Thanks...this helped a lot !! -
Hi, How to send payment reminders using Clients Group wise or on Specific days or exactly on due dates automatically ? Is there any Hook that I can use ? Any other option ? Please help. Thank you
-
Change company logo based on client group
ManagedCloud-Hosting replied to Al Fahad Anik's topic in Developer Corner
Hi, I have two logos how to use it, Thanks ----- <?php # Compamy Logo Based On Client Group Hook v1.1 # Written by brian! function client_group_logo_hook($vars) { $client = Menu::context('client'); $groupid = $client->groupid; if ($groupid > 0) { $logo = $vars['systemurl']."/assets/img/logo".$groupid.".png"; $headers = get_headers($logo, 1); if (strpos($headers['Content-Type'], 'image/') !== false) { return array ("assetLogoPath" => $logo); } } } add_hook("ClientAreaPage", 1, "client_group_logo_hook");