Running ColdFusion 8 on Leopard
October 28, 2007 ·
I have had a few people ping me on IM telling me that they had some problems running ColdFusion 8 on Leopard. Well, I havent had any problems but then again, I might have a slightly different setup than most (or maybe not!)
How I installed it was as follows:
- Run the installer, and select Multiserver
- Do all the settings as you want, I installed it into Applications/JRun4
- Once it has installed, it wont be able to go the web based configuration tool as it seems the server hasnt actually started, so, open up Terminal (Utilities/Terminal)
- Type sudo /Applications/JRun4/bin/jrun -start cfusion
- Coldfusion should start, but it isnt properly configured so go to: http://localhost/cfide/administrator/index.cfm (note the index.cfm, apache isnt configured to serve index.cfm as a default file yet)
- Once you have gone through the process, open up /etc/apache2/httpd.config and look for the line :
DirectoryIndex index.html and change it to DirectoryIndex index.cfm index.html
- Restart apache by opening another Terminal window and type:
sudo apachectl restart
That should be it. That is how I configured it (I then split it out into a couple of virtual hosts with different versions of CF running, but that is another story)
I hope this helps!
EDIT: I have tried this with a fresh download and it all seemed to go well, apart from the final screen where it tells me that the webserver couldn't be restarted, but that is what happened before.
Apache Config info:
Error about restarting:

My start page:

