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

Comodo code signing warning

$
0
0

@varosi wrote:

I tried to sign my consol application with comodo certificate. When I compile the application there is a warning massage in the log.
Closing application file and cleaning up memory...
Signing the application .exe file...
Dual SHA1-SHA256 signatures used
- SHA1:
GSignCode 2.1 -- simple code signing utility
Copyright G.D.G. Software 2011-2016. All rights reserved.
...
File successfully signed.
- SHA256:
GSignCode 2.1 -- simple code signing utility
Copyright G.D.G. Software 2011-2016. All rights reserved.
...
SIGNING ERROR:
Signing Error - Code 0x80090028
Warning: code signing failed, an error occurred.

When i checked the file certificate there is only SHA1 certificate.
If I use only SHA1 or SHA256 not dual certificate there isn't any certificate on the exe.
Could somebody help?

Posts: 4

Participants: 2

Read full topic


Ajax onprogress dont work

$
0
0

@Esteban wrote:

Sorry for my bad English. I need help, this is my code. I have 2 files: 1.htm, 1.php

1.htm call 1.php in ajax:

1.htm:

<!DOCTYPE>
<html>
<head>
<title>Test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
</head>
<body>
<div id='cont1'></div>

<script type="text/javascript">
        var last_r_len = false;
        $.ajax('1.php', {
            xhrFields: {
                onprogress: function(e)
                {
                    var this_r, r = e.currentTarget.response;
                    if(last_r_len === false)
                    {
                        this_r = r;
                        last_r_len = r.length;
                    }
                    else
                    {
                        this_r = r.substring(last_r_len);
                        last_r_len = r.length;
                    }

                    $("#cont1").text(this_r);
                }
            }
        })
        .done(function(data)
        {
            console.log('Complete r = ' + data);
        })
        .fail(function(data)
        {
            console.log('Error: ', data);
        });


</script>


    </body>
</html>

1.php

<?php
$i=0;
while ($i <= 25) {
    echo $i++;
    flush();
    ob_flush();
    sleep(1);
}
?>

The program output every second "streaming" 1 2 3 ...etc. Is a test for a program more complex.
This code work in all browsers, chrome, firefox, etc. In ExeOutput i check "developer tools" in components, rendering engine for investigated this but i need help. Thank you

Posts: 1

Participants: 1

Read full topic

Php_printer.dll : printer_list - undefined function

$
0
0

@gabpnr wrote:

Hello,

is there a problem with the php extension php_printer.dll ?
i put the php_printer.dll v5.6.30 in PHPRuntime56\ext and added it in my project (i tried by adding in and out the exe)
In ExeOutput > PHP settings > Main settings, i selected version 5.6

Everything looks OK during compilation :
...
Adding PHP runtime components
- Php extensions
o php_printer.dll compiled
- php.ini
- PHP ExeOutput extension
- PHP opcache extension
- ExeOutput internal extension

File compression done.
Number of files: 1068
Total uncompressed size: 28186450 byte(s)
Total compressed size: 6993139 byte(s)
Compression ratio: 76%

But in my app i can not use the php fonction printer_list() (error : undefined function).

The same code works in my WAMP and LAMP environnements..

Thank's,
Gabriel P.

Posts: 1

Participants: 1

Read full topic

An error occurred while loading the PHP runtime

$
0
0

@oldteacher wrote:

I have never seen or experienced this error:

An error occurred while loading the PHP runtime: in most cases, it is the due to lack of a required component on your computer. To run this application, you must first install the component.

Searching the forum produced no help.

Users computer is Windows 10 Home

App is using PHP 7.

Was under the impression that all required PHP runtimes were complied into the add?

How do I solve this? Now have two users with same issue.

Thanks.

Posts: 1

Participants: 1

Read full topic

Wordpress Demo and MySQL

$
0
0

@davebaldwin wrote:

I have the Wordpress Demo installed on two machines. It works fine on one and the database connection fails on the second. The second machine has MySQL already installed on it and it appears that there is a conflict. Does anyone know if just changing the ports for the Wordpress Demo is enough to resolve the problem?

Posts: 1

Participants: 1

Read full topic

Using curl with PHP 7 [SOLVED]

$
0
0

@oldteacher wrote:

Been fighting an curl issue with php7 and after few days decided to try php5.6. My app started working without any issues. Switch back to php7 and issue reappears.

After many online searches ended up on good ole stackoverflow. Many threads later see talk of wrong versions of libssh2.dll to libeay32.dll and ssleay32.dll for php7 can cause php7 curl issues.

So, before I pull out the rest of my hair, are we certain that libssh2.dll to libeay32.dll and ssleay32.dll are correct versions?

Any input much appreciated.

Thanks!

Posts: 11

Participants: 3

Read full topic

Sqlsrv for PHP 7.1 - SOLVED

$
0
0

@davebaldwin wrote:

It appears that the newest sqlsrv driver only supports PHP 7.0 and not 7.1. Maybe you should add PHP 7.0 to ExeOutput. After you get the curl problem fixed

Posts: 4

Participants: 2

Read full topic

ExeOutput web site


How to buy this product

Fast forwad and rewind problem in webm video

