Home arrow Blog
Main Menu
Home
Blog
Downloads
Forum
Link
Search
Category
Mobile
PHP
Google
Joomla
Cygwin
I-Apply
Linux
Plagger
Internet
Other
What's New
Recommend
RSS
E-Pagerank
初めてのRuby!!Passenger(mod_rails)をとりあえず入れてみて
Writte by Administrator   
2008/05/12 月曜日 11:48
Tag it:
Hatena
Delicious
Spurl
blogmarks
今まで、Rubyっていうものは聴いたことはあったけど、一度も触ったことがなかった。
なんとなく、Ruby on Railsには興味はあったし、どんなものかも知っていたけど、
実行環境を作るのが面倒くさそうだった。

が、なんかmod_railsというのが出たらしい。
結構簡単に、環境が作れるらしい。

ということで、早速インストールしてみることにした。

前提:
以下が既にインストール済みとする。
Apache2
Ruby 1.8以降?


まず、どうやらRuby関係の何かを入れるためにgemsというのが必要らしい。
ということで、インストール。
aptであったので、さっくりとaptから。

# apt-get install rubygems



あとで、知ったことだがここでとりあえずgemsをアップデートしておいた
ほうがいいらしい。(たぶん)
(自分の場合は失敗して、再インストールすることになってしまった)

# gem update --system


でさっそく、Passenger(mod_rails)をインストールしようとしたら・・・。
# gem install passenger
Bulk updating Gem source index for: http://gems.rubyforge.org
ERROR:  While executing gem ... (Gem::GemNotFoundException)
    Could not find passenger (> 0) in any repository 


なんか怒られてしまった。
どうやら、railsを先にいれないといけないらしい。
Railsってつまりは、Ruby on RailsをやるためのFrameworkかな?


ということで、さっくりとインストール。
これも、gemsから出きるらしい。


# gem install -v=2.0.2 rails -y
Bulk updating Gem source index for: http://gems.rubyforge.org
Successfully installed rails-2.0.2
Successfully installed rake-0.8.1
Successfully installed activesupport-2.0.2
Successfully installed activerecord-2.0.2
Successfully installed actionpack-2.0.2
Successfully installed actionmailer-2.0.2
Successfully installed activeresource-2.0.2
Installing ri documentation for rake-0.8.1...
Installing ri documentation for activesupport-2.0.2...
Installing ri documentation for activerecord-2.0.2...
Installing ri documentation for actionpack-2.0.2...
Installing ri documentation for actionmailer-2.0.2...
Installing ri documentation for activeresource-2.0.2...
Installing RDoc documentation for rake-0.8.1...
Installing RDoc documentation for activesupport-2.0.2...
Installing RDoc documentation for activerecord-2.0.2...
Installing RDoc documentation for actionpack-2.0.2...
Installing RDoc documentation for actionmailer-2.0.2...
Installing RDoc documentation for activeresource-2.0.2...


気を取り直して、Passenger(mod_rails)のインストール。
これもやっぱり、先ほどと一緒でgemsから。

# gem install passenger
............
complete
Install required dependency fastthread? [Yn]  y
Select which gem to install for your platform (i386-linux)
 1. fastthread 1.0.1 (mswin32)
 2. fastthread 1.0.1 (ruby)
 3. fastthread 1.0.1 (i386-mswin32)
 4. Skip this gem
 5. Cancel installation
> 2
Building native extensions.  This could take a while...
Building native extensions.  This could take a while...
Successfully installed passenger-1.0.5
Successfully installed fastthread-1.0.1
Installing ri documentation for passenger-1.0.5...
Installing ri documentation for fastthread-1.0.1...

No definition for dummy_dump

No definition for dummy_dump

No definition for rb_queue_marshal_load

No definition for rb_queue_marshal_dump
Installing RDoc documentation for passenger-1.0.5...
Installing RDoc documentation for fastthread-1.0.1...

No definition for dummy_dump

No definition for dummy_dump

No definition for rb_queue_marshal_load