Tags: apple · coldfusion
211 responses
1 Scott P // Sep 22, 2008 at 4:13 PM
I removed all references to jrun from httpd.conf and re-ran:
sudo java -Dtrace.ci=1 -jar wsconfig.jar -server cfusion -ws apache -dir /etc/apache2 -bin /usr/sbin/httpd -script /usr/sbin/apachectl -coldfusion -v
It runs without any errors and says it restarted but it actually didn't.
I don't expect you to fix it or come up with some miracle cure, just curios as to your setup and if you are on intel chipset.
2 Raymond Camden // Sep 22, 2008 at 4:13 PM
3 Kurt // Sep 22, 2008 at 4:13 PM
4 Sean Corfield // Sep 22, 2008 at 4:13 PM
5 Michael // Sep 22, 2008 at 4:13 PM
@anyone is there an advantage to running CF on Apache? I have always just run the multi server on Mac, I just work with Flex and CF locally.
6 Michael // Sep 22, 2008 at 4:13 PM
7 Scott P // Sep 22, 2008 at 4:13 PM
/Applications/JRun4/bin/jrun -start admin &
then
/Applications/JRun4/bin/jrun -start cfusion &
jrun works from the gui launcher but cfusion doesn't appear to. It does work launching it from the prompt.
On the apache issue, I like running it on apache for vhosts and just because that is mostly what I deploy to.
8 Mark Drew // Sep 22, 2008 at 4:13 PM
I am currently downloading the release version and giving that a try. I shall post the results.
@Ray: Essentially it hasn't added index.cfm to be a root document, that is it. The apache connector is in the config file.
@Scott: I have a fairly old Intel MBP (I got it when it was released!)
@Kurt: I did nothing special and this machine was wiped before leopard was installed, so I dont think I had anything special.
@Sean: It just installed it! I had to manually create another for the other server I have running on JRun. But more details on that later ;)
9 Lola LB // Sep 22, 2008 at 4:13 PM
10 Raymond Camden // Sep 22, 2008 at 4:13 PM
11 Raymond Camden // Sep 22, 2008 at 4:13 PM
12 Mark Drew // Sep 22, 2008 at 4:13 PM
Just double click it or from the command line do java -jar wsconfig.jar
MD
13 Jarrod Taylor // Sep 22, 2008 at 4:13 PM
14 Nitai Aventaggiato // Sep 22, 2008 at 4:13 PM
I got Tiger and Leopard running CF8 and Apache 2.2.4 without problems (even after updating a Tiger MacBookPro with Leopard). I don't like to depend on Apple to much since they just roll out some updates and then your webserver does not run anymore or you need to reinstall CF.
Thus I have put together a blog post some time ago about installing Apache 2.2.4 and CF. Since I have this setup I have never had any problems with any update. The blog post is at: http://blog.econtentpark.com/permalinks/2007/06/18/Configuring-Apache-ColdFusion-and-virtual-hosts-for-MacOS-X.
15 Charles Fahey // Sep 22, 2008 at 4:13 PM
It worked great until I upgraded. Now nothing. I've tried re-installing with a variety of configurations, but nothing. No matter what I do my attempts to access the Cf Administrator results in one of two things: 1) the cfm pages downloads as a ".cfm.class." file, or 2) it never loads, simply spinning away forever.
Any ideas? I have actually done a lot of CF8 work on my Mac since CF8 came out, and now I'm mid-project on one in particular.
Thanks all!
- Charles
16 Kurt Wiersma // Sep 22, 2008 at 4:13 PM
apxs -c -Wc,-arch -Wc,x86_64 -Wl,-arch -Wl,x86_64 -n jrun22 \
mod_jrun22.c jrun_maptable_impl.c jrun_property.c jrun_session.c \
platform.c jrun_mutex.c jrun_proxy.c jrun_utils.c
apxs -i -n jrun22 -S LIBEXECDIR=/Applications/JRun4/lib/wsconfig/1/ \
mod_jrun22.la
Special thanks to Ulf Unger for figuring those commands out!
17 Mark Drew // Sep 22, 2008 at 4:13 PM
Then edit /etc/apache2/httpd.conf and look at the bottom to see what you have, you should have something like:
# JRun Settings
LoadModule jrun_module /Applications/JRun4/lib/wsconfig/1/mod_jrun22.so
<IfModule mod_jrun22.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore /Applications/JRun4/lib/wsconfig/1/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51020
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
</IfModule>
18 Zach Stepek // Sep 22, 2008 at 4:13 PM
19 Patrick McElhaney // Sep 22, 2008 at 4:13 PM
It sounds like I need to compile the connector as Kurt described, but where do I run them? Where's the source code?
Patrick
20 Scott P // Sep 22, 2008 at 4:13 PM
cd /Applications/JRun4/lib
unzip -d src wsconfig.jar
cd src/connectors/src
apxs -c -Wc,-arch -Wc,x86_64 -Wl,-arch -Wl,x86_64 -n jrun22 \
mod_jrun22.c jrun_maptable_impl.c jrun_property.c jrun_session.c \
platform.c jrun_mutex.c jrun_proxy.c jrun_utils.c
apxs -i -n jrun22 -S LIBEXECDIR=/Applications/JRun4/lib/src/connectors/src/ \
mod_jrun22.la
strip mod_jrun22.so
Now run the connector configuration:
sudo java -jar /Applications/JRun4/lib/wsconfig.jar
as Mark describes above and don't worry about it not restarting.
cp /Applications/JRun4/lib/src/connectors/src/mod_jrun22.so /Applications/JRun4/lib/wsconfig/1/mod_jrun22.so
sudo apachectl restart
and you should be running.
21 Raymond Camden // Sep 22, 2008 at 4:13 PM
/usr/share/apr-1/build-1/libtool --silent --mode=compile gcc -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp -I/usr/include/apache2 -I/usr/include/apr-1 -I/usr/include/apr-1 -arch x86_64 -c -o mod_jrun22.lo mod_jrun22.c && touch mod_jrun22.slo
/usr/share/apr-1/build-1/libtool: line 1219: gcc: command not found
apxs:Error: Command failed with rc=65536
Is there a typo somewhere?
22 Ant Cooper // Sep 22, 2008 at 4:13 PM
@Ray, I got this and installed the Developer tools on the Leopard DVD which includes GCC.
@Mark, apologies if this is turning your blog into a forum! :-)
23 Raymond Camden // Sep 22, 2008 at 4:13 PM
24 Luis Majano // Sep 22, 2008 at 4:13 PM
Did you get to install cf7 also? any tips?
25 Darren // Sep 22, 2008 at 4:13 PM
For what it's worth, I'm able to start my CF8 Standalone installation of by doing the following:
1.) Open a terminal window
2.) cd /Applications/ColdFusion8/runtime/bin
3.) ./jrun -start coldfusion
I didn't do a reinstall, and I'm not using the Apache connector.
Hope this helps some.
26 Charles Fahey // Sep 22, 2008 at 4:13 PM
I wanted to thank everyone for their ideas and suggestions. Unfortunately, every set of instructions I follow leads me to some unforeseen hiccup. But I wanted to thank everyone for their generosity in sharing ideas. I'll let everyone know what the solution winds up being.
Thanks all!
- Charles
27 Neil Middleton // Sep 22, 2008 at 4:13 PM
nuts
28 Charles Fahey // Sep 22, 2008 at 4:13 PM
Success!
Neil I was having the exact same issue as you.
So I did a new install using the ColdFusion stand-alone server (no Apache server connectors).
I then opened terminal and performed the three commands outlined by Darren.
Next I went to http://127.0.0.1:8500/CFIDE/administrator/index.cfm and viola, there was something driven by ColdFusion. It needed me to finish the installation. Then after a few second it said it was complete and I clicked okay to enter the CF Administrator.
So it is up and running.
Thanks everyone! I don't know what is sifferent about my system, but the stand-alone seems to be the key for my environment, anyway.
- Charles
29 Geoff Bowers // Sep 22, 2008 at 4:13 PM
I've summarised the thread here:
http://blog.daemon.com.au/go/blog-post/how-to-install-coldfusion-8-on-leopard-osx
30 Patrick McElhaney // Sep 22, 2008 at 4:13 PM
The step by step instructions Geoff just posted are exactly what worked for me.
Patrick
31 Raymond Camden // Sep 22, 2008 at 4:13 PM
32 Jarrod Taylor // Sep 22, 2008 at 4:13 PM
Worked well for me.
33 Mark Drew // Sep 22, 2008 at 4:13 PM
34 Aaron Roberson // Sep 22, 2008 at 4:13 PM
Any ideas?
35 Ian Winter // Sep 22, 2008 at 4:13 PM
36 Ian Winter // Sep 22, 2008 at 4:13 PM
37 Scott P // Sep 22, 2008 at 4:13 PM
38 Matt // Sep 22, 2008 at 4:13 PM
39 Ant Cooper // Sep 22, 2008 at 4:13 PM
Error Occurred While Processing Request
Could not find the ColdFusion Component or Interface
/blah/blah/Application.cfc.
I haven't changed anything in Application.cfc, the only thing that has happened is that I've been away to a meeting, turned Airport off, and then back on when I returned to the office - and got a different IP Address.
Have restarted JRun but that doesn't seem to have any effect.
40 JP Revel // Sep 22, 2008 at 4:13 PM
41 PGreen // Sep 22, 2008 at 4:13 PM
httpd: Syntax error on line 484 of /private/etc/apache2/httpd.conf: Cannot load /Applications/JRun4/lib/wsconfig/1/mod_jrun22.so into server: dlopen(/Applications/JRun4/lib/wsconfig/1/mod_jrun22.so, 10): no suitable image found. Did find:\n\t/Applications/JRun4/lib/wsconfig/1/mod_jrun22.so: mach-o, but wrong architecture
42 Jaye // Sep 22, 2008 at 4:13 PM
43 Lola LB // Sep 22, 2008 at 4:13 PM
44 John // Sep 22, 2008 at 4:13 PM
I followed the steps outlined originally by mark and was able to start cfusion but when navigating to http://localhost/CFIDE/administrator/index.cfm the browser prompts to download.
So, I wipe everything... Used Cf installer to remove, then trashed the /Applications/JRun4 dir, rebooted and used the steps Geoff summarized at http://blog.daemon.com.au/go/blog-post/how-to-install-coldfusion-8-on-leopard-osx
I ran into two issues:
1) /1 did not exist in the /Applications/JRun4/lib/wsconfig so I had to create it (using su rights)
2) When I was all finished http://localhost/CFIDE/administrator/index.cfm promts to download
So basically I have the same end result. I can start Cf manually from terminal, but can't connect to the admin.
I couldn't have fat-fingered anything because I copied/pasted.
I guess I'll remove, delete, reboot, and try again.
What a pain in the @$$
45 Nitai Aventaggiato // Sep 22, 2008 at 4:13 PM
Look in httpd.conf located in /etc/apache2 that the line looks like this:
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.cfm index.html
</IfModule>
46 Nitai Aventaggiato // Sep 22, 2008 at 4:13 PM
47 John // Sep 22, 2008 at 4:13 PM
I'm going to try the install and configuration steps one more time before giving up. Thank goodness I didn't upgrade my macbook pro too. At least I had sense enough to upgrade the imac first to test everything out ;o)
48 Neil Middleton // Sep 22, 2008 at 4:13 PM
I've been having issues with not being able to get CF to start on leopard, and thus not being able to get as far as the connector stuff.
However, (and this may just be a hunch), I've been trying to do this on a install of leopard that was a Tiger upgrade, NOT a fresh clean install. Has anyone else been able to get CF8 working on a upgrade install?
Also, I've figured out how to get it working (but it's less than ideal)
1. Install VMware
2. Install Windows or Ubuntu
3. Install CF
Bonza
49 Patrick McElhaney // Sep 22, 2008 at 4:13 PM
I did struggle with it though, and had to delete JRun a couple of times. In retrospect, it probably would have been worth my while to start clean.
50 Alfio Raymond // Sep 22, 2008 at 4:13 PM
Thanks for your blog post on here because within 2 minutes I had ColdFusion running and nice and simple too on Leopard after spending a day at the genius bar in an apple store and the guy telling me that ColdFusion is a dead language. NOT!!
51 Shahryar // Sep 22, 2008 at 4:13 PM
sudo /Applications/JRun4/bin/jrun -start cfusion
command in terminal and then I went into:
http://localhost:8300/CFIDE/administrator/index.cfm and I got into my ColdFusion administrator. I assume that means that everything is running fine. I'm not sure why it's localhost:8300 and not just regular localhost though.
I was hoping I could browse and play with some sample apps that would work on my comp but it seems all the examples are on adobe's site.
I'm not understanding the Apache talk on this thread though. What exactly is everyone trying to do here with the Apache questions?
52 pete // Sep 22, 2008 at 4:13 PM
53 Joe Rinehart // Sep 22, 2008 at 4:13 PM
Oi...this was fun. I went through Mark's instructions, and it worked fine until my first reboot. Starting from the command line didn't help (got internal server errors).
Tried to compile my own connector, got the "wrong architecture" messsage people have seen. I looked at the apxs args and realized they're for a 64-bit architecture, and I've got an older (intel core duo, not intel core 2 duo) 32-bit macbook pro.
I then compiled with the correct arg string for this, followed the rest of the instructions, and I'm up and running again:
apxs -c -n jrun22 mod_jrun22.c jrun_maptable_impl.c jrun_property.c jrun_session.c platform.c jrun_mutex.c jrun_proxy.c jrun_utils.c
hope that helps!
54 Gavin Stewart // Sep 22, 2008 at 4:13 PM
but it fails to mention to add index.cfm to DirectoryIndex causing apache to try and download the .cfm file. What i want know is why the ColdFusionLauncher is so sh##e! It never starts cf having to resort to the command line, leaving an ugly terminal window open all the time. Just like the jrun consol, will they ever fix it?
55 Mark Drew // Sep 22, 2008 at 4:13 PM
56 Matthew Wallace // Sep 22, 2008 at 4:13 PM
Thanks for the great tips on getting this two work. I tried for 3 or 4 days to get ColdFusion to work on my PowerMac g5 and I just could not get it going. Your blog post was really helpful and was one of many that I read trying to get this up and running.
I ended up doing a video tutorial on installing CF8 on Leopard using MAMP to run Apache. If any of you would like to check it out please feel free to check out the post on my blog. It was a really frustrating process to get CF8 up and running and I hope this solution saves some of you a log of trouble.
57 Matthew Wallace // Sep 22, 2008 at 4:13 PM
http://www.flashalisious.com/2007/12/14/installing-coldfusion8-on-leopard-using-mamp/
58 Shahryar // Sep 22, 2008 at 4:13 PM
I Just restarted my computer and did the "sudo /Applications/JRun4/bin/jrun -start cfusion" command.
It seems to have gotten stuck on some part of the launch. I wish I could post on what specific command during the launch sequence it got stuck, but my log files are gone. ( I just uninstalled ColdFusion as part of the instructions from the post over here:
http://blog.daemon.com.au/go/blog-post/how-to-install-coldfusion-8-on-leopard-osx )
And whenever I launch the CFIDE page in the Localhost:8300, it just gets hung up.
I don't understand what's going on here though. I can use the Jrun Launcher to launch both the admin on localhost:8000 and the samples on localhost:8200. But it seems with the Jrun launcher, I can't control cfusion at localhost:8300 at all.
I hope I have better luck following blog.daemon.com.au's instructions.
59 Erica // Sep 22, 2008 at 4:13 PM
Thank you all for your generous help already!!
60 Aaron West // Sep 22, 2008 at 4:13 PM
1. Download CF8 installer from adobe.com/go/coldfusion
2. Double-click the installer file to launch the wizard.
3. As you progress through the screens, be sure to select multi-server install (I always multi-instance CF).
4. On the Configure Web Server screen, select the option to configure a Web server. Select Apache in the drop-down.
For Configuration Directory type: /private/etc/apache2
NOTE: Others have mentioned typing /etc/apache2 here. This is also fine as that directory is a symbolic link to the REAL directory /private/etc/apache2.
For Directory and file name of server binary type: /usr/sbin/httpd
For Directory and file name of server control script type: /usr/sbin/apachectl
Click Ok.
5. The installer will do it's thing and then you'll get a message about successfully installing CF8 BUT, that the Web server and/or Web site do not appear to be running. You're directed to start the Web server and then run the Configuration Wizard: http://localhost:80/CFIDE/administrator/index.cfm
Just click Ok when you see the message above and move to the next step.
6. Download the recompiled, 64-bit Web server connector from Scott Pinkston: http://www.scottpinkston.org/Downloads/mod_jrun22_64.zip
7. Make sure Apache is stopped. In Terminal, navigate to the /usr/sbin directory and type "sudo apachectl stop"
8. Copy mod_jrun22.so from the zip you downloaded and paste it into the following directory: /Applications/JRun4/lib/wsconfig/1/.
9. Restart Apache. From /usr/bin in Terminal, type "sudo apachectl start &"
10. Stop all CF/JRun services (just in case they are running). From /Applications/JRun4/bin/ type
"./jrun4 stop cfusion" and "./jrun4 stop admin" and "./jrun4 stop samples" Don't worry about what messages you get from typing the commands.
11. Open Activity Monitor (the OS X app) and look for any services called "jrun." If any are listed (be sure "All processes" is listed in the drop-down at the top of Activity Monitor), quit them by selecting them and pressing the Quit button, then the Force Quit button to confirm.
12. Start CF8 in Terminal: from /Applications/JRun4/bin type "./jrun4 start cfusion &"
13. Go to your browser and visit http://localhost/CFIDE/administrator/index.cfm. Be sure and type the filename (index.cfm). You will be prompted to enter your CF Admin password at which point CF will run through the configuration process and direct you to the CF Admin.
Now you can go back to Apache and set up Virtual Hosts or add "index.cfm" to the global DirectoryIndex directive.
61 Jeremy Prevost // Sep 22, 2008 at 4:14 PM
62 Shahryar // Sep 22, 2008 at 4:14 PM
63 Joe Rinehart // Sep 22, 2008 at 4:14 PM
MySQL (3, 4, and 5) work out of the box with ColdFusion 8. Just pick the right database type option (MySQL 3 or MySQL 4/5) from the add datasource dialogue.
64 Aaron West // Sep 22, 2008 at 4:14 PM
65 Shahryar // Sep 22, 2008 at 4:14 PM
66 Shahryar // Sep 22, 2008 at 4:14 PM
67 Joe Rinehart // Sep 22, 2008 at 4:14 PM
What's going wrong with MySQL on Leopard? I downloaded the 10.4 installer (http://dev.mysql.com/downloads/mysql/5.0.html#macosx-dmg), ran it, and it's up and running...
68 Michael // Sep 22, 2008 at 4:14 PM
Any help would be appreciated.
Thank you in advance,
Michael.
69 Martin Fairbairn // Sep 22, 2008 at 4:14 PM
And, Shahryar, forget about Access and Windows. It's really easy to connect to MySQL
70 Aaron West // Sep 22, 2008 at 4:14 PM
All of the stuff mentioned in this post to get ColdFusion 8 running on Mac OS X 10.5 (Leopard) are no longer needed. The latest version of ColdFusion (8.0.1) has built-in, native support for Leopard and the version of Apache (2.2.6) that comes with Leopard by default. There are two different versions of ColdFusion 8.0.1 available, a 32-bit version which can be downloaded as an updater for existing installs or as a complete, clean installer. The second version is 64-bit and can only be installed as a complete clean installer. In other words, there is no updater provided for 64-bit ColdFusion on Leopard.
That said, regardless of which version you download - the 32-bit or the 64-bit - you can install ColdFusion 8.0.1 in standalone mode (aka server configuration, with no support for multi-instances) or Mutli-server mode which allows you to configure multiple instances of ColdFusion. I personally recommend the latter.
Incidentally, the Fusion Authority Quarterly is coming out with the latest version of the magazine which includes all kinds of information about setting up and configuring your development environment. I have an article in this issue all about setting up and configuring Apache on Windows and OS X 10.5 Leopard. Included in that article are detailed instructions for installing CF 8.0.1 on Leopard, but really it is a matter of downloading the right installer and walking through the installation screens.
71 blake southwood // Sep 22, 2008 at 4:14 PM
no luck installing it with apache
no luck getting any coldfusion code to work
no luck getting teh CF administrator page to appear
Any ideas?
This is so dissappionting. 3 days lost trying to make cf code work
blake in silicon valley
72 Mark Drew // Sep 22, 2008 at 4:14 PM
sudo /Applications/JRun4/bin/jrun -start cfusion
?
73 GILESMallory32 // Jul 23, 2011 at 8:02 AM
74 zgtaowmlma // Jul 23, 2011 at 9:59 PM
75 EveJoe // Jul 24, 2011 at 8:22 AM
76 FreyaGabriel // Jul 24, 2011 at 8:27 AM
77 EmilyAlfie // Jul 24, 2011 at 8:31 AM
78 ZaraJoel // Jul 24, 2011 at 8:35 AM
79 GracieAaron // Jul 24, 2011 at 8:45 AM
80 TiaLuca // Jul 24, 2011 at 8:50 AM
81 RubyFreddie // Jul 24, 2011 at 8:54 AM
82 EmiliaBradley // Jul 24, 2011 at 9:09 AM
83 NiamhReece // Jul 24, 2011 at 9:10 AM
84 MadisonRhys // Jul 24, 2011 at 9:13 AM
85 ElizabethFinley // Jul 24, 2011 at 9:17 AM
86 FlorenceEllis // Jul 24, 2011 at 9:34 AM
87 KatieEllis // Jul 24, 2011 at 9:37 AM
88 AmyBrandon // Jul 24, 2011 at 9:41 AM
89 SophiaLogan // Jul 24, 2011 at 9:43 AM
90 ImogenNoah // Jul 24, 2011 at 9:58 AM
91 LydiaFrederick // Jul 24, 2011 at 10:00 AM
92 AvaSamuel // Jul 24, 2011 at 10:04 AM
93 AmelieToby // Jul 24, 2011 at 10:17 AM
94 EveMorgan // Jul 24, 2011 at 10:22 AM
95 PhoebeOscar // Jul 24, 2011 at 10:23 AM
96 LillyStanley // Jul 24, 2011 at 10:27 AM
97 SummerLiam // Jul 24, 2011 at 10:46 AM
98 EllieBailey // Jul 24, 2011 at 10:46 AM
99 EvelynEllis // Jul 24, 2011 at 10:50 AM
100 LaceyLuca // Jul 24, 2011 at 10:51 AM
101 LucyEvan // Jul 24, 2011 at 11:09 AM
102 HannahRiley // Jul 24, 2011 at 11:09 AM
103 RoseChristopher // Jul 24, 2011 at 11:13 AM
104 HollyDylan // Jul 24, 2011 at 11:25 AM
105 RosieTarkan // Jul 24, 2011 at 11:33 AM
106 EmmaEwan // Jul 24, 2011 at 11:33 AM
107 AlexandraElliot // Jul 24, 2011 at 11:37 AM
108 KeiraSebastian // Jul 24, 2011 at 11:57 AM
109 LillyMason // Jul 24, 2011 at 11:57 AM
110 TiaLuca // Jul 24, 2011 at 11:59 AM
111 EleanorDavid // Jul 24, 2011 at 12:00 PM
112 MaddisonAiden // Jul 24, 2011 at 12:21 PM
113 AmelieToby // Jul 24, 2011 at 12:21 PM
114 HannahJohn // Jul 24, 2011 at 12:23 PM
115 MaddisonAiden // Jul 24, 2011 at 12:33 PM
116 MarthaBailey // Jul 24, 2011 at 12:44 PM
117 EllieBailey // Jul 24, 2011 at 12:45 PM
118 KeiraSebastian // Jul 24, 2011 at 12:45 PM
119 FaithAidan // Jul 24, 2011 at 1:07 PM
120 ChloeAaron // Jul 24, 2011 at 1:08 PM
121 FaithAidan // Jul 24, 2011 at 1:08 PM
122 LilyWilliam // Jul 24, 2011 at 1:09 PM
123 LaurenToby // Jul 24, 2011 at 1:33 PM
124 AvaLouis // Jul 24, 2011 at 1:33 PM
125 LucyEvan // Jul 24, 2011 at 1:33 PM
126 LydiaFrederick // Jul 24, 2011 at 1:40 PM
127 TillyKieran // Jul 24, 2011 at 1:57 PM
128 LolaHarrison // Jul 24, 2011 at 1:58 PM
129 AlishaFrederick // Jul 24, 2011 at 1:58 PM
130 IsabelMichael // Jul 24, 2011 at 2:14 PM
131 MarthaBailey // Jul 24, 2011 at 2:22 PM
132 HarrietChristopher // Jul 24, 2011 at 2:22 PM
133 ZaraJoel // Jul 24, 2011 at 2:23 PM
134 PaigeEvan // Jul 24, 2011 at 2:46 PM
135 HarrietTaylor // Jul 24, 2011 at 2:46 PM
136 IsabelMichael // Jul 24, 2011 at 2:47 PM
137 SkyeReece // Jul 24, 2011 at 2:48 PM
138 JasmineHenry // Jul 24, 2011 at 3:10 PM
139 HollieElliot // Jul 24, 2011 at 3:10 PM
140 ImogenKieran // Jul 24, 2011 at 3:12 PM
141 MaisieAdam // Jul 24, 2011 at 3:22 PM
142 MaddisonAiden // Jul 24, 2011 at 3:35 PM
143 DaisyJacob // Jul 24, 2011 at 3:35 PM
144 KatieEllis // Jul 24, 2011 at 3:36 PM
145 LaurenToby // Jul 24, 2011 at 3:55 PM
146 HollieBrandon // Jul 24, 2011 at 3:59 PM
147 EleanorHarley // Jul 24, 2011 at 3:59 PM
148 LeahJude // Jul 24, 2011 at 4:00 PM
149 EllaZachary // Jul 24, 2011 at 4:23 PM
150 ZaraGabriel // Jul 24, 2011 at 4:24 PM
151 AliceAlex // Jul 24, 2011 at 4:29 PM
152 ScarlettReuben // Jul 24, 2011 at 4:47 PM
153 AliceTheo // Jul 24, 2011 at 4:48 PM
154 CaitlinLouis // Jul 24, 2011 at 4:48 PM
155 EvaJoe // Jul 24, 2011 at 5:03 PM
156 LolaHarrison // Jul 24, 2011 at 5:11 PM
157 KeiraSebastian // Jul 24, 2011 at 5:12 PM
158 IsabellaAshton // Jul 24, 2011 at 5:12 PM
159 HollyAiden // Jul 24, 2011 at 5:34 PM
160 EmiliaEwan // Jul 24, 2011 at 5:36 PM
161 SummerAidan // Jul 24, 2011 at 5:36 PM
162 RoseChristopher // Jul 24, 2011 at 5:37 PM
163 DaisyLuca // Jul 24, 2011 at 5:57 PM
164 LillyStanley // Jul 24, 2011 at 5:59 PM
165 MiaBen // Jul 24, 2011 at 6:00 PM
166 AlishaFrederick // Jul 24, 2011 at 6:11 PM
167 HollyDylan // Jul 24, 2011 at 6:21 PM
168 KeiraSebastian // Jul 24, 2011 at 6:22 PM
169 RosieCharles // Jul 24, 2011 at 6:25 PM
170 KeiraKai // Jul 24, 2011 at 6:43 PM
171 ZaraGabriel // Jul 24, 2011 at 6:45 PM
172 MillieJayden // Jul 24, 2011 at 6:45 PM
173 HollyAiden // Jul 24, 2011 at 6:48 PM
174 EleanorDavid // Jul 24, 2011 at 7:07 PM
175 SkyeKian // Jul 24, 2011 at 7:09 PM
176 EvieDaniel // Jul 24, 2011 at 7:13 PM
177 EvieDaniel // Jul 24, 2011 at 7:30 PM
178 ElizabethFinley // Jul 24, 2011 at 7:31 PM
179 SkyeReece // Jul 24, 2011 at 7:36 PM
180 MiaGeorge // Jul 24, 2011 at 7:53 PM
181 AmeliaSebastian // Jul 24, 2011 at 7:53 PM
182 LexiCameron // Jul 24, 2011 at 7:53 PM
183 LaceyZachary // Jul 24, 2011 at 8:00 PM
184 AlexandraJoe // Jul 24, 2011 at 8:16 PM
185 MeganKyle // Jul 24, 2011 at 8:16 PM
186 MariaArthur // Jul 24, 2011 at 8:23 PM
187 LydiaRobert // Jul 24, 2011 at 8:27 PM
188 RoseChristopher // Jul 24, 2011 at 8:40 PM
189 SummerAidan // Jul 24, 2011 at 8:40 PM
190 ScarlettMax // Jul 24, 2011 at 8:47 PM
191 IsabelleLucas // Jul 24, 2011 at 9:01 PM
192 PoppyReece // Jul 24, 2011 at 9:07 PM
193 AvaLouis // Jul 24, 2011 at 9:07 PM
194 SaraStanley // Jul 24, 2011 at 9:11 PM
195 FaithAiden // Jul 24, 2011 at 9:30 PM
196 BethanyFreddie // Jul 24, 2011 at 9:34 PM
197 AmberToby // Jul 24, 2011 at 9:57 PM
198 KatieEllis // Jul 24, 2011 at 10:19 PM
199 IsobelHarley // Jul 24, 2011 at 10:42 PM
200 HollieElliot // Jul 24, 2011 at 10:44 PM
201 ErinElliot // Jul 24, 2011 at 11:06 PM
202 MaisieAdam // Jul 24, 2011 at 11:07 PM
203 EvelynBradley // Jul 24, 2011 at 11:18 PM
204 LillyStanley // Jul 24, 2011 at 11:29 PM
205 EllaZachary // Jul 25, 2011 at 12:40 AM
206 RoseStanley // Jul 25, 2011 at 1:00 AM
207 GeorgiaTheo // Jul 25, 2011 at 2:13 AM
208 LolaHarrison // Jul 25, 2011 at 2:37 AM
209 LexieAshton // Jul 25, 2011 at 6:24 AM
210 RubyJack // Jul 25, 2011 at 6:39 AM
211 bgqoppeiz // Jul 25, 2011 at 11:04 AM