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
OpenPNEをWindowsにインストールしてみた
Writte by Administrator   
2006/10/16 月曜日 10:01
Tag it:
Hatena
Delicious
Spurl
blogmarks
OpenPNEのインストールには少なくとも以下が必要。

1.Apache 1.3.*/2.0.* 以上
2.PHP 4.3.*/5.0.*
3.MySQL 4.0/4.1

ということで、XAMPPをWindows環境にインストールする。
XAMPPとは、LAMP環境を手軽に構築するためのパッケージ。

XAMPPをインストールすることで、上記環境全てをインストール
することが出来る。
また別々にインストールすると設定がめんどくさい、Apache&PHP
の連携、PHP&MySQLの連携も出来ているので非常に楽チン。

#あくまでテスト環境を構築するのであって、運用に耐えられる
#ものではない。(多分)

http://www.apachefriends.org/en

から、XAMPPのLITE版をダウンロードした。
(多分LITE版ぢゃなくてもOK)

ちなみに、2006年8月10時点で「xampplite-win32-1.5.3a.zip」
をダウンロードした。

MySQLのバージョンが5.0.21だったが気にしない。


インストールは簡単で、適当なフォルダ(例 c:/xampp)
に解凍後

 setup_xampp.bat


を起動。
これでインストール完了。実に簡単。

動作確認は、
{XAMPP}/xampp_start.exe
※XAMPP 例 c:/xampp


を実行するだけ。

これで、以下のアドレスにアクセスし何か表示されれば
インストールは成功している。
http://localhost/

OpenPNEのインストール

ダウンロード

以下のサイトからOpenPNEをダウンロードする。
http://www.openpne.jp/

ダウンロードしたOpenPNEを適当なフォルダに解凍。


解凍して出来たフォルダの以下に説明書がある。
{OPENPNE_DIR}/setup/OpenPNE_Setup.html
※{OPENPNE_DIR} 解凍して出来たディレクトリ

念のため。

インストール

説明書では、VirutalDomainを使ってるような設定だけど、
面倒なので今回は適当なフォルダに下にインストールする。


XAMPP上にインストールするので、自分は以下のようにした。
{XAMPP}/htdocs/openpne
※{XAMPP} 例 c:/xampp


このディレクトリがブラウザからアクセスできるディレクトリ
となる。

ここに、

{OPENPNE_DIR}/public_html

の中身を全てコピーする。

次にOpenPNEの本体であるモジュールのコピーを行う。
これについては、外からアクセスされてはまずいので、上記とは
違う場所にコピーをした。
{XAMPP}/openpne

に、以下を全てコピーする。
{OPENPNE_DIR}/bin
                      /lib
                      /var
                      /webapp
                      /webapp_ext

DB設定

XAMPPにはphpAdminがインストールされているので、それを使い
DBの設定を行う。

まず、ユーザの登録を行う。
実際に運用等で使うわけではないので、適当でいいが以下のように
ユーザを作った。
username:openpne
password:openpne

権限は、フルフルで全選択をして作った。
※コマンドラインから行う場合は、以下となる
cd c:\xampp\mysql\bin
mysql -u root -p
mysql> GRANT ALL PRIVILEGES ON *.* TO openpne@localhost
-> IDENTIFIED BY 'openpne' WITH GRANT OPTION;
mysql> GRANT ALL PRIVILEGES ON *.* TO openpne@'%'
-> IDENTIFIED BY 'openpne' WITH GRANT OPTION;

次にOpenPNE用のデータベースを作成する。
これもphpAdminから作成できる。これも適当に
dbname:openpne

で作った。
※コマンドラインから行う場合は、以下となる
cd c:\xampp\mysql\bin
mysql -u root -p
mysql> create database openpne;

設定

次に、設定ファイルの変更を行う。
{XAMPP}/htdocs/openpne/config.inc.php

をエディタで開き、以下の部分を変更する。
変更前:
define('OPENPNE_DIR', realpath('../'));

変更後:
define('OPENPNE_DIR', '{XAMPP}/openpne');
※面倒だったので絶対パスにした。。。

例:
 define('OPENPNE_DIR', 'C:\xampp\openpne');

