Skip to main content

Tiny PHP "standalone” server (or framework) for local debug without Apache/Nginx/Lighttpd/etc



There's manage.py runserver in Django or ruby script/server in Ruby on Rails — those familiar with one of those frameworks should already get the idea what I'm looking for. They run tiny "standalone" web server, which is perfectly enough to debug the application locally, without any need for other software (Apache/Nginx/Lighttpd/etc).





I wonder is there any PHP implementation of such tool, or, maybe, some PHP framework has such feature? Surely, I can pack pre-built pre-configured static nginx executable, but this would not be pretty, and certainly not cross-platform. Having standalone debug webserver written in PHP itself will make the package self-contained.





I.e. I'd like to type something like php tools/runserver.php , point browser to http://localhost:8000/ and see the site up and running, ready to debug.





My Google-fu has failed me, but I strongly suspect that there is such project already.



Source: Tips4all

Comments

  1. Not sure if this is what you're after, though it's actually more like a Tomcat for PHP, and I think (though I'm not sure) it still requires a webserver

    Also, nanoweb is a web server written entirely in PHP

    ReplyDelete
  2. Sorry for reviving an old thread.

    If you just want to debug your application. As of PHP 5.4 there's a Built-in web server.

    http://docs.php.net/manual/en/features.commandline.webserver.php

    ReplyDelete
  3. Found it: QuickPHP!



    Check these out:


    Nanoweb
    phpstack
    MicahServer

    ReplyDelete
  4. May worth mentioning:


    https://github.com/dhotson/kelpie
    https://github.com/indeyets/appserver-in-php (requires C extension)


    There's also an proporsal to have server built-in into PHP CLI binary: http://wiki.php.net/rfc/builtinwebserver

    (Source: http://news.ycombinator.com/item?id=2281724)

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex