You are looking at posts that were written on April 13th, 2010.
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Mar | May » | |||||
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | ||
Posted on April 13th, 2010 by thiswayup.
Categories: dev.
I thought I'll start creating a SEO checklist for my personal and whoever likes to reference this, at the moment itd quite small but will add more and more over time.
General site structure
Making google happy
More techie stuff
Content guide
Tools
Other
Posted on April 13th, 2010 by thiswayup.
Categories: dev.
I recently had windows 7 installed on my machine at work after it had been running like a dog for the past 6 months, previously I had Win Xp. I tried to install WAMP and xdebug but was finding that I kept on having random connection issues and breakpoints was not working, bloody annoying! At first I thought this was because I was running php 5.3 wamp but then tried to put in php 5.2 but pin point it to recent versions of Xdebug not playing very well with WAMP.
I read a couple of posts and just changed dll used to and it suddenly worked!
Also for future reference :
zend_extension_ts="C:/wamp/bin/php/php5.2.9-1/ext/php_xdebug-2.0.4-5.2.8.dll"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
Got this from the
UPDATE: Really useful to work out which binary and instructions for your specific setup. Awesome juice!