
Logman
Member-
Posts
52 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by Logman
-
Vultr Module is broken (Vultr support not helping)
Logman replied to Logman's topic in Developer Corner
Aye, only 2 weeks of back of forth. First they couldn't be bothered to test with 7.6 and then I ripped them a new one. And finally they tested it and fixed it. -
Vultr Module is broken (Vultr support not helping)
Logman replied to Logman's topic in Developer Corner
Strange. We managed to get it fixed with Vultr support help. They provided the unencoded files and the API could connect. There was one PHP error that had to be fixed in their code in that version. But finally we have the module working again. Vultr were able to replicate my issues so not sure why yours is working without issue. -
Vultr Module is broken (Vultr support not helping)
Logman replied to Logman's topic in Developer Corner
Yes, it's provided by them. The error is: API Connection problem. Check your API Key. Configuration Page And in the module log all I see is "HTTP Code: 0". -
Does no-one use the Vultr WHMCS module? Since we've upgraded to 7.6 and PHP 7.2 it is just broken. Reports an error with the API configuration. This was working fine before. Vultr support are not interested. After a week of back and forth they just said I have to switch to WHMCS 7.5. I don't know if a downgrade is even possible. I can't be the only one using it and the only one running WHMCS 7.6 and PHP 7.2. Super frustrating.
-
I put a notice on the order form to only input ns1/ns2.
-
Strips out the links and configurable options but good enough. Thanks again. 🙂
-
Cheers, but that doesn't strip the HTML unfortunately.
-
Hi Brian, I get a syntax error with that code. I put: <td align="left">' . strip_tags(nl2br($item['description']),'<br>')</td>
-
We have HTML that adds links to more info about add-ons: As long as it doesn't strip the <br> tag should be fine?
-
I have successfully stripped HTML from email templates, cart pages and the invoice template. Still have product description HTML in the invoice PDF. Code looks a bit more complex. Tried |unescape after the item description in invoicepdf.tpl but it just removes the whole description. Any ideas? foreach ($invoiceitems as $item) { $tblhtml .= ' <tr bgcolor="#fff"> <td align="left">' . nl2br($item['description']) . '<br /></td> <td align="center">' . $item['amount'] . '</td> </tr>'; }
-
In Client Area home is it possible to have a static display on panels? I always want to display panels for: Products/Services Tickets Account Info Announcements I don't even want Invoices to show when they are due. Clients get emails, that is enough. Just need those 4 panels in 2x2. Panels will be a fixed height as we are putting something under it. Should be doable? Any caveats? If you're a developer and want to do this job hit me up with a quote.
-
Thanks. So this happening with Six and Standard Cart too. Nameserver fields only accept "ns1" and not "ns1.domain.com".
-
We use the Control Theme and use one of their order forms. It does happen with Standard Cart though. I don't have Six installed, must have removed it in a clean up. Can it be downloaded anywhere?
-
my quote won't close after "invalid". Gave up trying to fix it. Hope you get the gist of the post.
-
On our VPS order form I'm getting this error on the first step: This is when a client inputs: ns1.domain.com ns2.domain.com If they simply enter ns1 and ns2 the order proceeds just fine. In the past we've been able to enter ns1.domain.com and ns2.domain.com and that seems pretty natural. This is a problem that needs a solution. For now I'm adding text in configureproduct.tpl.
-
I'd like to display a feed of blog posts in the Client Area as we are planning on putting out a lot of content in the coming months. Searched the interwebs but came up empty. Suprised there isn't an add-on for this. Is this not simple and requires a custom dev job?
-
I commented out the sidebar in standard_cart but I can't seem to fix the padding on the Review/Checkout title: It's in a div: <div class="header-lined"> In my custom CSS file I tried: #order-standard_cart .header-lined { padding-left: 10px; !important; } No joy though. Hoping someone can show me the error of my ways.
-
Yea, we have a dev site setup and ran the update there without issues. I didn't think to check the theme from a client's POV. And then I started clicking around the Addon and Product pages and got errors from all the plugins encoded with IonCube. Lesson learned.
-
Old theme also didn't work on 7.6 which is why I got this new theme. I was planning on switching to it anyway and doing some refinements like the product descriptions.
-
Assumption correct. 🙂 Using a theme from Impressive Themes. Just upgraded to 7.6 and finally switched to PHP 7.2 after languishing on 7.0.13 for ages. Holy shiiiiiiiiiiit. Just had to nuke a bunch of plugins and get updates from other providers. Basically took up all my day.
-
People actually use "Six"? 😛
-
Damn you guys are fast. 🙂 This worked perfectly!
-
-
Great, so modified for May: SELECT DATE_FORMAT(date, "%Y-%m") as Date, tblticketdepartments.`name` as Department, Count(*) as Count FROM tbltickets INNER JOIN tblticketdepartments ON tbltickets.did = tblticketdepartments.id GROUP BY DATE_FORMAT(date, "%Y-%m") = '2018-06',Department ORDER BY date ASC I guess that is accurate, seems about right. Not sure why those first 3 rows are outputted though.