Search results

  1. catalinbombea

    Web updates stopped working

    All versions between 2 and 3 was received by users. Version 3 is not received, same happened when we changed from 1.x.x.x to 2. When we released 2, users had to download manually the latest version from website because padlock was not able to see the new update. After the manual download...
  2. catalinbombea

    Web updates stopped working

    Hi, For your feedack, we have the same problem again. We changed from version 2.x.x.x to 3.x.x.x, users are not receiving the update again. Everything else is the same, so it is clearly a bug in your process, we followed all instructions. And there is another bug. When we open the exe, we see...
  3. catalinbombea

    Web updates stopped working

    Thank you. Still have a question related to the update process: Have observed this behavior: I get the notification, press the Get update button, but the old version opens. However, NEXT time I open the same old exe, the new exe opens up. I guess that is how update process is designed? I find it...
  4. catalinbombea

    Web updates stopped working

    Question: Does Padlock allow checking for a new version from vba? It will be very useful to check for updates and start the update process from excel, but there is no such code provided in documentation. thank you
  5. catalinbombea

    Web updates stopped working

    Well, I think you’re right, you did not understood anything 🙂 Web updates is a way to release new exe versions to your users. When you release a new version of your tool, your users will receive a message in their exe that “a new version is available” and they can get the new version...
  6. catalinbombea

    Web updates stopped working

    Hi, We are using 2024 version of padlock, but we started to have issues with web updates, users are no longer seeing the “Update available” dialog. Here is the old exe file properties: The new exe compiled: The .inf file content: Older compiled files don’t get the update, all settings are...
  7. catalinbombea

    Validation Error

    Hi, Back with an online validation error, this time in the compiler. When loading an xplp template, that has the Validate activation state option set to “Every X Times”, the additional box where we set the number of times is not displayed: If we compile the exe, users will never have to...
  8. catalinbombea

    Validation error on a second device for subscriptions - Woocommerce integration kit

    In pseudo code, the logic was like this: if field does not exist, create it. There was indeed a field update line: if (“xlspadlock_activations_$product_id” == $meta_item->key) { $meta_item->value = $existing_activations_str; $b = true; break; } The problem in this approach is that there is no...
  9. catalinbombea

    Additional Server Data

    Thank you, very helpful indeed. However, in the compiled exe I cannot get the additional data value, the image below is from dovalidation: I can confirm that $additionalvaldata does return what we need, but when calling XLSPadlock.PLEvalVar(“ValidationAddServerData”) from exe, it still returns...
  10. catalinbombea

    Validation error on a second device for subscriptions - Woocommerce integration kit

    correction: if ($b) or if (!$b) is wrong, should not even be here, it’s wrong logic. If true, it means that the custom field xlspadlock_activations_$product_id was found in order, the app will append a new system id to existing string, BUT will not create the custom field if does not exist! If...
  11. catalinbombea

    Validation error on a second device for subscriptions - Woocommerce integration kit

    was able to fix the subcontroller, stupid mistakes in there… Should be: if ($b) { $order_data->update_meta_data(“xlspadlock_activations_$product_id”, $existing_activations_str); $order_data->save_meta_data(); } before, was: if (!$b) However, since wp 6.3.0, there are many issues that need to...
  12. catalinbombea

    Build Secure Application: formula error

    saving xlsce files using specific ranges mapped with padlock’s save cells does not work properly. It cannot handle table ranges, will always be different than mapped cells. Custom restore values procedure is a must with tables, cannot use padlock tools. Did that already.
  13. catalinbombea

    Build Secure Application: formula error

    Quoting support: To change the displayed texts, you can use the ‘Localisation’ option in XLS Padlock. By choosing a .SIL file, you can modify various values present within this file. The .SIL file format is a text-based format that can be edited using Notepad or a dedicated software. Here are...
  14. catalinbombea

    XLS Padlock Activation Error - Key Generator Returned Error

    Hi, Looks like the key generator fails, here is the response (returns a html document as response): < html lang=“en-US” >< head>Just a moment…[…]Enable JavaScript and cookies to continue[…] private static $keygen_url in KeyGenAPI.php is: ‘https://licfactory.xlspadlock.com/xlskey/api/keyforge’...
  15. catalinbombea

    Additional Server Data

    Hi, We need to have a Company Name field in the activation process. For this, I edited the form: We are able to activate online a subscription with this form. The problem is that the server does not return this company name in VBA, the function: XLSPadlock.PLEvalVar(“ValidationAddServerData”)...
  16. catalinbombea

    Validation error on a second device for subscriptions - Woocommerce integration kit

    waiting since may? Sounds too much… If the activation is successful, that’s the moment when the next system ID’s should be added to order custom field, in order to get a successful validation. doactivation function is not working properly, online activation is useless if a user can activate only...
  17. catalinbombea

    Validation error on a second device for subscriptions - Woocommerce integration kit

    @gdgsupport Looks like I have the same issue, there is a bug in the subcontroller.php: Online activation fails XLS Padlock Can you please provide a fix for this bug? thank you
  18. catalinbombea

    Online activation fails

    Ok, managed to get the server activation kit running. However, was able to activate only one computer with the subscription activation token, the order quantity is 11. I receive the message : ‘’[app] was successfully activated with your key.‘’: but when trying to activate another computer I...
  19. catalinbombea

    Does WooCommerce activation kit work with php 8.2.9?

    If not, which is the recommended php version for the current kit version? I get this error, but subscription is there, email and order id is correct in validation token: -1155 thank you
Back
Top