Quantcast
Channel: ExeOutput for PHP - G.D.G. Software Forum
Viewing all 1024 articles
Browse latest View live

Chromium ExeOutput 2


Close Window not working

$
0
0

@ukmas78 wrote:

The close window is not responding in the ExeOutput 2 beta is not responding, application has to be ended in windows to close it.

Posts: 7

Participants: 4

Read full topic

Skin Editor not include

Remote server database

$
0
0

@kakkuk wrote:

hi, i created php applicaion and i installed mysql to server then i connected with ip. it is working localhost well. but after copy to exeoutput not working

Posts: 2

Participants: 2

Read full topic

BIN2HEX not work

$
0
0

@kakkuk wrote:

hi, i created Token with BIN2HEX funtion, it is now work on exeoutput, can you help me how can i solve this please

Posts: 3

Participants: 2

Read full topic

Third Party Protection Softwarte

$
0
0

@ukmas78 wrote:

We are getting this error when we try to protect the .exe made from exeoutput for PHP

error: "Has an Incorrect PE format"

We also notice that all of the third party software we have tried can not protect ExeOutput for PHP 1.7 and 2.0.

Please what is it that can be done to fix this and can you recommend any third-party we can usefor protect. Thanks

Posts: 3

Participants: 2

Read full topic

Money Format not work

$
0
0

@kakkuk wrote:

i used money format many times in my code

$number = 1234.56;
setlocale(LC_MONETARY,"en_US");
echo money_format("%.2n", $number);

but after created exe file money format function not work

Posts: 1

Participants: 1

Read full topic

Can't add silent switches to external exe-file

$
0
0

@TryWare90Days wrote:

Hi

I consider to purchace ExeOutput for PHP, so I downloaded the trial version 1.6.1.0

I am using Microsoft Word 2003 32-bit on a 64-bit computer, and I can create a link to an external exe-file, and it works fine, but ...

I need to send silent switches to the external exe-file, but I get an error about missing website when I add the switch

It doesn't help if I try to add " on both parts of the filename and switch

ExeOutput Viewer Error

The following error has occurred.

Please press Back to return to the previous page or contact the author of this program for further information.

File not found: %22c:\temp\test.exe%20testing001%22

Posts: 1

Participants: 1

Read full topic


About mysql or mariadb and postgresql

$
0
0

@m4aasim wrote:

Any possibilities for these databases to be included in version 2 or have to go the server2go way as described in ver 1.7

Posts: 1

Participants: 1

Read full topic

Curl funtion error

$
0
0

@kakkuk wrote:

this is my code, it is work localhost or any ftp but exeoutput not work

function fileUploader($file_tmp, $file_type, $file_name) {
global $MAIN_URL;
global $newFileName;

$ch = curl_init();
$cfile = new CURLFile($file_tmp, $file_type, $file_name);
$data = array('filename' => $newFileName, 'myfile' => $cfile);

curl_setopt($ch, CURLOPT_URL, $MAIN_URL.'file_upload.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
curl_close ($ch);

}

first i tryed upload local file to server but not work, and i recreated my script like this and also this is not work

Posts: 2

Participants: 2

Read full topic

Query result is not updated

$
0
0

@brenno wrote:

Hello, in my program is something strange going on. In the compiled code, if I do a query on a database from a typed filter, the first filter it returns normal results, but when I repeat the filter, even if some information has been updated in the database, it returns me the result of the previous filter as the result of the first filter had been in memory, and how I am using the same parameter for filtering, it seems to me that they are bringing this result in memory. Use the .get and $ jQuery $ .load to loading the content.

Att.

Brenno Ferreira

Posts: 5

Participants: 2

Read full topic

Serial key for ExeOutput for PHP

$
0
0

@kepler wrote:

Good afternoon,

I've just bought ExeOutput for PHP. Can please someone tell me the best procedures to generate serial keys for different users?

I realized that the program can retrieve the PC id of the user. What's the best form of using this to achieve licence protected keys?

Kind regards,

Kepler

Posts: 2

Participants: 2

Read full topic

Calling DLL doubt

$
0
0

@kepler wrote:

Good evening,

I'm going through the DLL call convention in HEScript. Before I do 2 tests, I would like to know if possible:

1) May the DLL be at the program root?