$
0
0

@drizztuna wrote:

Hi,

The application only allows you to play videos in webm format. However, it is not possible to forward / rewind in webm videos. I tried 4-5 different video plugins and the result is the same in all.

What do I need to do in order to play webm videos smoothly.

NOTE: I am using the last purchased version of the program.

thanks...

Posts: 2

Participants: 1

Read full topic

Open a external File, a TXT

$
0
0

@gonzalesc wrote:

Hi.

I need open a document in my local computer using my app.

I tried:

<a target="_heopenit" href="D:\Dropbox\work example\source\uploads\document.txt">Open Documentation</a>

<a target="_heopenit" href="heopenit:D:\Dropbox\work example\source\uploads\document.txt">Open Documentation</a>

In the first code, when I click it doesn’t nothing.
In the second code, when I click it open a new windows but empty.

Please could help with it?

Posts: 3

Participants: 2

Read full topic

Catch the complete PATH using OpenFileDialog()

$
0
0

@gonzalesc wrote:

Hi.

I followed this guide: http://www.exeoutput.com/help/choosingfilesupload

I put the code in UserMain:

function OpenDlgFile: String;
begin
Result := OpenFileDialog(“Select a File to open”, “.”, “.”, “All files (.)|.”, “”);
end;

And in my view, put the link:

<input type="text" id="path_doc" name="path_doc" value="" /> <a href="hescript://UserMain.OpenDlgFile">Browser</a>

Then, when click in the link a file browser opens. is cool !

But I need save the path that I selected in the input text called path_doc.

Could you give me a clue how to do it please?

Posts: 4

Participants: 2

Read full topic

When I run it manually with cmd mysql gives an error

$
0
0

@drizztuna wrote:

hi,

If the “Microsof Visual C++ 2012 Redistributable x86” software is not installed in the operating systems where the generated application is running, it will fail.

I tried to solve the problem by writing a simple batch. Batch works like this:

  • first installing “Microsof Visual C++ 2012 Redistributable x86” in silent mode.
  • At the end of the installation, the project application which is produced via cmd is running.

But MySQL gives an error.

What is the difference between running the generated application by the user and running it via cmd?

How can I solve this problem?

Posts: 2

Participants: 2

Read full topic

Centering text on toolbars

$
0
0

@oldteacher wrote:

Any time I create new buttons for the toolbar, cannot seem to find how to align button text center? A single word does align center - but multiple words that wrap do not, they always align left.

Have been through the settings on UI Editor many times but cannot find how to center text. Have searched google and even stackoverflow with no results.

Thanks!

Posts: 1

Participants: 1

Read full topic

Cannot start MySQL Server

$
0
0

@venkyvj wrote:

i am getting an error after executing the exe

cannot start mysql server

but it works fine if i run it inside exeoutput

and i am using demo version

please help

Posts: 1

Participants: 1

Read full topic


Autocomplete or remember form values

$
0
0

@oldteacher wrote:

I have tried so many different methods to force HTML5 style forms to remember last entries (or autocomplete), dizzy and confused:) Need a glass of wine…

Wondering if anyone know of way to use this feature with EXEOut?

Standard HTML5 autocomplete (like https://www.w3schools.com/tags/att_input_autocomplete.asp) does not work.

Ideally would like to have a checkbox asking user if user wish to have values remembered, but simply just remembering is better than nothing.

Thanks in advance for any input.

Posts: 1

Participants: 1

Read full topic

ExeOutput 2.1 including *.bak files

$
0
0

@davebaldwin wrote:

It appears that ExeOutput 2.1 is including and compiling *.bak files. That’s what it shows in the ‘log’ page. Version 1.7 doesn’t do that. ??

Posts: 1

Participants: 1

Read full topic

Option for user to clear cache folder

$
0
0

@oldteacher wrote:

When setting the storage location there is a lot of data written, cache folder included.

Pretty sure there is a way to clear the cache folder upon exit, but have not used that function. Rather not if possible…

What I am looking for is allow the user to clear the cache (maybe using a button). Sometimes our software pulls in updates from the net and clearing the cache folder ensure the updates are shown on next restart of the software.

Could you please provide me example code to use with a button if possible?

Much appreciated.

Posts: 3

Participants: 2

Read full topic

ExeOutput for PHP website inc JSON external dir

$
0
0

@Greggy-php wrote:

So basically i have a website standar stuff, php index file , some js files , css … and a JSON folder full of json files that i update every week. I have used the software to try and compile the website into an exe but i need to somehow get the compiled result to have an external json folder so i can update the folder every now and again. it doesnt need to be in real time just on init. Can anyone explain how I am to do this, I am totally stuck.

Cheers,
Greg.

Posts: 2

Participants: 1

Read full topic

Changing InternalBrowser for ExeOutput

$
0
0

@Toms wrote:

I 'm developing desktop App using ExeOutput for php.
But json file capacity is too big .
its internal browser ,chroumium does not run .
So i 'm going to change chroumium to firefox browser.
but i can’t find this option.
Please help me.
Sencerily

Posts: 1

Participants: 1

Read full topic

Viewing all 1024 articles
Browse latest View live


Latest Images