Coder Social home page Coder Social logo

Closing sessions about gulp-connect-php HOT 10 OPEN

micahblu avatar micahblu commented on August 29, 2024
Closing sessions

from gulp-connect-php.

Comments (10)

micahblu avatar micahblu commented on August 29, 2024 1

Not at all, let's go for it

from gulp-connect-php.

micahblu avatar micahblu commented on August 29, 2024

Sorry for the late reply on this. Can you please provide me some environment specifics? What os, php version etc.

from gulp-connect-php.

vieko avatar vieko commented on August 29, 2024

Hey there, I just ran into this issue on OSX Sierra with PHP 5.6/7.0/7.1 – the php process simply does not terminate when I stop the gulp task from running. Managed to kill the process by locating it first with lsof -i tcp:8000 and then killing the PID. Any thoughts? Thanks in advance.

EDIT: sometimes things will work as expected. Managed to reproduce a few times however.

from gulp-connect-php.

grmartin avatar grmartin commented on August 29, 2024

@vieko I am presently in the process of reworking portions of this, including its dependence on lsof. The current status of where i am in this is available here: #41

You are welcome (encouraged) to test that out and see how it goes.

Please direct any bugs against 1.0.0 WIP against the other repo (https://github.com/grmartin/gulp-connect-php). Once it is merged in to this one, bug tracking will move here, i simply do not wish to muddy the waters in this repo until after that branch is mainlined.

from gulp-connect-php.

grmartin avatar grmartin commented on August 29, 2024

1.0.0 is now in the primary master branch of the original repository. See: http://github.com/micahblu/gulp-connect-php.

from gulp-connect-php.

grmartin avatar grmartin commented on August 29, 2024

This ticket will close on or near 17 May 2017 unless updated.

from gulp-connect-php.

dylanspurgin avatar dylanspurgin commented on August 29, 2024

I am also seeing the behavior where the server does not stop when the gulp process is ended (MacOS). My gulp task looks like this:

gulp.task('connect', ['browsersync'], function () {
    connect.server({ base: config.wordpress.dest, port: 8001, debug: true, open: false});
});

from gulp-connect-php.

grmartin avatar grmartin commented on August 29, 2024

So, Gulp 3 uses orchestrator. Presently our library doesn't implement any binding to Gulp's events. That would be why its not 'automatically' stopping, there is a closeServer call.

For now i would suggest adding a handler yourself... Should be something much like this (based on @dylanspurgin's code in his comment):

gulp.task('connect', ['browsersync'], function () {
    connect.server({ base: config.wordpress.dest, port: 8001, debug: true, open: false}, function() {
    	gulp.on('stop', function _gulp_php_stopper() {
    		connect.closeServer();
    	});
    });
});

I will however add this to my TODO list.

from gulp-connect-php.

grmartin avatar grmartin commented on August 29, 2024

@micahblu, I can add this but I'd like to make it so it can be opted out from via a configure parameter... any issues with that conceptually?

from gulp-connect-php.

Jikstra avatar Jikstra commented on August 29, 2024

So, Gulp 3 uses orchestrator. Presently our library doesn't implement any binding to Gulp's events. That would be why its not 'automatically' stopping, there is a closeServer call.

For now i would suggest adding a handler yourself... Should be something much like this (based on @dylanspurgin's code in his comment):

gulp.task('connect', ['browsersync'], function () {
   connect.server({ base: config.wordpress.dest, port: 8001, debug: true, open: false}, function() {
   	gulp.on('stop', function _gulp_php_stopper() {
   		connect.closeServer();
   	});
   });
});

I will however add this to my TODO list.

Not sure why, but for me the gulp stop event gets fired way to early. I replaced it with following code and seems to work, even if it also feels hacky.

      process.on('exit', () => {
          console.log('Shutting down php server');
          gulpConnectPhp.closeServer()
      });

from gulp-connect-php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.