2) Can the DLL read a binary file packed with the ExeOutup?

Regards,

Kepler

Posts: 3

Participants: 2

Read full topic

DLL call... almost there

$
0
0

@kepler wrote:

Good afternoon,

Finally, I'm able to be sure that my DLL is being called - the problem, I think, was the decorated names instead of undecorated.

Now, I face another problem: arrays. One of the parameters passed to my function (byref) is an array. Here's the prototype of the function:

function calc(tjd : double;
i : Integer;
flag : Longint;
var xx : double;
var sErr : String
): Longint; cdecl; external "mydll.dll" name 'calc';

I'm trying to call it like:

function TestDLL(void): Longint;
var
S: String;
xxy: array of double;
begin
Result := calc2(2451545,1,1,xxy[0],S);
end;

I get the message that the variable is not an array - I think it refers to xxy. I tryed to define xxy like

xxy: array[0..5] of Double

but I get a syntax error in the []. Tryed [6],[0.5], etc...

What am I missing here?...

Kind regards,

Kepler

Posts: 1

Participants: 1

Read full topic

Custom User Agent String

$
0
0

@oldteacher wrote:

Greetings!

Is there any way to use/send a Custom User Agent String when building app?

I need to send my own custom user agent string for access purposes.

If not in version 1.7, maybe V2 Beta version?

Thanks in advance for advice.

Posts: 1

Participants: 1

Read full topic


DLL unpack - not found

$
0
0

@kepler wrote:

Hi,

I found out that HEScript does not handle arrays in DLL calls - I've changed the code of the DLL.

Still, I would like to ask the correct procedure to include the DLL in the ExeOutput application and unpack it for use in the returning exe.

My problem is that in the main folder the exe runs - since the DLL is there.

But if I change the folder, the exe doesn't find the DLL (maybe its not being packed?).

I set the DLL to be unpacked virtually at the beginning and enabled virtualization in "X:\Data"

Regards,

Kepler

Posts: 1

Participants: 1

Read full topic

Enable access outside .exe

$
0
0

@inkeliz wrote:

Hi,

How I can set the ExeOutput to use the LAN IP?

With it:
getHostByName(getHostName());

I can get the LAN IP.
But I can connect with it.

To compare:
With XAMPP (example) I can connect to the LAN IP (192.168.X.XXX) without any problem.

I want to know if is possible create a webserver using the LAN IP.
That is:

  • index.php

In ExeOutput I can access and using the http://192.168.X.XXX (or 192.168.X.XXX:9999) can acess the index.php too.

This will allow another device (smartphone) and another PC access to the same EXE file, without download it.
Is possible create this webserver?

Posts: 4

Participants: 2

Read full topic

Localhost not running

$
0
0

@hillolvai wrote:

hi there, I'm trying to compile a website for offline standalone use. It has some ajax dependencies, so far we all know ajax doesn't work without any kinds of virtual or live server. so I used localhost as server while developing the project. after trying to compile my site with your app, it seems compiled exe only shows my site after execution if the wamp server is active. Otherwise it shows Error -102 when loading url http://localhost/project/
What can I do now?
Please respond.

Posts: 1

Participants: 1

Read full topic

Question about open url in external browser

$
0
0

@sequel wrote:

Hi, I use ExeOutput v1.7, trident engine and in my app i have several link to open url in external browser, this is the common syntax

the link is effectively opened in my predefined external browser but when i click to the link for a moment is opened a blank popup and only after it open the url in my browser. Is it possibile to avoid the popup?
tnx in advance

Posts: 1

Participants: 1

Read full topic

V2 Beta 3 Link Targets

$
0
0

@oldteacher wrote:

Has link targets changed for V2 Beta 3?

Using same as I have always in V1.7 (chromium engine) and what is shown in online docs:

<a href="heexternal://google.com">Google</a>

Also tried standard link:

<a href="http://google.com" target="_heexternal">Google</a>

Get popup inside exe telling me:

Unable to execute the requested file.

Thanks

Posts: 3

Participants: 2

Read full topic

Viewing all 1024 articles
Browse latest View live