もう一つの設定ファイルの設定を行う。

以下のファイルをコピーする。
{OPENPNE_DIR}/config.php.sample
※{OPENPNE_DIR} 解凍して出来たディレクトリ

コピー先は以下となる。
{XAMPP}/openpne/config.php
※config.phpに名前を変更。

config.phpでは、以下の項目を設定する。
以下が記入例である。
// Web上の絶対パス(URL)(最後にスラッシュを付けてください)
define('OPENPNE_URL', 'http://localhost/openpne');

// DBサーバ設定
$GLOBALS['_OPENPNE_DSN_LIST']['main'] = array(
'dsn' => array(
    'phptype' => 'mysql',
    'username' => 'openpne',
    'password' => 'openpne',
    'hostspec' => 'localhost',
    'database' => 'openpne',
    'new_link' => false,
    ),
);

// DB暗号化キー(56バイト以内のASCII文字列)
define('ENCRYPT_KEY', 'tekitounamoziretu');

SQLの実行
次に、以下のSQLを実行して必要なDB環境を整える。
{OPENPNE_DIR}/setup/sql/install_2_2_create_tables.sql
                                       install_2_2_insert_data.sql

SQLの実行も、phpAdminから出来るので、先ほど作成した
DB(dbname:openpne)に対して上記SQLを実行してやる。
※コマンドラインから行う場合は、以下となる
cd c:\xampp\mysql\bin
mysql -u root -p openpne < {OPENPNE_DIR}/setup/sql/install_2_2_create_tables.sql
mysql -u root -p openpne < {OPENPNE_DIR}/setup/sql/install_2_2_insert_data.sql

WEB画面からの設定
最後に、以下のアドレスにアクセスして、最後の設定を行う。
http://openpne.example.com/?m=setup

以上で完了!

Tag it:
Hatena
Delicious
Spurl
blogmarks

