Jump to content

denully

Member
  • Posts

    101
  • Joined

  • Last visited

About denully

Recent Profile Visitors

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

denully's Achievements

Senior Member

Senior Member (3/3)

0

Reputation

  1. how have i not come across this 😮 that looks amazing, so many options in one tool. Thank you very much for that recommendation, i will look more into their solution. Its mainly DK and Sweden i need it for and they seem to offer both. 🙂
  2. Hello I have been searching from A to Z on the world wide web machine 😛 and only found a paymentgateway for Klarna.com/Sofort which turns out to be an aquired company of Klarna in UK, so their module does not work for normal Klarna.com clients. So i am wondering if anyone out there have made a paymentgateway module for Klarna.com (klarna.com/se) that they would be interrested in sharing, selling a copy of, or is selling licenses to? I know i could be looking for someone to build me one, but unfortunately, even as an online business, i have been hit with the drop in income thanks to Covid and all programmers i have come by has been way over my budget, for a paymentgateway module. ps. Klarna.com does not know of a module themselves.
  3. Turns out the problem was a server module in whmcs, one we had for phpmumbleadmin. why it caused issues for normal products i dont know, as they had no connections what so ever.
  4. ah glad it worked out, unfortunately the language fix didnt help with mine and yea your right, the support/update package got more expensive and the speed of service dropped.
  5. if you enable Error Logging and try again, do you also, i the log, see some issues with Smarty ? I have unfortunately yet resolved my issue either, so just trying to see if we both have issues with Smarty and that might be whats causing all this.
  6. it has already been deactivated, yet the error was still there. I will take it up with the server Tech, if they can see why its still showing reports then. thanks.
  7. So i'm one of the lucky ones to have the "Oops! Something went wrong and we couldn't process your request." and be stuck with it. This (from what i have found so far) only happens under configproducts.php, i can see the page itself, but trying to add or edit products, gives the error every time. I am running within the minimal WHMCS server requirements. I have Enabled and Disabled Error reporting in PHP, both giving the same results. I have Enabled and Disabled show errors (together with the above) and i still only see the "oops.....", however in the activity log it says: Error: exception 'Whoops\Exception\ErrorException' with message 'Undefined offset: 1' in /var/####/####/####/####/####/admin/configproducts.php:0 Stack trace: #0 /var/####/####/####/####/####/admin/configproducts.php(0): Whoops\Run->handleError(8, 'Undefined offse...', '/var/####/####...', 0, Array) #1 {main} Which i unfortunately didn't understand much of. I tried to roll back to version 7.1 where the issue wasn't and then try a Manual update (rather then automatic update) to 7.2.1 , however this didn't change anything. I can't recall or recreate it, but at some point in all my clicking and testing i ended on a page giving me an error with something like: 'Class 'Smarty_Internal_ParseTree_DqContent' not found' in...... , i was unfortunately tired, annoying and worn out and went to bed then and now cant find that error again, but figured i would throw it in anyway. To the above smarty error, i tried to delete the smarty folder under Vendor and reupload from whmcs full package again, making sure there was a Smarty_internal_parsetree file. The issue was still there after that, but again i can't seem to find it now. I read some suggestions of updating PHP to version 7, which i have requested from the Host, but that wont be happening any time soon, as of now im running on PHP Version 5.6.30 any suggestions would be highly appreciated
  8. Hello altomarketing ill take a look after the christmas holidays funny how its always you coming to my rescue when i have whmcs issues, seems to have a plugin or tool for everything my hero hehe
  9. I am testing ISPconfig, to see if its worth switching over to and was playing around with the module ispcfg3 (https://github.com/cwispy/ispcfg3) to automatically create new users via WHMCS to ISPconfig. It is working as it should... more or less, it creates and everything, but the problem I'm facing is, that i have a reseller account setup in ISPconfig, however all new orders end up under my main admin account and not visible under the reseller login. I tried by using resellers login details when setting up the module, didnt change a thing though... not been able to find any settings specific for this either. anyone got a clue ?
  10. mine was a cart.php under /includes/hooks it was encrypted so i mistook it for being one of WHMCS's files, but it was a 3rd party hook we used, that seems to be useless right now. After removing that file ( as it was impossible to edit it ) the problem was resolved.
  11. facing the same error. I submitted a ticket as well, i will update this one incase i should get an answer first
  12. That worked I appreciate your help here and hate to ask you even more, but when a payment is done the invoice still state unpaid due to the paypal IPN delay there is sometimes. ( have been fighting a year with paypal on this matter ). would you know if there is a way to make the code you wrote if (isset($vars['status']) && $vars['status']=="Paid"){ work for registering if the invoice states paymentsuccess=true in the link or Thank You! Your payment was successful. on the invoice ? that way i could bypass the IPN issue.
  13. very helpful indeed. however it seems to be failing if i try to place a javascript in there, which adrecord has provided me. <script type="text/javascript"> (function() { adrecord = { 'programID': ZZZZZZ, 'orderID': 'XXXXXX', 'orderValue': YYYYYY, 'couponCode': '' } var e=document.createElement('script'); e.src=document.location.protocol + '//track.adrecord.com/track.js'; var s=document.getElementsByTagName('body')[0]; s.appendChild(e); })(); </script> thats what i needed in there and i place it as below. ( XXX YYY ZZZ is just me covering some date ) <?php function hook_insideInvoice($vars){ # Place Your Code In This Variable $myCode = "<script type="text/javascript"> (function() { adrecord = { 'programID': ZZZZZZ, 'orderID': 'XXXXXX', 'orderValue': YYYYYY, 'couponCode': '' } var e=document.createElement('script'); e.src=document.location.protocol + '//track.adrecord.com/track.js'; var s=document.getElementsByTagName('body')[0]; s.appendChild(e); })(); </script>"; if ($vars['filename']=="viewinvoice"){ if (isset($vars['status']) && $vars['status']=="Paid"){ return array("mycodepaidinvoice" => $myCode); } } } add_hook("ClientAreaPage", 1, "hook_insideInvoice"); ?>
  14. Does anyone have any experience in using adrecord ( http://adrecord.com/ ) with sales through WHMCS ? or if its possible to link to a website outside of whmcs when a payment is complete? The problem i'm facing is that i need to put in a tracking code on the "payment complete" page, so adrecord is able to record once an order has been completed, which has come through them. But it seems no matter where i place it in WHMCS, it doesn't work.
  15. do you plan on making one that handles more then just 5 servers ?
×
×
  • 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