Search results

  1. orionmetrics

    ExeOutput not working with system hard drive

    Not sure if related at all, but noticed that exeoutput .exe programs won’t run correctly under visualization eg windows 7 - windows XP mode. The .exe won’t see the internal /data folder. Perhaps a similar issue if somekind of virtual drive - messy with the internal driver folder structure -...
  2. orionmetrics

    ExeOutput 2 is coming (finally)

    Sounds good - might have some problems with lack of a trident engine due to different exeoutput functions, but resolvable.
  3. orionmetrics

    Changing default folder used

    Just figured it out - you need to go to the build settings and select ‘Clone Project’ and make a duplicate project that way with new folder. Sorted. Note: there is a small bug in version 1.7 where when you go to select the new default homepage (and therefore folder) it by default only shows...
  4. orionmetrics

    Changing default folder used

    Hi I have an application which has a main source folder called /castconverter (with an internal index.php acting as home page), however the purpose of the application has changed, so I made a copy of the castconverter.exop and renamed it as cast-desk-optimiser.exop and also copied and renamed...
  5. orionmetrics

    End of maintence period - date format used

    Cheers - reason for asking is that American date formats tend to be different from British formats.
  6. orionmetrics

    End of maintence period - date format used

    Sorry if this sounds a daft question, as just related to customer renewal accounts, but what date format do you use for your end of maintenance period in accounts ? eg “Your maintenance period expires on: 2015-08-06” - does this mean it end’s on the 6th August 2015 or the 8th June 2015 ...
  7. orionmetrics

    ExeOutput 2.0 - A matter of weeks?

    Looks awesome - worth the wait.
  8. orionmetrics

    Recommendation for a dll compiler for exeoutput for php

    Solved it, and below is the hescript code I used. UserMain: function OnPubLoaded: Boolean; var DLLPath: String; begin // When the application is starting. // Set Result to True if you want to exit immediately without any warning. DLLPath := GetGlobalVar("HEPublicationPath", "")...
  9. orionmetrics

    Recommendation for a dll compiler for exeoutput for php

    Thanks, but unfortunately just cannot get it to work. The hescript is not seeing the .dll I have the .dll in the same folder / path as the main index.php, set to be virtualised… But when I run the application, it isn’t seeing the .dll. I will try setting the 2nd argument of...
  10. orionmetrics

    Dll works in a C test script, but having problems passing value back to php

    rofl… just found out I can do more or less exactly what my dll was doing with the simple PHP code… $istatus=0; if($hostname = gethostname()) { $ip=gethostbyname($hostname); if($ip!=$hostname) { $istatus=1; } } sets $istatus equal to 1 if a valid ip address is found, and on my pc returns an ip...
  11. orionmetrics

    Recommendation for a dll compiler for exeoutput for php

    Thanks for the reply and suggestion, but having problems trying to implement it. I have set UnpackVirtualResource(“ipaddress-dll.dll”) to unpack the .dll and return the virtual path, but please how do I then use that virtual path in the dll function declaration… eg function HardwareIP...
  12. orionmetrics

    Dll works in a C test script, but having problems passing value back to php

    Thought it might be because Result variable is not unsigned, so it might be the php side, so tried this instead. function HardwareIP: Cardinal; stdcall; external “ipaddress-dll.dll” name ‘CardAddress’; function TestDLL(void): String; begin Result := IntToStr(HardwareIP()); end; Using IntToStr...
  13. orionmetrics

    Dll works in a C test script, but having problems passing value back to php

    Just don’t know why it isn’t work… I have double checked my dll in another c program calling it, and def. returning a unsigned long integer value. Just tried this alternative hescript function: function HardwareIP: Cardinal; stdcall; external “ipaddress-dll.dll” name ‘CardAddress’; function...
  14. orionmetrics

    Dll works in a C test script, but having problems passing value back to php

    Very close to getting it working using… function HardwareIP: UnsignedLongint; stdcall; external “ipaddress-dll.dll” name ‘CardAddress’; function TestDLL(void): UnsignedLongint; begin Result := HardwareIP(); end; However Result is not been returned as an unsignedLongint - is there a way of...
  15. orionmetrics

    Dll works in a C test script, but having problems passing value back to php

    I have a simple dll which works in hescript if I have a procedure and simply display the value in a messagebox - simply returns an ip address in unsigned long integer format. However when I try to convert my hescript procedure into a function so it returns the long integer back to php it is...
  16. orionmetrics

    Recommendation for a dll compiler for exeoutput for php

    Got my dll close to working, but only if it is outside the application in the same path - ideally if possible want the dll compiled into the application. Is that possible ? However also seems to be a limitation on HEscript and functions - it cannot seem to return unsigned long integers ? Thanks…
  17. orionmetrics

    Recommendation for a dll compiler for exeoutput for php

    Hi, I know this is probably outside the normal discussion here, but was wondering if someone could give a novice (haven’t programmed in C/C++ since about 2005) C++ programmer some recommendations on a compiler (ideally opensource) for compiling dlls for exeoutput for php to use (not as php...
  18. orionmetrics

    Passing executables to other people

    Cheers… thanks for the information. Sorry the error information to work with is almost no existent.
  19. orionmetrics

    Header redirection

    Hi, just curious to know if you have any blank lines in your code - or characters before the first <?php tag, also I would add a exit(); just after the header(); code. Note: the location: www.example.com must be in " or ’ quotes. eg {start of file} <?php if(x==0) { header("location...
Back
Top