Environment for running HTML and PHP outside the Browser

-1

Some years ago I found software that provided an environment for running HTML + PHP + Javascript applications outside the browser. For example, it was possible to develop an application in these languages (I supported, in addition to PHP, Ruby and Python, if I'm not mistaken) and executed as if it were some Windows program.

It happens that I need this software, but I can not find it anymore because I can not remember the name of the project.

Would anyone know the name of this application or another that does the same thing?

    
asked by anonymous 26.07.2015 / 01:28

1 answer

0

I'm pretty sure this is referring to link

I think it's not completely standalone, requires either Chrome or Internet Explorer shipped:

How to create your first application

  • Download PHP Desktop (Chrome or Internet Explorer)
  • Create a folder named meuaplicativo
  • Extract the contents of PHP Desktop into this folder, it should look like this:

  • Openphpdesktop-chrome.exeorphpdesktop-msie.exe(dependsontheversionyouinstalled),itwillopenascreenlikethis:

  • Todisabletheconsolescreen,youneedtofindsettings.jsonandchangeshow_consoletofalse:

    "debugging": {
        "show_console": false,
        "subprocess_show_console": false,
        "log_level": "DEBUG4",
        "log_file": "debug.log"
    }
    

    To change the application, change the files inside the www folder.

    How it works:

    It incorporates all the services your application may need before running. The main elements are the web server ( Mongoose ), PHP and the Sqlite database. It incorporates a browser (actually Chrome or Internet Explorer):

      

    Note:Ialsofoundthis link , I do not know if they are the same, but the first link is most up to date.

        
    04.12.2016 / 04:26