No definition for rb_queue_marshal_dump
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:25: warning: already initialized constant FONTS
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:235: warning: already initialized constant STYLE
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:246: warning: already initialized constant XHTML_PREAMBLE
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:289: warning: already initialized constant HEADER
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:310: warning: already initialized constant FOOTER
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:335: warning: already initialized constant FILE_PAGE
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:384: warning: already initialized constant CLASS_PAGE
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:604: warning: already initialized constant METHOD_LIST
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:621: warning: already initialized constant BODY
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:640: warning: already initialized constant SRC_PAGE
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:649: warning: already initialized constant FR_INDEX_BODY
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:675: warning: already initialized constant FILE_INDEX
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:677: warning: already initialized constant CLASS_INDEX
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:678: warning: already initialized constant METHOD_INDEX
/usr/lib/ruby/1.8/rdoc/generators/template/html/html.rb:704: warning: already initialized constant INDEX


で仕上げに、以下をやらないといけないらしい。

# passenger-install-apache2-module
----
passenger-install-apache2-module
Welcome to the Passenger Apache 2 module installer, v1.0.5.

This installer will guide you through the entire installation process. It
shouldn't take more than 3 minutes in total.

Here's what you can expect from the installation process:

 1. The Apache 2 module will be installed for you.
 2. You'll learn how to configure Apache.
 3. You'll learn how to deploy a Ruby on Rails application.

Don't worry if anything goes wrong. This installer will advise you on how to
solve any problems.

Press Enter to continue, or Ctrl-C to abort.
1
Checking for required software...

 * GNU C++ compiler... found at /usr/bin/g++
 * Ruby development headers... found
 * OpenSSL support for Ruby... found
 * RubyGems... found
 * Rake... found at /usr/bin/rake
 * Apache 2... found at /usr/sbin/apache2
 * Apache 2 development headers... found at /usr/bin/apxs
 * Apache Portable Runtime (APR) development headers... found at /usr/bin/apr-1-config
 * fastthread... found
--------------------------------------------

--------------------------------------------
Compiling and installing Apache 2 module...
cd /var/lib/gems/1.8/gems/passenger-1.0.5
rake clean apache2
(in /var/lib/gems/1.8/gems/passenger-1.0.5)
### In ext/apache2:
rm -rf Utils.o Logging.o Configuration.o Hooks.o mod_passenger.o mod_passenger.so

rm -r pkg
### In ext/passenger:
make clean
rm -f Makefile

### In ext/boost/src:
rm -f libboost_thread.a *.o

### In test:
rm -f Apache2ModuleTests *.o

### In benchmark:
rm -f DummyRequestHandler

### In ext/boost/src:
g++ -O2 -fPIC -I../.. -D_REENTRANT -DNDEBUG  -c *.cpp
ar cru libboost_thread.a *.o
ranlib libboost_thread.a

### In ext/apache2:
g++ -I.. -fPIC -g -DPASSENGER_DEBUG -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/apr-1 -m32 -march=i386 -mcpu=i686 -I/usr/include/apache2 -D_REENTRANT -Wall -g -I/usr/local/include  -c mod_passenger.c

### In ext/apache2:
g++ -I.. -fPIC -g -DPASSENGER_DEBUG -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/apr-1 -m32 -march=i386 -mcpu=i686 -I/usr/include/apache2 -D_REENTRANT -Wall -g -I/usr/local/include  -c Utils.cpp

### In ext/apache2:
g++ -I.. -fPIC -g -DPASSENGER_DEBUG -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/apr-1 -m32 -march=i386 -mcpu=i686 -I/usr/include/apache2 -D_REENTRANT -Wall -g -I/usr/local/include  -c Logging.cpp

### In ext/apache2:
g++ -I.. -fPIC -g -DPASSENGER_DEBUG -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/apr-1 -m32 -march=i386 -mcpu=i686 -I/usr/include/apache2 -D_REENTRANT -Wall -g -I/usr/local/include  -c Configuration.cpp

### In ext/apache2:
g++ -I.. -fPIC -g -DPASSENGER_DEBUG -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -I/usr/include/apr-1 -m32 -march=i386 -mcpu=i686 -I/usr/include/apache2 -D_REENTRANT -Wall -g -I/usr/local/include  -c Hooks.cpp

### In ext/apache2:
g++ -shared Utils.o Logging.o Configuration.o Hooks.o mod_passenger.o -fPIC -o mod_passenger.so   -lstdc++ -lpthread ../boost/src/libboost_thread.a -lapr-1

### In ext/passenger:
ruby extconf.rb
creating Makefile

