Next week I'm speaking at the PHPNW User Group in Manchester on Tuesday Evening, 4th May - full details of the event are on upcoming.org. The talk isn't directly about PHP though; I'll be giving my "Open Source Your Career" talk, discussing how contributing to the community can really help your professional rise. I'll be giving the this talk at the TEK-X conference in Chicago a few weeks later as well, hope to see you at either one event or the other!
Hi Lorna Jane,
Thanks for all this – the info on PHP and Soap on the Net is a total mess. Some choosing to to use nusoap.php – which now doesnt even exist anymore. Great work using this method I was up and running very quickly.
However – this method only shows a call passing one paramet [...]
Thanks so much to everyone that has dropped in and said that this tip is working for them – I had to refer back to this myself the other day to remind me how to get around the FTP prompt!
This issue seems to happen when you move a DB from one machine to another as I did. The procedure you describe above should be put into MySQL documentation. You should put in a bug report to the MySQL people as their documentation needs to updated. And yes the PASSWORD parameter needs to be re [...]
This is a convenient way to upgrade, and is certainly a good thing for development / testing environments. On a busy site there might be a slim risk this technique could be problematic. Although the file system is updated in an atomic transaction, a web browser could still read from both the [...]
Nice to see a post about this. :-) 100% of our deploys are done using symlinks.
We copy our releases into revision-specific folders (which are rev123, rev124, etc.).
Deploy is done using:
cd /software-revisions-folder
ln -sf rev124 current
To revert: ln -sf rev123 current
Thi [...]