Occasionally working with SQL databases (not my beloved MySQL) I always struggled getting the number of rows in a consistant manner.
Until now…
Anything focused on my past life in technology. Guides covering topics such as Amazon Web Services, development tools and mac software.
There are 91 posts filed in Tech (this is page 15 of 19).
Occasionally working with SQL databases (not my beloved MySQL) I always struggled getting the number of rows in a consistant manner.
Until now…
I just spent a good hour trying to work out why virtual hosts wasn’t working for me on my local machine. Turns out I needed to:
1) Enable virtual hosts by uncommenting the line
Include /private/etc/apache2/extra/httpd-vhosts.conf
in httpd.conf
2) Add the line
NameVirtualHost 127.0.0.1
to httpd.conf. I put it under the line
Listen 80
for now.
then…
I needed to take all the connections from my old machine and move them and navicat 6 over to the new one.
There is no exporter built into Navicat version 6, so I was more than a little concerned that I was going to have to find all my details and plug all the connections settings back in. Luckily this wasn’t the case.
Sending (or piping) emails to a php script would allows a whole world of fun. I had a spare 30 minutes the other night so I sat down, read a few blog posts and forums and set up emails to pipe to a php script.
I was pulling my hair out this morning because although a css file I was loading was offering it’s contents immediately, the file didn’t complete loading to the browser for another 10+ seconds on each refresh.