Installation Issue WordPress locally – The file ‘wp-config.php’ already exists

I have the issue with installation WordPress locally on my computer, XAMPP environment. In PHPMyAdmin I created an empty database, later I will import database that I downloaded from the live server, and other files and folders also. Apache and MySql modules are started correctly and when I type localhost in my Chrome browser, I … Read more

PHP – SSL certificate error: unable to get local issuer certificate

I’m running PHP Version 5.6.3 as part of XAMPP on Windows 7. When I try to use the Mandrill API, I’m getting the following error: Uncaught exception ‘Mandrill_HttpError’ with message ‘API call to messages/send-template failed: SSL certificate problem: unable to get local issuer certificate’ I already tried everything I read on StackOverflow, including adding the … Read more

Using the Parcel build tool with WordPress

I’ve been looking into build tools lately, specifically stuff that allows PostCSS, and would therefore enable to create a build process that among other things would automatically autoprefix, minify and concatenate my WordPress site. It seems that one of the more current tools for this purpose is Parcel, which also boasts a zero-configuration file approach … Read more

PHP Warning: POST Content-Length of 8978294 bytes exceeds the limit of 8388608 bytes in Unknown on line 0

I am getting this error when trying to upload an import on WordPress on my XAMPP local dev environment: Warning: POST Content-Length of 8978294 bytes exceeds the limit of 8388608 bytes in Unknown on line 0 I changed the upload_max_filesize from 2M to 1000M, but that didn’t seem to do anything. Any ideas? 23 Answers … Read more