-
Notifications
You must be signed in to change notification settings - Fork 6
Description
this is my main.js file
if I install php in my system it's working and if I uninstall it's not working
it should run the php from php directory of the app but it's throwing error server is not started
const electron = require('electron')
const path = require('path')
const BrowserWindow = electron.BrowserWindow
const app = electron.app
app.on('ready', () => {
createWindow()
})
var phpServer = require('php-server-manager');
const PHPServer = require('php-server-manager');
const port = 8001, host = '127.0.0.1';
const serverUrl = http://${host}:${port};
const server = new PHPServer({
php: ${__dirname}/php,
stdio: 'inherit',
port: 8001,
directory: ${__dirname}/www/public,
directives: {
display_errors: 1,
expose_php: 1
},
config: ${__dirname}/php/php.ini,
script: ${__dirname}/www/server.php,
});
let mainWindow
function createWindow() {
// Create a PHP Server
server.run();
// phpServer.createServer({
// port: port,
// hostname: host,
// base: ${__dirname}/www/public,
// keepalive: false,
// open: false,
// bin: ${__dirname}/php/php.exe,
// router: __dirname + '/www/server.php'
// });
// Create the browser window.
const {
width,
height
} = electron.screen.getPrimaryDisplay().workAreaSize
mainWindow = new BrowserWindow({
width: width,
height: height,
show: false,
autoHideMenuBar: true
})
mainWindow.loadURL(serverUrl)
mainWindow.webContents.once('dom-ready', function () {
mainWindow.show()
mainWindow.maximize();
// mainWindow.webContents.openDevTools()
});
// Emitted when the window is closed.
mainWindow.on('closed', function () {
server.close();
mainWindow = null;
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
//app.on('ready', createWindow) // <== this is extra so commented, enabling this can show 2 windows..
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
// PHP SERVER QUIT
server.close();
app.quit();
}
})
app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})