Jump to content

PixelPaul

Member
  • Posts

    58
  • Joined

  • Last visited

About PixelPaul

Recent Profile Visitors

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

PixelPaul's Achievements

Member

Member (2/3)

3

Reputation

  1. something is very weird going on with stripe module and credits. As the WHMCS team tested it and say it all works fine. But it doesn't for me, and others.
  2. what version of WHMCS are you using? and does it happen no matter when the credit is applied and invoice paid? trying to narrow down the issue.
  3. Hello, i am using WHMCS v7.9.2 and there has been a bug in the stripe module for a few years how where it would send the wrong amount to stripe to charge the card. This is when a credit is applied to the invoice. Example.... customer has a credit of $10, and they get a new invoice for an order of $25. The ($10) credit will be applied to the invoice, and the remaining amount due is $15. Instead of sending $15 to stripe, to charge, it still sends $25. This only happens with the stripe module, and no other credit card payment modules we use ( we use 3 others ). has anyone else seen this?
  4. so why does it run the hook just once when the admin does it, even tho he changes 2 or more values? And is there a hook that will run just once with all updated values for client and admin making the change?
  5. Hello all, I am curious, why are people still using WHMCS after what they did with the pricing and customers so called "lifetime" licenses?
  6. I just tried now with 3 option changes at once as a customer, and the _ChangePackage ran 3 times. What the??? this seems like a bad process. Specially seeing as it runs once when the admin does the change package. does anyone know how to get a function or hook, after ALL configuration option upgrades are completed? Instead of a function run for each option change?
  7. Hello All, I have a module and i noticed that when there are 2 configurable options ( in the 1 config group ) that the _ChangePackage function runs twice when the customer does the upgrade. And the first time it runs, it has one of the option changes. The next time it runs it has both of the option changes. So it seems it runs for each option change. Interesting tho, when i click the button "Change Package" on the admin side for the service, it only runs the _ChangePackage function once, for all the options in one go. So why the difference of running in twice for the customer, but once for the admin?
  8. it is base64 encoded. so i got it all sorted 🙂
  9. this is close to what i was thinking of doing. the only problem is, the session data seems to be encrypted in the database. So i can get the session for the logged in person, but i cant get their userID from the session data without decrypting the payload somehow.
  10. Hello, Does WHMCS not allow for any output on a service that is status set as "Completed" on a modules _ClientArea() function? As nothing is shown that i return in the module function. It is only shown if the service has a status of "Active". Even when i return it in the 1st line of the function. So how do i show anything on the service/product page when the service has finished and set to "Completed"?? As i need to show the old services details to the customer.
  11. Hello, Does anyone know how to decode the session payload in the database? Without using WHMCS. I ideally want to try and decode it via nodejs so i know which userid is linked to the session_id
  12. Hello all, I will have users logged directly into WHMCS. Does anyone know how i can verify a users session via the cookie and API? I will be doing it via a nodejs app. I have another application, and it has access to the WHMCS cookie as on same domain, and it can use the API. So i would like it to get the cookie and then check via the WHMCS API if the user is logged in and who the user is. I can also access the database if needed. The CreateSsoToken method does not really work for me, as they will be logged into WHMCS via the order form or other. And i cant control how they will access this other application ( they may click a link or access it directly or other )
  13. the ordering does not changes the problem, it just orders the module hooks. the last one still gets the variables which have not been modified by previous modules, and provides the final variables. the WHMCS hooks system is very flawed
  14. Hello, With the ClientAreaPageProductsServices Hook for a module, you can modify and return the values off the hook to be used on the template of the page. But i have noticed if you have another module hook doing the same, which ever one was run first will get overwritten by the 2nd values. It seems like the default values get provided to each hook. So if you have one module using the hook and returning the modified values, it works fine. But when you have two modules with the same hook being used. because the default values get provided to both, no matter if one modified the values. Only the final module running the hook will have their modifications passed onto the template. Is there a way to fix this? So modifications made by all module hooks for that function will be provided to the template?
×
×
  • 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