amuck-landowner

Search results

  1. A

    rsync - swapping the direction (client/server) - push/pull

    I've had no issues with writing scripts on the backup server to run an SSH command remotely (say, mysqldump), prior to running the rsync command. You can even check return status (ssh exits with the exit status of the remote command or with 255 if an error occurred), to ensure the mysqldump ran...
  2. A

    Anyone using Zend OpCache? Hitting limits problem

    Check your system logs, there may be more pertinent information there.
  3. A

    CI & Deployment System

    We've been using Phing (two primary targets defined for a quick dev 'build' and a full build on commit through the CI system) along with Jenkins (only build step is running phing, post-build publish docs, analyze code coverage, etc.), and it has worked fairly well. Jenkins allows builds to be...
  4. A

    Anyone using Laravel framework?

    Having dealt with CodeIgniter while doing some consulting, I'd take Laravel any day. Some of the things Laravel does that CodeIgniter doesn't: Integrates with Composer off-the-bat to allow using third party libraries easily. Granted, it's easy to add this behavior to CodeIgniter. Encourage the...
  5. A

    How do you upload your files to your webserver?

    hg update through a port forwarded SSH session, although I've been working on a solution similar to Wintereise's.
  6. A

    Docker 0.7 released

    Had some issues upgrading this afternoon, looks like I'm not the only one: https://github.com/dotcloud/docker/issues/2895 ; anyone using Docker in production may want to wait a while for things to get sorted.
  7. A

    Good resources for learning PHP?

    Double posting here, but this warrants noting: w3schools is bad, out of date, and only serves as an example for individuals to use against PHP in citing examples. No tutorial site should ever include examples that suffer from SQL injection (seen here).
  8. A

    Good resources for learning PHP?

    Aldryic, I don't think Abdussamad is contending that PHP is the more efficient or better technology. It caught on because it could be integrated into HTML easier than most languages (had mod_python continued development, who knows what would have happened), and since then the developers have...
  9. A

    What vps do you have and what are you doing with them?

    4 VPSes in active use: Repo Server / IRC Client Jenkins Build Server Web Server / Database Server Backup Server
  10. A

    ServerPilot - new hosting control panel for hosting PHP sites on VPSes

    Do you have a public list of IPs that ServerPilot is expected to connect from, for those who have a whitelist policy for sensitive ports?
  11. A

    Providers - Let's talk about panels.

    Are there any panels in open development using unit testing?
  12. A

    Good resources for learning PHP?

    Try browsing through http://www.phptherightway.com/ for a decent overview of how to approach the language. PHP is like a straight razor. With time and practice, it can produce a beautiful product. But done the wrong way, terrible things can happen.
  13. A

    Way to see how many visitors on my site from SSH?

    If you have access, the Apache/Nginx logs are an accurate indicator of traffic to a particular website.
  14. A

    Nginx SubDomain proxy

    If hosted on the same server: location ^~ /stats {     proxy_set_header Host stats.gaming-servers.net;     proxy_set_header X-Real-IP $remote_addr;     proxy_pass http://127.0.0.1$request_uri; } If not hosted on the same server, you'll need to make sure nginx is using a resolver, and then you...
Top
amuck-landowner