Categories
guides

WP-CLI PHP Version

Issue phpinfo() via browser reports a different version of PHP than wp —info or php -v reports in cli. Reason The CLI version of PHP is found via the $PATH variable, where as the browser version is being found by Apache config. To change the CLI version, I needed to update my $PATH to find […]

Categories
guides

PHP Upload Limit Directives php.ini

If you’re having an issue with uploading via PHP, and want to adjust the PHP configuration limits in the .ini file, check the following directives: memory_limit upload_max_filesize post_max_size

Categories
guides

Manually Installing Apache/MySQL/PHP on Windows (DEV ONLY)

For Development Only I’m not a security expert, but I try to be security conscious. This guide was created for the purpose of local development on my own computer, not to host any site that any other computer would connect to. There was no security precautions taken, and this should not be presumed to be […]