Jump to content

chrismfz

Member
  • Posts

    185
  • Joined

  • Last visited

  • Days Won

    1

chrismfz last won the day on October 28 2013

chrismfz had the most liked content!

1 Follower

About chrismfz

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

chrismfz's Achievements

Senior Member

Senior Member (3/3)

2

Reputation

  1. For years I had just one cron every 10:00 am every day. After upgrading to 7 if I am not mistaken that cron became every 5 minutes. So I had a cron like this: */5 * * * * php ..../crons/cron.php I saw the wiki somewhere about the skip suspensions behavior and I said let's try that! So now I have 2 crons like this: */5 * * * 1-5 php .../crons/cron.php*/5 * * * 0,6 php .../crons/cron.php skip --AutoSuspensions One "regular" and one that I skip suspensions on weekends. The weird part is that in Automation settings the cron is configured at 10:00 like always. Never touched that. Date/Time/Timezone is "as is" the last 5 or 6 years. Never touched that either. The only difference is the second cron every 0 and 6th day of the week. What's the problem ? Monday to Friday cron is running just fine everyday at 10:00 a.m. Saturday and Sunday are running at 00:00. How is that possible ? it's the same cron, everyday every 5 minutes. Staff said "contact your system administrator" and "and not being revealed to our software." So doing the same cron job every 5 minutes but it runs at 00:00 on weekends and 10:00 am on daily basis is a server error not WHMCS. 🤣 😂 Anyone else having the same issue ?
  2. Anyone else having this issue or just me ? In 7.7 just updated. I got custom admin url. let;s say it's "sysadmin". it is proper declared in configuration years now. If I go to Apps & Integrations and click in slack for example I see this link: https://mydomain/sysadmin/index.php?rp=/sysadmin/apps/app/notifications.slack When I click it and I get the popup to enable / manage it The manage button redirects me to this link: https://mydomain/sysadmin/index.php?rp=%2Fadmin%2Fsetup%2Fnotifications%2Foverview And I am getting a 404 error: Anyone else noticed it ? Oops! Page Not Found We couldn't find that page. Please try navigating using the options below.
  3. Hello Eddy. You hid information that was much easier to see / check with 6.x cron job, and now this kind of information doesn't exists in Automation status too. For example in the old cron I see 1 Services Suspended - SUCCESS: Package name- domain.com - Customer name (Service ID: 630 - User ID: 362) In the new one I see: Overdue Suspensions 2 Suspended But I don't know what just whmcs suspended. In Automation Status I also can't see anything. Overdue Suspensions 2 Suspended 0 Failed I don't know for example which 2 services just got suspended. There is a link for failed, a link for the suspensions would be nice too. And for everything else like the old cron. Invoice reminders sent, I can't see what, to whom, invoice IDs etc. Just a number, that 3 invoices generated. The same for Domain expiry for example. I see just a number, Domain Expiry 2 Expired. Which 2? I can't see. The same goes for everything basically. Tickets, Terminations, Cancellation requests. I only see a number, not the ID, the domain, a client name a link to what happened to which person.
  4. Since 6.x I had to copy/paste the sidebar.tpl code from 5.x for specific variables I would like to see in the sidebar. These are: Pending Orders: 2 Active Clients: 0 Inactive Clients: 0 Pending Services: 0 Active Services: 0 Suspended Services: 0 Terminated Services: 0 Cancelled Services: 0 Pending Domains: 0 Pending Transfer: 0 Active Domains: 0 Expired Domains: 0 Cancelled Domains: 0 Unpaid Invoices: 92 Overdue Invoices: 56 But after updating to 7.1 they stopped working. All are zeroes. Only Pending Orders are working and Invoices. The other variables changed names ? I have in sidebar.tpl: {if $sidebar eq "home" OR $sidebar eq "clients" OR $sidebar eq "orders" OR $sidebar eq "billing"} <span class="header"><img src="images/icons/stats.png" alt="Statistics" width="16" height="16" class="absmiddle" /> {$_ADMINLANG.stats.title}</span> <div> <a href="orders.php?status=Pending">{$_ADMINLANG.stats.pendingorders}</a>: {$sidebarstats.orders.pending}<br /> <br /> <a href="clients.php?status=Active">{$_ADMINLANG.stats.activeclients}</a>: {$sidebarstats.clients.active}<br /> <a href="clients.php?status=Inactive">{$_ADMINLANG.stats.inactiveclients}</a>: {$sidebarstats.clients.inactive}<br /> <br /> <a href="clientshostinglist.php?status=Pending">{$_ADMINLANG.stats.pendingservices}</a>: {$sidebarstats.services.pending}<br /> <a href="clientshostinglist.php?status=Active">{$_ADMINLANG.stats.activeservices}</a>: {$sidebarstats.services.active}<br /> <a href="clientshostinglist.php?status=Suspended">{$_ADMINLANG.stats.suspendedservices}</a>: {$sidebarstats.services.suspended}<br /> <a href="clientshostinglist.php?status=Terminated">{$_ADMINLANG.stats.terminatedservices}</a>: {$sidebarstats.services.terminated}<br /> <a href="clientshostinglist.php?status=Cancelled">{$_ADMINLANG.stats.cancelledservices}</a>: {$sidebarstats.services.cancelled}<br /> <br /> <a href="clientsdomainlist.php?status=Pending">{$_ADMINLANG.stats.pendingdomains}</a>: {$sidebarstats.domains.pending}<br /> <a href="clientsdomainlist.php?status=Pending%20Transfer">Pending Transfer</a>: {$sidebarstats.domains.pendingtransfer}<br /> <a href="clientsdomainlist.php?status=Active">{$_ADMINLANG.stats.activedomains}</a>: {$sidebarstats.domains.active}<br /> <a href="clientsdomainlist.php?status=Expired">{$_ADMINLANG.stats.expireddomains}</a>: {$sidebarstats.domains.expired}<br /> <a href="clientsdomainlist.php?status=Cancelled">{$_ADMINLANG.stats.cancelleddomains}</a>: {$sidebarstats.domains.cancelled}<br /> <br /> <a href="invoices.php?status=Unpaid">{$_ADMINLANG.stats.unpaidinvoices}</a>: {$sidebarstats.invoices.unpaid}<br /> <a href="invoices.php?status=Overdue">{$_ADMINLANG.stats.overdueinvoices}</a>: {$sidebarstats.invoices.overdue}<br /> <br /> </div> <br /> {/if} But it seems those variables stopped working in 7.1. Vars like $sidebarstats.clients.active $sidebarstats.services.pending $sidebarstats.services.suspended etc.
  5. Back in the old days I had an email informing me about suspensions, terminations, which service with link, customer names, invoice IDs and everything. Something like I instantly knew the invoices, the terminations, suspensions, with the IDs, service names etc. Now ? Now, I am getting a fancy mail with 0 information. With no links, no service IDs, invoice IDs or anything else. And pressing the View Full summary I see exactly the same things inside whmcs. (In the automationstatus.php) Why you made the information worst to see ? 2 Domains expired. just show them to me. Don't make me searching the half whmcs menu to see 2 domains. Which two ? Overdue suspensions 2. Which 2? Why I should search inside-out to see which two? It was available inside the cron mail for years. Since 3.x versions that I was working with. Now where are they ? Are you planning to make automationstatus.php an upgrade with links and show the invoices, suspensions, everything or just we
  6. Hello people. Spellchecker with chrome or firefox was working for years. Since 2008 as I can recall. After upgrading to 7, it stopped working in some areas like support tickets. Googling, I found that there is a var for that in tiny mce, body.spellcheck And grepping every file in whmcs folder I found two files that disables this now. {r.body.spellcheck=false} In: assets/js/tiny_mce/tiny_mce.js includes/jscript/tiny_mce/tiny_mce.js Is is possible to enable it somehow and preserve this in future updates? Like an override ? ---------Edit It's working if I change in includes/jscript/tiny_mce/tiny_mce.js the r.body.spellcheck=false to true, but I assume an update it will overwrite it again.
  7. I can confirm this. Just logged in with firefox, different css/layout, update worked, saving path and release worked. Seems messed up with chrome, but normal with firefox.
  8. Same problem here. I don't know if the custom admin path have to do something with this. Anyone having issues have different admin folder name for /admin/ ?
  9. Can't save update settings too. Tried one by one, all together, checked php.ini for any disable_functions, url_include and open checked on just in case, error_log empty, apache error empty, mod_sec audit log too. Any ideas ? Running 7.0.2 on php 5.6.28
  10. Also this message is "wrong": Redhat and any derivative that comes from RHEL (Centos / Scientific Linux / CloudLinux) backports and fixes bugs and vulnerabilities. https://access.redhat.com/security/updates/backporting/ Just checking the curl version it's wrong. It's updated and bugfree. Anyone can check it using rpm -q --changelog or grep just the CVEs involved:
  11. Same here, Cron job + pop3 ticket cron errors. But both fine and working.
  12. I don't know if this caused because of 6.1.0 or cPanel 11.52, I update both almost the same period of 1-2 days. It was working OK before. I cannot change (neither the customers) the password of cPanel accounts through WHMCS. Other commands are working fine like suspend / change package / terminate. The only thing that doesn't work is Change Password. Anyone having the same problem ? Can someone re-produce it using cPanel 11.52 and WHMCS 6.1 ?
  13. 1st worked like a charm thank you! 2: I tried a bunch of accounts, in a few, on different servers it works. In a few servers it doesn't. So I believe it's a setting relevant to cPanel not WHMCS. Comparing tweak settings for a start, security tab, I've seen differences like Blank referrer safety check and Referrer safety check but no luck. Should be something else that I miss. I'll continue searching and comparing.
  14. Hello there! Just a few questions: 1) I got customers that may have for example 20+ cpanel accounts on their panel. They are developers mostly, and they love it when they could see username/password of the cpanel account. They could easily send them to the customer or save it locally. With v6, username/password vanished. Is there a way to bring it back ? 2) Links like subdomains, emails, mysql databases, and the add email don't work. All of them redirect the customer to the cpanel main page. Is there a solution for that? A setting from cPanel server or whmcs ? (tested with x3 and paper_latern in case that the theme was causing that, nothing.)
  15. How can I add a specific code in <head> ... </head> but only in complete.tpl ? It's a code like Google's Conversion tracker, but it also needs something in <head>. I am working with modern cart, and I need to add code in <head>. Can I somehow add it in theme's <head> (header.tpl) with an {if} to show it only under a specific page ? For my example the complete.tpl of the cart template. Is there such a possibility ?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated