1911 results found
Sorry if this was already answered - I tried my best searching the docs and the forum, I either already have my answer (no) or I just missed it - I was hoping there is another parameter similar to get_features: Is it possible to also get the extra data (https://wyday.com/limelm/help/extra-data/) of each pkey found based on my search parameters?
Two-factor authentication, strict user controls: https://wyday.com/limelm/help/account-security/ https://wyday.com/limelm/help/add-users/ >> "And you are assuming that human errors can never happen?"
PKey = “put product key here” If Len(PKey) <> 34 Then MsgBox ("Not a product key: " & PKey & vbLf & "Select a cell in the Product Key column"): Exit Sub s = "&version_id=" & Version_Id$ & _ "&method=limelm.pkey.activity" & _ "&start=2014-01-01" & _ "&activation=true" & _ "&deactivation=true" s = do1GET(s) Function do1GET(ByVal s) 'sends a query to the lime server and returns the response as a string Dim sUrl$, webresponse$ sUrl = "https://wyday.com/limelm/api/rest/" s = "&api_key=put your API key here" & s Dim objHTTP As MSXML2.XMLHTTP: Set objHTTP = New MSXML2.XMLHTTP If InStr(TypeName(objHTTP), "HTTPRequest") = 0 Then MsgBox "something went wrong trying to create an MSXML2.XMLHTTP object" objHTTP.Open "POST", sUrl, False 'change GET to POST per wyatt's new requirement 01/04/2022 objHTTP.setRequestHeader "If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT" 'to prevent getting a cached response objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" 'need this line, got it from https://www.mrexcel.com/board/threads/vba-get-and-post-method.938123/ objHTTP.send (s) do1GET = objHTTP.responseText If InStr(do1GET, "stat=""ok""") > 0 Then Else Call MsgBox("The command to the Lime server failed, and returned the following:" & vbLf & do1GET, vbOKOnly) End End IfEnd Function
In all cases after upgrading and/or running the WMI fix (https://wyday.com/limelm/help/faq/#fix-broken-wmi) on their system - it would solve the issue.
https://airsdk.harman.com/download/51.2.1.7 fyi flex action script updated.
I tried to follow solution 2 from this post https://wyday.com/forum/t/2226/activating-the-same-product-with-different-keys-on-the-same-pcaccount/#post-11431 , but I can't find SetCustomActDataPath method in Java API.
update=%25file%25%25urlargs%25" rel="nofollow">https://xyz.com/folder/?update=%file%%urlargs% Folder structure:folder/ (Unprotected folder).....htaccess .....index.php.....update-files/ (Protected folder)..............htaccess ..............wyserver.wys............ someapp.3.to.4.wyu By accessing the first URL, the "index.php" retrieves the "wyserver.wys" without any permission.
Check with: spctl -a -v /whatever/file.app This is a handy free tool that I use to dig into signing/sandboxing issues: https://itunes.apple.com/us/app/rb-app-checker-lite/id519421117
The firewall must be configured to allow incoming / outgoing connection on the Port configured (this happens when you install the TurboFloat Server on Windows, see: https://wyday.com/limelm/help/turbofloat-server/#install ) On other operating systems you must handle the various firewalls yourself.
More info: https://wyday.com/limelm/help/vm-hypervisor-licensing/
>> "Also FYI, when you click "Show your posts" at https://wyday.com/forum/ucp.php you get the following error:" This is phpBB.
See: https://wyday.com/limelm/help/using-turboactivate-with-c-plus-plus/ Regarding when to do this checking, it depends on your DLL design.
https://wyday.com/limelm/help/trials/#extensions
Covered here: https://wyday.com/limelm/help/how-to-generate-product-keys-after-order/ >> "I am stuck trying to figure out why the SendPKeys is not working. 2 days wasted."
Provide all the information listed in this FAQ: https://wyday.com/limelm/help/faq/#useful-reports After you provide all of that information, next, you say the customer is activated.
I'm using the code shown here for 64 bits for windows :https://wyday.com/forum/t/3964/xojo-64-bit-activateextradata-raises-invalidargsexception/#post-20754Xojo 64 bit Activate(ExtraData) raises InvalidArgsException Everything was fine in Turbo 4.0.6.
Reproduction:Our Executable starts wyUpdate (via runtime.exec with call like this "[wyUpdate.exe, -updatepath="https://s3.eu-central-1.amazonaws.com/somePath", -startonerr="C:\path2App\App.exe"]") and stopps itself afterwards.The wyBuilder is configured to start "C:\path2App\App.exe" after having finished successfully.This has been working fine for nearly 2 years so far, if the App.exe has not been started with Admin-right.But if the App.exe has been started with admin-rights before the update starts, the newer version is not started anyhow at the end of the update-process.Even changing the start-options (Elevation) within wyBuilder does not have any effect!
We'll have a blog post about it over here once it's released: https://wyday.com/blog/
But now a potential customer gets linker errors and he asks for help, see >> https://www.geom.at/_downloads/errors.png The library, in case you want to check, is: >> [SNIP] I do not have the source code of the customer but in my understanding TA has boost already inside and the customer seems to link it a second time.
For rental license, I'm using the method you described in this post : https://wyday.com/forum/t/1775/settings-trial-days-to-zero-rental-license/#post-9298So using a feature called "rental_expires" and calling IsDateValid() to check if the product must be deactivated.