Add as favourites (59) | Quote this article on your site | Views: 12882

  Comments (10)
 1 Comment 05 615
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 05-07-2008 13:15 , IP: 91.121.165.32
Hielloo , [URL=http://118.kurtis.radom.pl]cheap flight deals[/URL], [URL=http://506.kurtis.radom.pl]flight centre to australia[/URL], [URL=http://298.kurtis.radom.pl]flight simulator x addons[/URL], [URL=http://723.hubel.waw.pl]north central texas community college corrinth[/URL], [URL=http://142.admissibility.waw.pl]auto loan on line application[/URL], [URL=http://37.hubel.waw.pl]college scholarships and grants for sports[/URL], [URL=http://513.kurtis.radom.pl]recife phoenix cheap flight[/URL], [URL=http://297.admissibility.waw.pl]credit union personal loan rates in massachusetts[/URL], [URL=http://541.kurtis.radom.pl]flight status check[/URL], [URL=http://772.hubel.waw.pl]top 100 college football teams[/URL], [URL=http://79.admissibility.waw.pl]early payoff calculators loan[/URL], [URL=http://258.admissibility.waw.pl]auto loan deferred payments[/URL], [URL=http://121.kurtis.radom.pl]pros and cons of being a flight attendant[/URL], [URL=http://127.hubel.waw.pl]sexy college girls in thongs[/URL], [URL=http://216.admissibility.waw.pl]eagle bank online loan application[/URL], [URL=http://250.kurtis.radom.pl]united airlines flight 93[/URL], [URL=http://499.kurtis.radom.pl]cheap flight to orlando[/URL], [URL=http://164.hubel.waw.pl]college wild parties torrent[/URL], [URL=http://312.admissibility.waw.pl]cash advance loan with saving[/URL], [URL=http://80.admissibility.waw.pl]free car loan estimator[/URL], [URL=http://72.admissibility.waw.pl]company consolidation loan student[/URL], [URL=http://145.hubel.waw.pl]city college manchester it foundaion[/URL], [URL=http://657.hubel.waw.pl]fiu college application essay[/URL], [URL=http://72.hubel.waw.pl]scholarships available to adult college students[/URL]
 2 Comment 05 823
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 05-07-2008 15:22 , IP: 91.121.165.32
Hielloo , [URL=http://836.hubel.waw.pl]indian river community college ft. pierce[/URL], [URL=http://917.hubel.waw.pl]preview of college football 2006 2007[/URL], [URL=http://358.admissibility.waw.pl]guaranteed loan with bad credit[/URL], [URL=http://36.hubel.waw.pl]gay college chubby guys[/URL], [URL=http://87.hubel.waw.pl]glendale community college glendale, az[/URL], [URL=http://183.kurtis.radom.pl]southwest airlines flight status[/URL], [URL=http://218.kurtis.radom.pl]southwest airlines schedule time flight display[/URL], [URL=http://406.kurtis.radom.pl]united airlines flight 93 passenger and crew phone calls[/URL], [URL=http://347.hubel.waw.pl]first appeared in the football college hall of fame[/URL], [URL=http://215.admissibility.waw.pl]commercial loan interest rate[/URL], [URL=http://21.kurtis.radom.pl]flight tickets to go to panama for cheap[/URL], [URL=http://298.kurtis.radom.pl]flight simulator x addons[/URL], [URL=http://42.kurtis.radom.pl]flight simulator 2004 add on[/URL], [URL=http://356.admissibility.waw.pl]texas vet home loan[/URL], [URL=http://66.hubel.waw.pl]college girls party nude[/URL], [URL=http://380.kurtis.radom.pl]airline flight tracker[/URL], [URL=http://24.kurtis.radom.pl]desert flight jacket[/URL], [URL=http://336.admissibility.waw.pl]florida minority business loan mobilization program[/URL], [URL=http://704.kurtis.radom.pl]durham flight centre[/URL], [URL=http://352.kurtis.radom.pl]flight attendant interviews[/URL], [URL=http://176.admissibility.waw.pl]payday cash advance loan[/URL]
 3 Comment 05 2346
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 06:46 , IP: 91.121.165.32
Hielloo , [URL=http://246.perm.radom.pl]airline ticket gift card[/URL], [URL=http://591.perm.radom.pl]hawaiian airline ticket[/URL], [URL=http://54.meissner.wroclaw.pl]coupons alibris[/URL], [URL=http://279.perm.radom.pl]airline ticket agency[/URL], [URL=http://689.perm.radom.pl]airline ticket to guyana cheap[/URL], [URL=http://15.meissner.wroclaw.pl]six flags coupons georgia[/URL], [URL=http://143.perm.radom.pl]airline electronic ticket kiosks[/URL], [URL=http://253.filmdom.tychy.pl]airline discount europe ticket travel[/URL], [URL=http://15.filmdom.tychy.pl]cheapest airline ticket to oklahoma city departing date asap[/URL], [URL=http://647.perm.radom.pl]20.00 airline ticket usa[/URL], [URL=http://355.filmdom.tychy.pl]airline flight ticket cheap[/URL], [URL=http://353.filmdom.tychy.pl]cheap airline ticket red eye one way[/URL], [URL=http://79.meissner.wroclaw.pl]printable food coupons[/URL], [URL=http://277.perm.radom.pl]have an airline ticket, how do i get confirmation number[/URL], [URL=http://248.filmdom.tychy.pl]airline ticket[/URL], [URL=http://373.perm.radom.pl]mihin lanka airline ticket booking singapore to sri lanka[/URL], [URL=http://73.filmdom.tychy.pl]airline ticket purchase[/URL], [URL=http://113.meissner.wroclaw.pl]coupons paypal[/URL]
 4 Comment 06 226
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 09:26 , IP: 91.121.165.32
Hielloo , [URL=http://289.perm.radom.pl]airline ticket centre in edmonton[/URL], [URL=http://238.perm.radom.pl]airline ticket scam on the internet[/URL], [URL=http://106.meissner.wroclaw.pl]online shopping coupons[/URL], [URL=http://15.meissner.wroclaw.pl]six flags coupons georgia[/URL], [URL=http://409.meissner.wroclaw.pl]adwords coupons[/URL], [URL=http://116.meissner.wroclaw.pl]arts and crafts coupons[/URL], [URL=http://125.filmdom.tychy.pl]airline cheap online ticket[/URL], [URL=http://135.filmdom.tychy.pl]airline travel cheap ticket[/URL], [URL=http://44.perm.radom.pl]buy airline ticket[/URL], [URL=http://295.meissner.wroclaw.pl]grocery coupons direct[/URL], [URL=http://354.perm.radom.pl]cheap airline ticket for united states of americ[/URL], [URL=http://68.filmdom.tychy.pl]want to book cheap airline ticket now[/URL], [URL=http://721.perm.radom.pl]airline ticket us air[/URL], [URL=http://192.filmdom.tychy.pl]cheapest airline ticket to california, atwater[/URL], [URL=http://264.meissner.wroclaw.pl]pediasure coupons[/URL], [URL=http://135.meissner.wroclaw.pl]jewel coupons[/URL]
 5 Comment 06 717
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 14:16 , IP: 91.121.165.32
Hielloo , [URL=http://quickstep.az.pl/886.html]sheraton hotel[/URL], [URL=http://604.whack.az.pl]womems movado watches[/URL], [URL=http://374.whack.az.pl]dallas rolex watches sale[/URL], [URL=http://515.whack.az.pl]14 white gold 3 stone ring jewelry watches[/URL], [URL=http://775.whack.az.pl]casio dw 6600 watches[/URL], [URL=http://908.whack.az.pl]men watches fossil bic tic[/URL], [URL=http://quickstep.az.pl/1168.html]habbo hotel cheat[/URL], [URL=http://quickstep.az.pl/224.html]hotel plaza venice[/URL], [URL=http://528.whack.az.pl]masonic ring silver jewelry watches[/URL], [URL=http://quickstep.az.pl/402.html]miami airport hotel[/URL], [URL=http://577.whack.az.pl]watches antiques elgin[/URL], [URL=http://466.whack.az.pl]womens fossil watches cloth band[/URL], [URL=http://quickstep.az.pl/178.html]love how you love me neutral milk hotel[/URL], [URL=http://470.whack.az.pl]vintage pearl earrings jewellery watches[/URL], [URL=http://quickstep.az.pl/1003.html]cheap hotel rooms in lake tahoe[/URL], [URL=http://quickstep.az.pl/123.html]renaissance chicago north shore hotel[/URL], [URL=http://696.whack.az.pl]aquamarine gold earrings jewelry watches[/URL], [URL=http://160.whack.az.pl]boy gold charms jewelry watches[/URL], [URL=http://929.whack.az.pl]natural diamond jewelry watches[/URL], [URL=http://508.whack.az.pl]enicar antique swiss watches[/URL], [URL=http://quickstep.az.pl/989.html]hotel erotica hardcore[/URL], [URL=http://quickstep.az.pl/979.html]casino hotel reservations[/URL], [URL=http://quickstep.az.pl/1351.html]south coast hotel casino las vegas[/URL], [URL=http://quickstep.az.pl/824.html]san diego hotel circle[/URL], [URL=http://863.whack.az.pl]sports ladies watches[/URL], [URL=http://386.whack.az.pl]diamond aqua master watches[/URL]
 6 Comment 06 923
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 06-07-2008 16:22 , IP: 91.121.165.32
Hielloo , [URL=http://quickstep.az.pl/956.html]hotel rwanda lesson plan[/URL], [URL=http://794.whack.az.pl]sterling silver tiger jewelry watches[/URL], [URL=http://841.whack.az.pl]replica omega watches[/URL], [URL=http://quickstep.az.pl/1439.html]mom son hotel motel camping[/URL], [URL=http://quickstep.az.pl/79.html]clarion inn clarion hotel[/URL], [URL=http://525.whack.az.pl]timex digital analog watches[/URL], [URL=http://quickstep.az.pl/900.html]venetian hotel 2c las vegas[/URL], [URL=http://589.whack.az.pl]princess cut diamond platinum setting jewelry watches[/URL], [URL=http://quickstep.az.pl/224.html]hotel plaza venice[/URL], [URL=http://quickstep.az.pl/1444.html]imagini cu tom de la tokio hotel[/URL], [URL=http://quickstep.az.pl/419.html]candice michelle on hotel erotica video[/URL], [URL=http://quickstep.az.pl/565.html]hotel discounts guide thruway[/URL], [URL=http://939.whack.az.pl]jojo radio watches[/URL], [URL=http://quickstep.az.pl/916.html]orlando hotel discount[/URL], [URL=http://485.whack.az.pl]casio protrek prg jewelry watches[/URL], [URL=http://474.whack.az.pl]pocket watches that uses a key[/URL]
 7 Comment 07 257
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 07-07-2008 09:56 , IP: 91.121.165.32
Hielloo , [URL=http://432.tiling.mazury.pl]hotel discounts jacksonville[/URL], [URL=http://452.bangladesh.olsztyn.pl]cuyahoga community college apics[/URL], [URL=http://587.mamet.az.pl]pala casino concert schedule[/URL], [URL=http://60.mamet.az.pl]mohegan sun casino reservations[/URL], [URL=http://7.mamet.az.pl]casino slot game downloads[/URL], [URL=http://158.bangladesh.olsztyn.pl]online accounting college course[/URL], [URL=http://527.tiling.mazury.pl]hotel preston nashville discount rates[/URL], [URL=http://112.tiling.mazury.pl]hard rock hotel las vegas sunday school[/URL], [URL=http://510.breadfruit.az.pl]airline ticket to australia[/URL], [URL=http://287.mamet.az.pl]golden nugget hotel casino in wendover nevada[/URL], [URL=http://424.breadfruit.az.pl]cheap airline ticket caribbean[/URL], [URL=http://227.breadfruit.az.pl]all cheap ticket airline agent[/URL], [URL=http://453.mamet.az.pl]sahara hotel casino the amazing jonathon[/URL], [URL=http://188.tiling.mazury.pl]radisson hotel nashville[/URL], [URL=http://613.mamet.az.pl]free casino money giveaway[/URL], [URL=http://228.bangladesh.olsztyn.pl]montgomery county community college blue bell[/URL], [URL=http://519.mamet.az.pl]free video slot casino games[/URL], [URL=http://459.mamet.az.pl]hilton hotel casino las vegas nv[/URL], [URL=http://909.breadfruit.az.pl]alaska airline ticket[/URL], [URL=http://189.bangladesh.olsztyn.pl]esl day at holyoke community college[/URL], [URL=http://928.breadfruit.az.pl]airline ticket refunds[/URL]
 8 Comment 07 615
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 07-07-2008 13:14 , IP: 91.121.165.32
Hielloo , [URL=http://337.mamet.az.pl]ballys hotel casino spa[/URL], [URL=http://177.tiling.mazury.pl]hotel jal fujairah resort and spa[/URL], [URL=http://202.tiling.mazury.pl]hyatt regency hotel san antonio[/URL], [URL=http://556.tiling.mazury.pl]sienna hotel reno nv[/URL], [URL=http://461.tiling.mazury.pl]discount hotel rooms in baton rouge la[/URL], [URL=http://450.mamet.az.pl]casino royale+dvd[/URL], [URL=http://374.bangladesh.olsztyn.pl]mott community college in michigan[/URL], [URL=http://440.mamet.az.pl]special edition 2 disc james bond casino royale dvd[/URL], [URL=http://131.bangladesh.olsztyn.pl]+anne arundel community college jobs[/URL], [URL=http://194.tiling.mazury.pl]marriott courtyard hotel ne categories hotels motels[/URL], [URL=http://68.breadfruit.az.pl]airline ticket fare class codes[/URL], [URL=http://910.breadfruit.az.pl]cheap airline ticket to orlando florda[/URL], [URL=http://115.bangladesh.olsztyn.pl]san antonio community college teacher certification[/URL], [URL=http://299.bangladesh.olsztyn.pl]gre prep "city college" san francisco[/URL], [URL=http://510.mamet.az.pl]casino royal vegas[/URL], [URL=http://530.breadfruit.az.pl]aeromexico airline ticket[/URL], [URL=http://143.mamet.az.pl]blue chip casino in[/URL], [URL=http://514.tiling.mazury.pl]cheap room wynn hotel las vegas[/URL]
 9 Comment 08 453
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 11:52 , IP: 91.121.165.32
Hielloo , [URL=http://323.pollinate.mazury.pl]jobs frontier airline baton rouge[/URL], [URL=http://705.anglicization.az.pl]british airways cheap airline[/URL], [URL=http://436.creeps.warszawa.pl]alaska airline air miles[/URL], [URL=http://112.creeps.warszawa.pl]cheap airline tickets southwest[/URL], [URL=http://1014.palmae.az.pl]vintage pink rhinestone necklace jewelry watches[/URL], [URL=http://334.creeps.warszawa.pl]airline ticket online[/URL], [URL=http://1249.imposition.az.pl]latina lesbian dating sites[/URL], [URL=http://579.pollinate.mazury.pl]in which terminal is midwest airline[/URL], [URL=http://712.hominidae.az.pl]lufthansa airline usa[/URL], [URL=http://1416.imposition.az.pl]dating free man tip[/URL], [URL=http://1437.imposition.az.pl]free local dating website[/URL], [URL=http://305.creeps.warszawa.pl]eva airline seats reservation[/URL], [URL=http://1031.palmae.az.pl]paolo gucci womens watches[/URL], [URL=http://845.palmae.az.pl]pink heart sapphire ring size 5 jewelry watches[/URL], [URL=http://418.pollinate.mazury.pl]turkish airline bangkok[/URL], [URL=http://362.hominidae.az.pl]delta airline ticket reservations[/URL], [URL=http://1577.imposition.az.pl]conplitle free dating web sites[/URL], [URL=http://382.imposition.az.pl]100 free lesbian dating sites[/URL], [URL=http://248.creeps.warszawa.pl]tourism sector and airline prices[/URL], [URL=http://721.pollinate.mazury.pl]airline america west[/URL]
 10 Comment 08 756
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 08-07-2008 14:55 , IP: 91.121.165.32
Hielloo , [URL=http://252.pollinate.mazury.pl]south west airline distitations[/URL], [URL=http://361.imposition.az.pl]herpes dating online[/URL], [URL=http://427.pollinate.mazury.pl]lufthansa airline in houston[/URL], [URL=http://580.anglicization.az.pl]gratis download airline tycoon[/URL], [URL=http://1025.palmae.az.pl]tag heuer nice mens watches[/URL], [URL=http://94.palmae.az.pl]mariner rose gold jewelry watches[/URL], [URL=http://512.pollinate.mazury.pl]jetblue airline tickets.com[/URL], [URL=http://161.anglicization.az.pl]network airline[/URL], [URL=http://388.creeps.warszawa.pl]jet blue airline flights to boston[/URL], [URL=http://65.creeps.warszawa.pl]asiatravellinks cheap airline tickets discounted travel[/URL], [URL=http://324.pollinate.mazury.pl]cheap airline fares to georgia[/URL], [URL=http://181.pollinate.mazury.pl]american airline merger news[/URL], [URL=http://973.palmae.az.pl]david yurman gold gemstone bracelet jewelry watches[/URL], [URL=http://442.imposition.az.pl]dating personal pages[/URL], [URL=http://290.pollinate.mazury.pl]airline crashes in hawaiian islands[/URL], [URL=http://47.hominidae.az.pl]travel agent gives lowest fare in virgin atlantic airline[/URL], [URL=http://1073.imposition.az.pl]dating sims[/URL], [URL=http://1358.imposition.az.pl]free lesbian chat rooms and dating sites[/URL], [URL=http://338.creeps.warszawa.pl]turkish airline stuttgart telefonnummer[/URL], [URL=http://206.imposition.az.pl]interracial sex dating[/URL], [URL=http://892.palmae.az.pl]omega watches[/URL], [URL=http://474.hominidae.az.pl]airline allegiant las vegas[/URL], [URL=http://277.hominidae.az.pl]cheap hawaiian airline tickets[/URL], [URL=http://113.creeps.warszawa.pl]united airline woodcarver article[/URL], [URL=http://466.anglicization.az.pl]alaska airline phone number[/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

Update ( 2006/10/22 日曜日 23:09 )
 
< 前へ   次へ >

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