### In ext/passenger:
make
gcc -I. -I/usr/lib/ruby/1.8/i386-linux -I/usr/lib/ruby/1.8/i386-linux -I.  -fPIC -O2 -m32 -march=i386 -mcpu=i686  -fPIC  -c native_support.c
gcc -shared -rdynamic -Wl,-export-dynamic   -L'/usr/lib' -Wl,-R'/usr/lib' -o native_support.so native_support.o  -Wl,-R -Wl,/usr/lib -L/usr/lib -L. -lruby  -lpthread -ldl -lcrypt -lm   -lc


--------------------------------------------
The Apache 2 module was successfully installed.

Please edit your Apache configuration file, and add these lines:

   LoadModule passenger_module /var/lib/gems/1.8/gems/passenger-1.0.5/ext/apache2/mod_passenger.so
   RailsSpawnServer /var/lib/gems/1.8/gems/passenger-1.0.5/bin/passenger-spawn-server
   RailsRuby /usr/bin/ruby

After you restart Apache, you are ready to deploy any number of Ruby on Rails
applications on Apache, without any further Ruby on Rails-specific
configuration!

Press ENTER to continue.


--------------------------------------------
Deploying a Ruby on Rails application: an example

Suppose you have a Ruby on Rails application in /somewhere. Add a virtual host
to your Apache configuration file, and set its DocumentRoot to
/somewhere/public, like this:

   <VirtualHost *:80>
      ServerName www.yourhost.com
      DocumentRoot /somewhere/public
   </VirtualHost>

And that's it! You may also want to check the Users Guide for security and
optimization tips and other useful information:

  /var/lib/gems/1.8/gems/passenger-1.0.5/doc/Users guide.html

Enjoy Passenger, a product of Phusion (www.phusion.nl) :-)
http://www.modrails.com/
 

すばらしい。
エラーもなく案外あっさりとインストールできてしまった。
しかも、最後に、httpd.confの設定例まで表示された。


httpd.confの設定は後回しにして。
ついでに、RubyとMySQLを連携させるためのモジュールらしきものもいれておく。
(これが必要なのかは確認していない・・・)

# apt-get install MySQL-ruby



これできっと完璧。
ということで、httpd.confの編集。

# vim /etc/apache2/conf/httpd.conf
(以下を追加)
LoadModule passenger_module /var/lib/gems/1.8/gems/passenger-1.0.5/ext/apache2/mod_passenger.so
RailsSpawnServer /var/lib/gems/1.8/gems/passenger-1.0.5/bin/passenger-spawn-server
RailsRuby /usr/bin/ruby



ということで、Apacheを再起動。
# service apache2 restart




ということで、一通りインストールは完了した。

Tag it:
Hatena
Delicious
Spurl
blogmarks

Add as favourites (58) | Quote this article on your site | Views: 3320

  Comments (10)
 1 Comment 04 1622
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 04-07-2008 23:21 , IP: 91.121.165.32
Hielloo , [URL=http://70.dream.az.pl]tulsa community college fire technology[/URL], [URL=http://298.dream.az.pl]2007 mens college basketball schedule[/URL], [URL=http://438.dream.az.pl]unexperienced college student jobs[/URL], [URL=http://1.dream.az.pl]nude college coeds, from new york colleges[/URL], [URL=http://301.dream.az.pl]columbia college of chicago[/URL], [URL=http://296.dream.az.pl]college teen sex videos[/URL], [URL=http://269.dream.az.pl]japanese college girls in wet t-shirts[/URL], [URL=http://384.dream.az.pl]compare prices of used cheap college books[/URL], [URL=http://168.dream.az.pl]miami hurricanes vs boston college tickets[/URL], [URL=http://571.dream.az.pl]american river college sacramento campus map[/URL], [URL=http://311.dream.az.pl]college girls horny[/URL], [URL=http://195.dream.az.pl]broward community college registration[/URL], [URL=http://236.dream.az.pl]pierce college, la[/URL], [URL=http://257.dream.az.pl]northern virginia community college loudoun[/URL], [URL=http://480.dream.az.pl]american river college bookstore[/URL], [URL=http://338.dream.az.pl]free real college sex[/URL], [URL=http://575.dream.az.pl]college girls party hard[/URL], [URL=http://105.dream.az.pl]college guys masturbating[/URL], [URL=http://476.dream.az.pl]cheap textbooks for college[/URL], [URL=http://102.dream.az.pl]lansing community college michigan[/URL], [URL=http://325.dream.az.pl]college loans for non traditional students[/URL]
 2 Comment 04 2305
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 05-07-2008 06:04 , IP: 91.121.165.32
Hielloo , [URL=http://175.admissibility.waw.pl]bankruptcy loan lenders[/URL], [URL=http://423.hubel.waw.pl]boston college football photos[/URL], [URL=http://717.kurtis.radom.pl]flight suits[/URL], [URL=http://290.admissibility.waw.pl]construction loan house[/URL], [URL=http://129.admissibility.waw.pl]bad credit secured personal loan[/URL], [URL=http://42.admissibility.waw.pl]fixed rate mortgage versus home equity loan[/URL], [URL=http://186.admissibility.waw.pl]online pre-approval for a home loan[/URL], [URL=http://426.admissibility.waw.pl]30 year mortgage home equity loan rates[/URL], [URL=http://416.kurtis.radom.pl]flight simulator x joystick[/URL], [URL=http://371.admissibility.waw.pl]calculate loan car payment[/URL], [URL=http://350.admissibility.waw.pl]home equity loan versus a home credit line[/URL], [URL=http://236.admissibility.waw.pl]24 hour cash loan[/URL], [URL=http://605.kurtis.radom.pl]microsoft flight simulator patch[/URL], [URL=http://266.kurtis.radom.pl]gay flight attendant[/URL], [URL=http://681.hubel.waw.pl]how to get pasadena city college from la[/URL], [URL=http://635.hubel.waw.pl]st louis community college florissant vally compus[/URL], [URL=http://410.hubel.waw.pl]best used college books[/URL], [URL=http://227.admissibility.waw.pl]default of federal student loan[/URL], [URL=http://615.hubel.waw.pl]tv college schedule football[/URL], [URL=http://715.kurtis.radom.pl]microsoft flight simulator 2004[/URL], [URL=http://528.kurtis.radom.pl]flight 29 is down[/URL]
 3 Comment 05 1658
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 05-07-2008 23:58 , IP: 91.121.165.32
Hielloo , [URL=http://253.perm.radom.pl]cheap airline ticket from london heathrow to zurich[/URL], [URL=http://383.meissner.wroclaw.pl]soap coupons[/URL], [URL=http://191.filmdom.tychy.pl]cheap ticket for airline[/URL], [URL=http://127.filmdom.tychy.pl]airline cheap london ticket[/URL], [URL=http://105.filmdom.tychy.pl]cheap cheap cheap airline ticket[/URL], [URL=http://94.perm.radom.pl]northwest airline ticket reservation[/URL], [URL=http://745.perm.radom.pl]super cheap airline ticket[/URL], [URL=http://410.filmdom.tychy.pl]airline ticket to albania[/URL], [URL=http://193.meissner.wroclaw.pl]six flags nj coupons[/URL], [URL=http://435.meissner.wroclaw.pl]wallpaper coupons[/URL], [URL=http://395.filmdom.tychy.pl]best southwest airline ticket available[/URL], [URL=http://467.perm.radom.pl]cheap usa 3000 airways airline ticket[/URL], [URL=http://610.perm.radom.pl]airline ticket to puerta plata[/URL], [URL=http://428.meissner.wroclaw.pl]coupons vegas[/URL], [URL=http://471.meissner.wroclaw.pl]toothbrush coupons[/URL], [URL=http://7.perm.radom.pl]srilankan airline ticket booking singapore to srilanka[/URL], [URL=http://172.meissner.wroclaw.pl]coupons for frontgate[/URL], [URL=http://64.meissner.wroclaw.pl]campmor coupons[/URL]
 4 Comment 06 129
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 08:28 , IP: 91.121.165.32
Hielloo , [URL=http://275.whack.az.pl]mp3 watches wholesale and job lots[/URL], [URL=http://quickstep.az.pl/676.html]hotel restaurant manager chef and deli newark new jersey[/URL], [URL=http://368.whack.az.pl]womens gucci watches 1400l[/URL], [URL=http://359.whack.az.pl]emerald wg ring jewelry watches[/URL], [URL=http://quickstep.az.pl/321.html]tropicana hotel las vegas reservations[/URL], [URL=http://quickstep.az.pl/1309.html]sands hotel casino reno[/URL], [URL=http://278.whack.az.pl]amber ring vintage jewelry watches[/URL], [URL=http://525.whack.az.pl]timex digital analog watches[/URL], [URL=http://12.whack.az.pl]three stone princess diamond ring 1 jewelry watches[/URL], [URL=http://quickstep.az.pl/1157.html]discount hotel rates for outrigger reef on the beach[/URL], [URL=http://quickstep.az.pl/1351.html]south coast hotel casino las vegas[/URL], [URL=http://quickstep.az.pl/1249.html]hard rock casino and hotel las vegas nv[/URL], [URL=http://176.whack.az.pl]mens elgin watches with austrian crystals[/URL], [URL=http://190.whack.az.pl]rolex 18k bezel jewelry watches[/URL], [URL=http://quickstep.az.pl/1071.html]hotel westin[/URL], [URL=http://quickstep.az.pl/1106.html]missouri hotel coupons[/URL], [URL=http://675.whack.az.pl]nfl analog and digital watches casio[/URL], [URL=http://quickstep.az.pl/1485.html]official site excalibur hotel las vegas[/URL], [URL=http://quickstep.az.pl/1047.html]fairmont hotel vancouver bc[/URL], [URL=http://386.whack.az.pl]diamond aqua master watches[/URL], [URL=http://897.whack.az.pl]american mechanical wind pocket watches[/URL], [URL=http://quickstep.az.pl/590.html]monte carlo hotel las vegas,nevada[/URL], [URL=http://quickstep.az.pl/145.html]neutral milk hotel lyrics[/URL], [URL=http://1113.whack.az.pl]vintage solid gold watch jewelry watches[/URL], [URL=http://11.whack.az.pl]diamond white gold bezel jewelry watches[/URL]
 5 Comment 06 2150
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 07-07-2008 04:49 , IP: 91.121.165.32
Hielloo , [URL=http://385.bangladesh.olsztyn.pl]community college of philadelphia jewelry design[/URL], [URL=http://106.bangladesh.olsztyn.pl]straight college men preview[/URL], [URL=http://222.bangladesh.olsztyn.pl]college cheerleaders boobs[/URL], [URL=http://97.breadfruit.az.pl]airline cheapest price ticket[/URL], [URL=http://89.bangladesh.olsztyn.pl]candid college party pictures[/URL], [URL=http://79.tiling.mazury.pl]habbo hotel aus[/URL], [URL=http://191.breadfruit.az.pl]cheapest airline ticket from sjc to sea[/URL], [URL=http://449.tiling.mazury.pl]san diego hotel package[/URL], [URL=http://572.tiling.mazury.pl]hotel discount new york[/URL], [URL=http://502.tiling.mazury.pl]san diego convention center hotel[/URL], [URL=http://540.breadfruit.az.pl]airline ticket from saint louis to addis ababa[/URL], [URL=http://182.breadfruit.az.pl]cheap airline ticket dubai[/URL], [URL=http://563.breadfruit.az.pl]discount airline ticket fare[/URL], [URL=http://334.breadfruit.az.pl]delta airline ticket to africa[/URL], [URL=http://452.bangladesh.olsztyn.pl]cuyahoga community college apics[/URL], [URL=http://464.bangladesh.olsztyn.pl]personal loan for college student[/URL], [URL=http://550.mamet.az.pl]grand casino hinckley mille lacs[/URL], [URL=http://694.breadfruit.az.pl]cheap airline ticket airfare flights[/URL], [URL=http://85.tiling.mazury.pl]san diego ca hotel[/URL], [URL=http://506.tiling.mazury.pl]hotel town country categories hotels motels[/URL], [URL=http://252.bangladesh.olsztyn.pl]online cosmetology college courses[/URL]
 6 Comment 07 1834
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 01:33 , IP: 91.121.165.32
Hielloo , [URL=http://225.creeps.warszawa.pl]from singapore cheap airline to manila tiger[/URL], [URL=http://349.pollinate.mazury.pl]spirit airline miami fla to montego bay jamaica[/URL], [URL=http://15.creeps.warszawa.pl]airline network preston[/URL], [URL=http://774.pollinate.mazury.pl]database modeling of airline reservation system[/URL], [URL=http://322.palmae.az.pl]emerald bracelet jewelry watches[/URL], [URL=http://569.anglicization.az.pl]airline deals military[/URL], [URL=http://206.pollinate.mazury.pl]problem facing jetblue airline[/URL], [URL=http://382.pollinate.mazury.pl]phil airline ticketing services[/URL], [URL=http://330.imposition.az.pl]free chat rooms pa dating[/URL], [URL=http://746.imposition.az.pl]free women internet dating service[/URL], [URL=http://505.hominidae.az.pl]airline discount fares[/URL], [URL=http://744.hominidae.az.pl]travelocity airline tickets[/URL], [URL=http://294.creeps.warszawa.pl]mexicana airline phone[/URL], [URL=http://364.creeps.warszawa.pl]allegiant airline check in requirements[/URL], [URL=http://1060.palmae.az.pl]lia sophia jewelry and watches[/URL], [URL=http://41.creeps.warszawa.pl]airline tycoon pc[/URL], [URL=http://57.hominidae.az.pl]current airline ticket prices[/URL], [URL=http://642.hominidae.az.pl]buying airline tickets at pdx[/URL], [URL=http://1393.imposition.az.pl]find singles dating services[/URL]
 7 Comment 07 2332
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 06:31 , IP: 91.121.165.32
Hielloo , [URL=http://111.pollinate.mazury.pl]british airline to malaga[/URL], [URL=http://1607.imposition.az.pl]northern california free dating for sex sites no credit card[/URL], [URL=http://241.hominidae.az.pl]mexicana airline tikets[/URL], [URL=http://1487.imposition.az.pl]high joy adult dating site[/URL], [URL=http://363.anglicization.az.pl]buying airline tickets last minute cheap[/URL], [URL=http://273.anglicization.az.pl]philippine airline reschedule online[/URL], [URL=http://736.anglicization.az.pl]reduced airline fares[/URL], [URL=http://539.palmae.az.pl]pictures of womens rolex watches[/URL], [URL=http://467.imposition.az.pl]phone dating services in portland oregon[/URL], [URL=http://536.anglicization.az.pl]eva airline reviews[/URL], [URL=http://1620.imposition.az.pl]want meet deaf dating or frineds chat room[/URL], [URL=http://265.pollinate.mazury.pl]list of airline logos[/URL], [URL=http://192.creeps.warszawa.pl]singapore airline boeing 777-200 business class[/URL], [URL=http://25.hominidae.az.pl]airfare tiger airline[/URL], [URL=http://771.palmae.az.pl]wholesale novelty watches real fan[/URL], [URL=http://441.palmae.az.pl]discount citizen watches[/URL], [URL=http://203.creeps.warszawa.pl]airline tycoon evolution download[/URL], [URL=http://36.anglicization.az.pl]newark international airport continental airline[/URL], [URL=http://862.palmae.az.pl]vintage rado green horse watches[/URL], [URL=http://114.creeps.warszawa.pl]malaysia airline system online[/URL], [URL=http://175.anglicization.az.pl]turkish airline 66[/URL]
 8 Comment 08 1413
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 21:13 , IP: 91.121.165.32
Hielloo , [URL=http://37.smooch.az.pl]play free for fun slots no downloading[/URL], [URL=http://626.overvaluation.az.pl]pace antique slot machine[/URL], [URL=http://21.bribery.az.pl]countrywide home loan interest rate[/URL], [URL=http://759.overvaluation.az.pl]slot car racing in oklahoma city , oklahoma[/URL], [URL=http://555.chain.az.pl]airline ticket agents cheap[/URL], [URL=http://294.bribery.az.pl]bond money for fha home loan purchase[/URL], [URL=http://533.smooch.az.pl]sims free slots com fruit smoothies[/URL], [URL=http://351.overvaluation.az.pl]free slot machine online games[/URL], [URL=http://810.overvaluation.az.pl]other free casino slot games to play for free[/URL], [URL=http://804.overvaluation.az.pl]download slot machines for free[/URL], [URL=http://466.chain.az.pl]bid airline ticket[/URL], [URL=http://314.overvaluation.az.pl]all slot casino[/URL], [URL=http://499.smooch.az.pl]strategy for slots machines[/URL], [URL=http://314.bribery.az.pl]car finance loan philadelphia special[/URL], [URL=http://356.chain.az.pl]best airline ticket prices[/URL], [URL=http://204.bribery.az.pl]how to get a bad credit auto loan[/URL], [URL=http://830.overvaluation.az.pl]slot machine games online[/URL], [URL=http://807.overvaluation.az.pl]slot drag car mustang[/URL], [URL=http://118.overvaluation.az.pl]igt hurricane slot machine[/URL], [URL=http://603.bribery.az.pl]payday advance loan[/URL], [URL=http://123.bribery.az.pl]average boat loan interest rate[/URL], [URL=http://553.chain.az.pl]cheap airline ticket to canada[/URL]
 9 Comment 09 1842
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 10-07-2008 01:42 , IP: 91.121.165.32
Hielloo , [URL=http://321.hornbeam.az.pl]flight simulater x america airline texture[/URL], [URL=http://886.bride-gift.az.pl]fossil state university jewelry watches[/URL], [URL=http://145.infarct.az.pl]scrm slot car racing[/URL], [URL=http://396.cauda.pila.pl]airline ticket special[/URL], [URL=http://858.bride-gift.az.pl]solid 14 gold mens gold jewelry watches[/URL], [URL=http://460.earlobe.az.pl]play msn free slots for fun[/URL], [URL=http://83.earlobe.az.pl]online wheel of fortune slots free[/URL], [URL=http://280.hornbeam.az.pl]delta airline uniform catalog[/URL], [URL=http://194.hornbeam.az.pl]airline schedule for united states[/URL], [URL=http://707.cauda.pila.pl]eva airline ticket[/URL], [URL=http://154.cauda.pila.pl]cheap ticket airline[/URL], [URL=http://701.defrost.az.pl]real sex story archive strip poker[/URL], [URL=http://124.defrost.az.pl]how do you play poker[/URL], [URL=http://93.hornbeam.az.pl]airline vouchers southwest[/URL], [URL=http://553.hornbeam.az.pl]colorado news frontire airline bomb threat[/URL], [URL=http://285.defrost.az.pl]video strip poker 2 nokia[/URL], [URL=http://667.earlobe.az.pl]free fun video casino slots for free[/URL], [URL=http://352.infarct.az.pl]igt s2000 slot machine for sale[/URL], [URL=http://359.hornbeam.az.pl]delta airline customer service number[/URL], [URL=http://155.earlobe.az.pl]free slots free joker poker[/URL], [URL=http://54.hornbeam.az.pl]best deals airline tickets[/URL]
 10 Comment 09 2342
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 10-07-2008 06:41 , IP: 91.121.165.32
Hielloo , [URL=http://211.gigabit.az.pl]tramadol ultram side effects[/URL], [URL=http://998.histaminase.az.pl]can xanax overdose kill you[/URL], [URL=http://480.histaminase.az.pl]cheap 5mg xanax without prescriptions[/URL], [URL=http://99.dung.az.pl]casino felt mat double sided baccarat blackjack[/URL], [URL=http://862.gigabit.az.pl]tramadol 20without 20prescription[/URL], [URL=http://1225.rheumatic.az.pl]grand casino coushatta hotel voucher[/URL], [URL=http://1834.dung.az.pl]casino download free game online[/URL], [URL=http://137.histaminase.az.pl]xanax more for patients[/URL], [URL=http://944.rheumatic.az.pl]red rock hotel casino resort[/URL], [URL=http://433.histaminase.az.pl]signs of xanax addiction[/URL], [URL=http://413.histaminase.az.pl]cheap online xanax[/URL], [URL=http://8.gigabit.az.pl]hydrochloride mallinckrodt pharmaceutical tablet tramadol[/URL], [URL=http://390.histaminase.az.pl]order xanax no prescription[/URL], [URL=http://286.histaminase.az.pl]go on and slip it two xanax bars lyrics[/URL], [URL=http://179.histaminase.az.pl]fake xanax 2mg pictures[/URL], [URL=http://328.histaminase.az.pl]ocd xanax[/URL]

Write Comment
  • Please keep the topic of messages relevant to the subject of the article.
  • Personal verbal attacks will be deleted.
  • Please don't use comments to plug your web site. Such material will be removed.
  • Just ensure to *Refresh* your browser for a new security code to be displayed prior to clicking on the 'Send' button.
  • Keep in mind that the above process only applies if you simply entered the wrong security code.
Name:
Comment:

Code:* Code

Powered by AkoComment Tweaked Special Edition v.1.4.6
AkoComment © Copyright 2004 by Arthur Konze - www.mamboportal.com
All right reserved

 
< 前へ   次へ >

© 2008 Labs Zsrv Net
Joomla! is Free Software released under the GNU/GPL License.
Translation is Joomla!JAPAN