by suleski | Dec 29, 2016 | Technical, Troubleshooting
Search for this error with regards to WordPress and you will find lots of articles talking about how the wp-config.php has bad credentials. Funny thing is, I came across this error and credentials were not the problem. Here’s how I fixed it. My site is on a...
by suleski | Dec 29, 2015 | Technical, Troubleshooting
New client computer, so I installed the latest MySql Workbench – version 6.3.6. Turns out that the new version no longer works for me when exporting a remote database. Here’s the error I’m seeing: It works just fine when exporting local databases,...
by suleski | Mar 27, 2015 | Technical, Troubleshooting
Normally, I am able to export my site databases locally, then transfer up to my live/remote server. Unfortunately, an issue arose – When transferring to the remote database, it kept giving me an error about not having SUPER privileges to create stored...
by suleski | Jan 27, 2015 | Reference, Technical
WAMPServer is the tool that I use to develop websites locally. It is made up of three distinct technologies – Apache, MySQL, and PHP. I recently upgraded from WAMP 2.4 (Apache 2.4.4, MySQL 5.6.12, PHP 5.4.12) to WAMP 2.5 (Apache 2.4.9, MySQL 5.6.17, PHP...
by suleski | Aug 31, 2014 | Technical, Troubleshooting
When running a query within MySQL Workbench, you might see an error like this: Error Code: 1175. You are using safe update mode… To get around this issue, you can add this line to your query (untested): set SQL_SAFE_UPDATES = 0; Or, since you are using...