php Programming Glossary: servers
PHP: running scheduled jobs (cron jobs) http://stackoverflow.com/questions/120228/php-running-scheduled-jobs-cron-jobs
How to validate an email address in PHP [duplicate] http://stackoverflow.com/questions/12026842/how-to-validate-an-email-address-in-php function. Even the built in PHP functions email clients or servers don't get it right. Still in most cases filter_var is the best.. rfc6531 allows unicode characters although many clients servers don't accept it Note that filter_var is as already stated only..
Loading .sql files from within PHP http://stackoverflow.com/questions/147821/loading-sql-files-from-within-php who allows people to install the application on their own servers. Shared hosting especially doesn't allow you to use SQL like..
PHP Session data not being saved http://stackoverflow.com/questions/155920/php-session-data-not-being-saved all the helpful info. It turns out that my host changed servers and started using a different session save path other than var..
Mechanisms for tracking DB schema changes [closed] http://stackoverflow.com/questions/1607/mechanisms-for-tracking-db-schema-changes a solution that allows us to work efficiently across servers with different environments while continuing to use Subversion.. which code and DB updates are pushed around to various servers. Many popular software packages include auto update scripts..
Are PHP short tags acceptable to use? http://stackoverflow.com/questions/200640/are-php-short-tags-acceptable-to-use and generally not recommended . In my experience most servers do have short tags enabled. Typing is far more convenient than..
Setting up a deployment / build / CI cycle for PHP projects http://stackoverflow.com/questions/2180460/setting-up-a-deployment-build-ci-cycle-for-php-projects only ever used linux as base for the above mentioned build servers CC.net ran on mono but they should all according to the docs.. instructions are available for all major application servers Update Kohsuke Kawaguchi has constructed a windows service installer..
UTF-8 all the way through http://stackoverflow.com/questions/279170/utf-8-all-the-way-through my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO 8859 1...
How do I remove  from the beginning of a file? http://stackoverflow.com/questions/3255993/how-do-i-remove-i-from-the-beginning-of-a-file been shifting the files around to different linux windows servers via ftp and rsync with a range of text editors. I don't really..
Is there a static code analyzer [like Lint] for PHP files? [closed] http://stackoverflow.com/questions/378959/is-there-a-static-code-analyzer-like-lint-for-php-files to xdebug but lighter making it suitable for production servers. The tool includes a PHP based interface. share improve this..
Why would one omit the close tag? http://stackoverflow.com/questions/4410704/why-would-one-omit-the-close-tag may have output buffering on the actual production servers you will be deploying your code on are far more important than..
Session lost when switching from HTTP to HTTPS in PHP http://stackoverflow.com/questions/441496/session-lost-when-switching-from-http-to-https-in-php 'It did not work.' For this to work the HTTP and HTTPS servers must use the same session data storage substrate i.e. for the..
MySQL and NoSQL: Help me to choose the right one http://stackoverflow.com/questions/4419499/mysql-and-nosql-help-me-to-choose-the-right-one core The idea was to simply split the databases among the servers but with the problem explained above that is still not enought... is still not enought. If I install cassandra on these 10 servers by supposing I find the time to make it works as it is supposed..
How to check if an email address exists without sending an email? http://stackoverflow.com/questions/565504/how-to-check-if-an-email-address-exists-without-sending-an-email connect to the server and issue a VRFY command. Very few servers support this command but it is intended for exactly this. If.. like this to prevent enumeration of their users. Other servers cannot verify the user and have to accept the message regardless...
Convert a PHP script into a stand-alone windows executable http://stackoverflow.com/questions/9046675/convert-a-php-script-into-a-stand-alone-windows-executable library . It's also good for making stand alone PHP Socket servers clients using the php_sockets.dll extension . It's NOT really..
|