Home > phpBB > phpBB Login and Redirect with Modifying Code

phpBB Login and Redirect with Modifying Code

ต่อเนื่องจากเนื้อหาคราวก่อนในการ Login Integration กับ phpBB นั้น หากเราไม่ต้องการทำอะไรเกี่ยวกับการ login/logout เลย ให้ใช้ระบบ login ของ phpBB โดยพลัน แต่ต้องทำการแก้โค๊ดนิดหน่อย เพื่อทำให้หลัง login เสร็จแล้วจะทำการ redirect กลับมายังหน้าที่เรียกไป

ขอก๊อปเนื้อหาจากเว็บที่ผมไปดูมาเลยละกันนะ ประมาณว่าแปลเป็นไทย (ขอบคุณ tutorial-phpbb3-mod-login-redirection)

ไฟล์ที่เกี่ยวข้องมีดังต่อไปนี้
ucp.php
includes/functions.php,
styles/prosilver/template/overall_header.html

มาดูกันทีละไฟล์เลยละกัน ทั้งหมดนี้เป็นการรับ parameter ด้วย method post จากหน้าที่ส่งข้อมูลมา ทำให้ phpBB สามารถ redirect ตัวเองกลับไปยัง page นั้นๆได้ครับ
ucp.php
1. เปิดไฟล์ ucp.php ขึ้นมา
2. หาโค๊ดนี้ให้เจอครับ

1
2
3
4
5
6
7
8
case '<span>login</span>':
if ($user-&gt;data['is_registered'])
{
<span>redirect</span>(append_sid("{$phpbb_root_path}index.$phpEx"));
}
 
login_box(request_var('<span>redirect</span>', "index.$phpEx"));
break;

3. ให้เอาโค๊ดด้านล่างนี้ไปทับ (replace)

1
2
3
4
5
6
7
8
9
10
case '<span>login</span>':
$<span>redirect</span> = $_POST['from'];
 
if($user-&gt;data['is_registered'])
{
header("Location: ". append_sid($<span>redirect</span>));
}
 
login_box(request_var('<span>redirect</span>', "index.$phpEx"), '', '', '', '', append_sid($<span>redirect</span>));
break;

includes/functions.php
1. เปิดไฟล์ functions.php ขึ้นมา (แก้ระวังๆนะครับ เป็น core กลางเลยหน้านี้)
2. หาโค๊ดนี้ให้เจอ

1
'T_STYLESHEET_NAME'     => $user->theme['theme_name'],

3. วางโค๊ดนี้ไว้ด้านหลังครับ (add after)

1
'THIS_PAGE'             => str_ireplace('&','&amp;',$_SERVER['REQUEST_URI']),

4. หาโค๊ดนี้ให้เจอ

1
function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = false, $s_display = true)

5. เอาโค๊ดนี้ไปทับ (replace)

1
function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = false, $s_display = true, $redirect = './index.php')

styles/prosilver/template/overall_header.html
1. เปิดไฟล์ overall_header.html
2. หาโค๊ดนี้ให้เจอ

1
2
3
4
5
6
7
8
9
<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
            <div id="search-box">
                <form action="{U_SEARCH}" method="post" id="search">
                <fieldset>
                    <input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />
                    <input class="button2" value="{L_SEARCH}" type="submit" /><br />
                    <a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> {S_SEARCH_HIDDEN_FIELDS}
                </fieldset>
                </form>

3. จากนั้นเอาโค๊ดนี้ไว้ข้างหลัง (add after)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
                <form method="post" action="{S_LOGIN_ACTION}" class="headerspace">
 
                    <fieldset class="quick-login">
                        <input type="hidden" name="from" value="{THIS_PAGE}" />
                        <label for="username2">{L_USERNAME}:</label>&nbsp;<input type="text" name="username" id="username2" size="20" class="inputbox" title="{L_USERNAME}" /><br />
                        <label for="password2">{L_PASSWORD}:</label>&nbsp;<input type="password" name="password" id="password2" size="20" class="inputbox" title="{L_PASSWORD}" /><br />
                        <!-- IF S_AUTOLOGIN_ENABLED -->
                        <label for="autologin2">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin2" /></label>
                        <!-- ENDIF -->
                        <input type="submit" name="login" value="{L_LOGIN}" class="button2" />
                    </fieldset>
                </form>
            <!-- ENDIF -->

นี่เป็นการแก้ไขในส่วนของ phpBB หลังจากนี้เป็นตัวส่งข้อมูลไปยังหน้า ucp.php ส่งด้วย method post ใช้ code ง่ายๆตามนี้ครับ เป็นแค่ปุ่มๆเดียวในการ link ไปหาหน้า login ของ phpBB นั้นๆ

1
2
3
4
<form action="http://aspgod.com/ucp.php?mode=login" method="post">
    <input type="hidden" name="from" value="http://aspgod.com">
    <input type="submit" value="LogIn">
</form>

เมื่อกดปุ่มแล้วก็จะ ไปยังหน้า login เมื่อ login เสร็จก็จะกลับมายังหน้าเดิมตาม value ที่ส่งไป
*** ต้องส่งด้วยชื่อ paramerter ว่า “from” เท่านั้นนะครับ เพราะเซ็ตให้เป็นแบบนั้น

สำหรับใครที่ต้องการให้ login เสร็จแล้ววิ่งไปยัง domain name อื่น (cross domain) โดย default แล้ว phpBB ไม่อนุญาตให้ redirect ไปยัง domain อื่น ดังนั้นเราต้องแก้เพิ่มอีกนิดหน่อย (อันนี้ผมหาเจอเองนะ ขอ credit หน่อยละกัน อิอิ)
1. เปิดไฟล์ includes/functions.php ขึ้นมา
2. หาโค๊ดนี้ในไฟล์

1
$redirect = meta_refresh(3, $redirect)

3. เอาโค๊ดนี้ไปทับ (replace) จริงๆเป็นการเพิ่ม parameter

1
$redirect = meta_refresh(3, $redirect, true)

เป็นการทำให้ redirect โดยไม่สนใจ root domain

ก็เป็นด้วยประการฉะนี้แล หวังว่าข้อมูลนี้จะเป็นประโยชน์ไม่มากก็น้อยนะครับ

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

  1. March 12th, 2010 at 22:58 | #1

    โอ้ว แบบว่าสุดยอด เมพมั่ก ๆ

  2. January 10th, 2011 at 15:02 | #2

    nurse practition in pharmacy [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-preise#925] kamagra preise [/url] guardian pharmacy ontario
    homeopathic medicine for bacterial vaginosis [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-prescription#055] kamagra 100 gold prescription [/url] phamily pharmacy wachington dc
    tri city family medicine [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-quick#579] kamagra quick review [/url] pharmacy wahalla sc
    pharmacy state laws of florida [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-review#653] kamagra 100mg soft tabs review [/url] stroke with frontline flea medicine
    travel medicine doctors in ogden utah [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-safety#802] kamagra safety [/url] zheijiang medicines
    foreign pharmacy comparisons [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-sales#654] kamagra sales tablets [/url] drugstore refill oral b
    automated pharmacy storage labeling [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-sales-uk#471] kamagra sales uk buy [/url] online pharmacy list of
    liquorice medicine cough [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-shop#576] kamagra shop england [/url] texas tech university of pharmacy
    first nobel prize winner medicine [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-side-effects#976] ultra kamagra side effects [/url] where in my pharmacy can
    medicine for knee pain [url=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-sildenafil#768] kamagra sildenafil citrate vitamins [/url] 3d imaging in medicine 3d display
    lorena pharmacy <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-preise#588] kamagra preise boothwyn pharmacy
    lyrcia medicine <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-prescription#408] kamagra gold 100 prescription dog medicine australia
    bridge to medicine forum <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-quick#468] kamagra quick medicine in the rainforest
    a2z pharmacy <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-review#340] kamagra jelly review cvs pharmacy in eastover shopping center
    pharmacy ex <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-safety#489] buying safety kamagra pharmacy technician jobs duties
    centre for medicine research 198 nce <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-sales#235] sales uk cheap kamagra high schools with sports medicine programs
    coupon drugstore <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-sales-uk#277] link mailing medicine
    peoples pharmacy waterloo iowa <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-shop#542] kamagra shop oral arthritis mens prescriptions online prescription medicine
    costco pharmacy fax oxnard <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-side-effects#154] kamagra chewable tablets side effects buy hydrocondone online pharmacy
    tree school holistic medicine az <a href=http://grou.ps/kamagrasildenafil/blogs/item/kamagra-sildenafil#704] buy kamagra us dollar sildenafil crepitus medicine

  3. January 13th, 2011 at 04:31 | #3

    [url=http://000site.ru/go.php?sid=9][img]http://classsex.ru/sex/202.jpg[/img][/url]
    [url=http://000site.ru/go.php?sid=9][img]http://opapizda.com/img/4/index.jpg[/img][/url]
    [url=http://000site.ru/go.php?sid=9][img]http://tdq.in/images/1/830.jpg[/img][/url]

    [url=http://www.devushka.x24hr.com/clcwn-bdsm/page-10.html]Ïîðíî ïûòêè ôîòî[/url]
    [url=http://www.devushka.x24hr.com/mature-bdsm/video-2.html]Hustler ïîðíî[/url]
    [url=http://www.devushka.x24hr.com/live-wiylxx/blog-video-roliki.html]Âèäåî ðîëèêè ôóòáîëà[/url]
    [url=http://www.devushka.x24hr.com/blog-fun/video-2.html]Âèäåî ýðîòèêà ñåêñ shahzoda[/url]
    [url=http://www.devushka.x24hr.com/ktoxt/maloletnie-telki.html]Ìàëîëåòíèå òåëêè[/url]
    [url=http://www.devushka.x24hr.com/vkigow-721/blog-porno-video.html]Ïîðíî âèäåî com[/url]
    [url=http://www.devushka.x24hr.com/file/page-8.html]Ñåêñ êàòàëîã ôîòî[/url]
    [url=http://www.devushka.x24hr.com/707-jny/blog-epizody-pisun.html]Ýïèçîäû ïèñþí[/url]
    [url=http://www.devushka.x24hr.com/show-658/pornoroliki-bolshie_fc.html]Ïîðíîðîëèêè áîëüøèå ñèñüêè[/url]
    [url=http://www.devushka.x24hr.com/kino-life/porno-mihailovka.html]Ïîðíî ìèõàéëîâêà[/url]
    [url=http://www.devushka.x24hr.com/popka-sunny/tag-semka-seksa.html]Ñüåìêà ñåêñà[/url]
    [url=http://www.devushka.x24hr.com/ggdwi/blog-volgogradskii-porno.html]Âîëãîãðàäñêèé ïîðíî ñàéò[/url]
    [url=http://www.devushka.x24hr.com/198-xlmm/video-2.html]Ðóññêîå äîìàøíåå ïîðíî âèäåî[/url]
    [url=http://www.devushka.x24hr.com/rls-yes/tag-pornovideo-roliki.html]Ïîðíîâèäåî ðîëèêè êëèïû[/url]
    [url=http://www.devushka.x24hr.com/site-super/video-9.html]Ôîòî ãðóïîâîãî ïîðíî[/url]
    [url=http://www.devushka.x24hr.com/udo-919/video-3.html]Õèëëñ êîðîëåâà ñåêñà dvd[/url]
    [url=http://www.prosmotr.x24hr.com/bqujt-19/]Ïîðíî ñåêñ ñî øêîëüíèöàìè – îíëàéí äåâóøêà âèäåî-ðîëèê[/url]
    [url=http://www.prosmotr.x24hr.com/www/seks-erotika.html]Ñåêñ ýðîòèêà[/url]
    [url=http://www.prosmotr.x24hr.com/cuzm/]Ëó÷øåå ñåêñ ïîðíî – îíëàéí äåâî÷êà âèäåî[/url]
    [url=http://www.prosmotr.x24hr.com/brunetka-yauozi/chastnoe-porno_oox.html]×àñòíîå ïîðíî ôîòî âèäåî[/url]
    [url=http://www.prosmotr.x24hr.com/everyone-sperma/blog-porno-popu.html]Ïîðíî ïîïó[/url]
    [url=http://www.prosmotr.x24hr.com/rot-206/video-2.html]Ãðóïïîâîé ñåêñ ìîñêâà[/url]
    [url=http://www.prosmotr.x24hr.com/the/tag-www-sex.html]Www sex dozor ru[/url]
    [url=http://www.prosmotr.x24hr.com/west-bdsm/tag-seks-so.html]Ñåêñ ñî ñâèíîìàòêîé[/url]
    [url=http://www.prosmotr.x24hr.com/76-nxc/video-7.html]Ôîòî ñåêñà ñåìåèíûõ ïàð[/url]
    [url=http://www.prosmotr.x24hr.com/soski-east/myatejnyi-duh_ry.html]Ìÿòåæíûé äóõ ôàí ôèêè ñåêñ[/url]
    [url=http://www.prosmotr.x24hr.com/hsgw/page-10.html]Ïîðíî ôîòî âàííîé[/url]
    [url=http://www.prosmotr.x24hr.com/nsk-803/tag-porno-skazka.html]Ïîðíî ñêàçêà[/url]
    [url=http://www.prosmotr.x24hr.com/dfupzv/tag-seks-c.html]Ñåêñ c web êàìåðîé[/url]
    [url=http://www.prosmotr.x24hr.com/288-wide/siski-mtv_r.html]Ñèñüêè mtv[/url]
    [url=http://www.prosmotr.x24hr.com/incest/video-9.html]Ñèñüêè ïîïêè ïîðíî ôîòî[/url]
    [url=http://www.prosmotr.x24hr.com/pornushka-rhgwcs/blog-nravitsya-virtualnyi.html]Íðàâèòñÿ âèðòóàëüíûé ñåêñ[/url]
    [url=http://www.prosmotr.x24hr.com/ewxgkl/bezplatnoe-mini_oh.html]Áåçïëàòíîå ìèíè ïîðíî[/url]
    [url=http://www.prosmotr.x24hr.com/616-many/video-7.html]Ñýêñ ïîðíî âèäåî[/url]
    [url=http://www.prosmotr.x24hr.com/19-rtankz/video-11.html]Îãðîìíûå æåíñêèå ñèñüêè[/url]
    [url=http://www.prosmotr.x24hr.com/anal-easy/]Ïîðíóõà ñî – ïðîñìîòð äåâî÷êà ôèëüì[/url]
    [url=http://www.prosmotr.x24hr.com/aycqye-world/]Ñåêñ êðîâàòêà – ñìîòðåòü äåâóøêà ðîëèêè[/url]
    [url=http://www.prosmotr.x24hr.com/662-iobet/porno-foto_xpn.html]Ïîðíî ôîòî êðàñàâèö[/url]
    [url=http://www.prosmotr.x24hr.com/197-video/tag-https-porno.html]Https porno[/url]
    [url=http://www.prosmotr.x24hr.com/dick-tfcb/blog-anastasiya-zavaratnuk.html]Àíàñòàñèÿ çàâàðàòíþê ôîòî ïîðíî[/url]
    [url=http://www.prosmotr.x24hr.com/brunetochki-white/tag-naiti-pornuhu.html]Íàéòè ïîðíóõó[/url]

  4. January 19th, 2011 at 21:07 | #4

    what is pediatric sports medicine [url=http://dapoxetine.345.pl/Buy-Dapoxetina.html#068] ejaculation buy dapoxetina [/url] metropol pharmacy
    medicine hat beer league baseball [url=http://dapoxetine.345.pl/Buy-Dapoxetine-HCL.html#590] buy dapoxetine hcl [/url] chinese medicine magnets brain cells
    antiallergy medicine for cats [url=http://dapoxetine.345.pl/Buy-Dapoxetine-Hydrochloride.html#256] buy dapoxetine hydrochloride lateral coital position [/url] dr randy gregg and sports medicine
    prolactin pharmacy in chennai [url=http://dapoxetine.345.pl/Buy-Dapoxetine-Online.html#197] buy dapoxetine online 30mg approved [/url] herbal drugstore
    what does sq mean in pharmacy [url=http://dapoxetine.345.pl/Buy-Dapoxetine-Priligy.html#954] buy dapoxetine priligy generic [/url] swiss pharmacy list
    1983 aviation space environmental medicine kovalev [url=http://dapoxetine.345.pl/Buy-Dapoxetine-UK.html#251] buy uk dapoxetine hydrochloride dosages [/url] innovative pharmacy compounding online
    clark’s pharmacy washington [url=http://dapoxetine.345.pl/Buy-Dapoxetine-in-Australia.html#933] buy dapoxetine in australia people [/url] dna and medicine
    sal acid 2 ex 2 pharmacy [url=http://dapoxetine.345.pl/Buy-Dapoxetine.html#437] buy dapoxetine uk approved [/url] internal medicine centreville va
    dr rebecca long holistic medicine [url=http://dapoxetine.345.pl/Buy-Generic-Dapoxetine.html#426] buy generic dapoxetine [/url] board of complementary medicine
    medicine bionade [url=http://dapoxetine.345.pl/Buy-Generic-Priligy-online.html#801] link [/url] medicine for glaucoma
    treatments medicine <a href=http://dapoxetine.345.pl/Buy-Dapoxetina.html#835] buy dapoxetina la eyaculacion state of colorado board of pharmacy
    lobbies for socialized medicine <a href=http://dapoxetine.345.pl/Buy-Dapoxetine-HCL.html#479] buy dapoxetine hcl makers walgreens pharmacy silvas il
    nuclear medicine fort carson <a href=http://dapoxetine.345.pl/Buy-Dapoxetine-Hydrochloride.html#843] buy dapoxetine hydrochloride kegels related careers in veterinary medicine
    ayuvedic medicine books <a href=http://dapoxetine.345.pl/Buy-Dapoxetine-Online.html#463] buy dapoxetine online medications rsv over the counter medicines
    journal on chiropractic medicine <a href=http://dapoxetine.345.pl/Buy-Dapoxetine-Priligy.html#813] buy dapoxetine priligy 60mg true value drugs pharmacy in florida
    internal medicine physician job <a href=http://dapoxetine.345.pl/Buy-Dapoxetine-UK.html#662] uk dapoxetine hydrochloride buy online marshfield clinic pharmacy
    history of islamic medicine <a href=http://dapoxetine.345.pl/Buy-Dapoxetine-in-Australia.html#363] dapoxetine in australia buy zevtera source of vitamins at elephant pharmacy
    texas a m univ veterinary medicine <a href=http://dapoxetine.345.pl/Buy-Dapoxetine.html#916] buy dapoxetine uk dosages levaquin us pharmacy dose
    miller siu medicine springfield illinois <a href=http://dapoxetine.345.pl/Buy-Generic-Dapoxetine.html#486] buy dapoxetine generic priligy cvs pharmacies under construction ct
    delta bc pharmacys <a href=http://dapoxetine.345.pl/Buy-Generic-Priligy-online.html#498] link buy international pharmacies

  5. January 26th, 2011 at 04:40 | #5

    atlanta maternal fetal medicine [url=http://dapoxetin.co.tv/Dapoxetine-Online.html#759] dapoxetine online treatment information related [/url] illinois pharmacy association
    it and medicine merging and emerging [url=http://dapoxetin.co.tv/Dapoxetine-Priligy.html#895] priligy dapoxetine hydrochloride drug [/url] white pharmacy
    best cholesterol medicines [url=http://dapoxetin.co.tv/Dapoxetine-Purchase.html#377] dapoxetine purchase 100mg [/url] pharmacy tech ks
    cardiology compounding pharmacy [url=http://dapoxetin.co.tv/Dapoxetine-Review.html#040] dapoxetine review [/url] veterinary medicine dog itching
    pharmacy tech jobs illinois [url=http://dapoxetin.co.tv/Dapoxetine-Sildenafil.html#387] dapoxetine sildenafil [/url] army hpsp rotc pharmacy
    pharmacy curtin [url=http://dapoxetin.co.tv/Dapoxetine-Trial-Pack.html#817] dapoxetine trial pack online 60mg [/url] lloyds pharmacy harehills road
    midwestern college of pharmacy glendale [url=http://dapoxetin.co.tv/Dapoxetine-UK.html#189] dapoxetine uk pe priligy [/url] geriatric medicine md jobs ontario
    witchcraft and herbal medicine [url=http://dapoxetin.co.tv/Dapoxetine-alternative.html#665] alternative buy dapoxetine [/url] pharmacy in operating room setting
    mn state board pharmacy [url=http://dapoxetin.co.tv/Dapoxetine-approved.html#947] approved priligy dapoxetine [/url] order id pharmacy email consult records
    medicine of june bugs [url=http://dapoxetin.co.tv/Dapoxetine-available-in-India.html#756] dapoxetine available in india [/url] athletic training and sports medicine programs
    aloe vera medicine ulcus good <a href=http://dapoxetin.co.tv/Dapoxetine-Online.html#799] dapoxetine online medications generic pet pharmacy youngtown
    disaster medicine and public health preparedness <a href=http://dapoxetin.co.tv/Dapoxetine-Priligy.html#660] priligy dapoxetine hydrochloride pharmacy immunization sample questions
    dept of health board of medicine <a href=http://dapoxetin.co.tv/Dapoxetine-Purchase.html#447] dapoxetine purchase premature ejaculation treatment mail order pharmacy no prescription
    university of cincinnati school of medicine <a href=http://dapoxetin.co.tv/Dapoxetine-Review.html#478] dapoxetine review approval premature ejaculation oral medicine for dog ear yeast
    what is bariatric medicine <a href=http://dapoxetin.co.tv/Dapoxetine-Sildenafil.html#328] sildenafil dapoxetine side effects nuclear medicine programs online
    alternative medicine in nm dr dog <a href=http://dapoxetin.co.tv/Dapoxetine-Trial-Pack.html#769] dapoxetine trial pack online 60mg midevel islamic medicine
    tenex and medicine <a href=http://dapoxetin.co.tv/Dapoxetine-UK.html#712] uk priligy dapoxetine behavi medicine and health psychology
    pharmacy school rancho cordova ca <a href=http://dapoxetin.co.tv/Dapoxetine-alternative.html#790] link 24 hour pharmacy no prescription
    medicare pharmacy enrollment <a href=http://dapoxetin.co.tv/Dapoxetine-approved.html#734] priligy dapoxetine hydrochloride approved metformin hct prescription medicine
    community pharmacy medicare <a href=http://dapoxetin.co.tv/Dapoxetine-available-in-India.html#283] dapoxetine available in india georgia state board of medicine

  6. January 26th, 2011 at 08:50 | #6

    Experto en euribor y finanzas, los invito a visitar mi sitio web!

    Saludos

  7. January 27th, 2011 at 04:39 | #7

    [url=http://brittneyjonessextapes.net] View Brittney Jones Sex Tape [/url]. 9 Sep 2010 Story from ctpatriot1970USA on ctpatriot1970USA – Spot : Ashton Kutcher’s Mistress Brittney Jones: Nude Photos, Drugs and Booze. 23 December 2010. Brittney Jones news, photos of Brittney Jones, biography, Brittney Jones relationships.
    also store: [url=http://tracktalk.nesba.com/showthread.php?p=167734#post167734]Brittney Jones Sex Tape Confidential[/url]
    3 Dec 2010 Towards the top of our list of ‘things we couldn’t care less about’ is tabloid sex scandal story about a 21-year old brunette who tempted Brittney Jones Sextape Video

  8. January 28th, 2011 at 09:53 | #8

    скачать книгу куда приводят мечты, скачать песни полины гагариной, скачать прикольные курсоры для

  9. ProocaGoome
    February 16th, 2011 at 20:20 | #9

    This is my first time i visit here. I discovered so many attention-grabbing stuff in your discussion board especially its discussion. From the tons of comments, I suppose I’m not the one one having all the enjoyment here! sustain the good work.[url=http://www.dogquotations.com][img]http://www.fitnails.com/v/images/toenailfungustreatments.gif[/img][/url]

  10. March 1st, 2011 at 05:43 | #10

    [url=http://brittneyjonessextapes.net] Brittney Jones Sex Tape Preview [/url]. Brittney Jones modeling Ashton Kutcher’s sweater? The woman who claims she slept with Ashton Kutcher, Brittney Jones, is selling one of his sweaters on eBay. The . Brittney Jones Claims She Had Sex with Ashton Kutcher on His Couch Is Ashton Kutcher cheating on his wife Demi Moore? According to Star Magazine he is! A woman named .
    also store:
    Brittney Jones (Brittney)’s profile on Myspace, the leading social entertainment destination powered by the passion of our fans. Brittney Jones Sex Tape Slutload

  11. March 21st, 2011 at 02:36 | #11

    http://www.thrashermagazine.com/forum/index/topic8511.msg115587/ – [u][b]CIALIS COMPRAR[/b][/u]
    [b]COMPRE CIALIS BARATO euro 1.15 per comprimido farmasia on line andorra[/b]
    [CENTER] [b]CIALIS COMPRAR EN LINEA[/b]
    [URL=http://farmacia-online.telehost.biz][IMG]http://farmacia-online.telehost.biz/comprar_cialis.gif[/IMG][/URL]
    [b]LEVITRA BARATO COMPRAR ENLINE[/b]
    [URL=http://farmacia-online.telehost.biz][IMG]http://farmacia-online.telehost.biz/comprar_levitra.gif[/IMG][/URL]
    [b]VIAGRA GENERICA ONLINE COMPRAR VIAGRA[/b]
    [URL=http://farmacia-online.telehost.biz][IMG]http://farmacia-online.telehost.biz/comprar_viagra.gif[/IMG][/URL]
    [b]COMPRAR VIAGRA GENERICA ONLINE VIAGRA[/b][/CENTER]
    [url=http://secretsofurbansurvival.com/member.php?1106-CIALISgenerico]En Linea Farmacia Cialis Levitra Viagra[/url] – tadalafil 20
    [b]Comprar Cialis en Brasil Sin Receta del Doctor farmacia on line sin receta[/b]
    cialis
    COMPRAR cialis Comprar Cialis en Madrid Sin Receta del Doctor
    CIALIC COMPRAR COMPRARE Cialic
    CIALIS COMPRARE
    CIALIS COMPRAR EN LINEA BARATO
    CIALIS COMPRAR EN LINEA SIN RECETA
    CIALIS GENERICO COMPRAR EN LINEA
    CIALIS GENERIC COMPRAR EN LINEA
    CIALIS COMPRAR ENLINEA CIALIS 20mg COMPRAR EN LINEA
    BARATO CIALIS COMPRAR EN LINEA
    Comprar Cialis en Mexico Sin Receta del Doctor Comprar Cialis en la Espana Sin Receta del Doctor
    Comprar Cialis en Portugal Sin Receta del Doctor
    Comprar Cialis en Argentina Sin Receta del Doctor
    Comprar Cialis en Brasil Sin Receta del Doctor

  12. March 21st, 2011 at 21:15 | #12

    Hey guys,

    Do you want to watch Scream 4 online? It is not released yet but you can watch it online already!

    Click here to [url=http://www.slideshare.net/watch-scream4-online/watch-scream-4-online-7018333]watch Scream 4[/url]

  13. March 24th, 2011 at 01:03 | #13

    горец 2 торрент скачать, скачать полную версию worms 3d, скачать программу для контакта подарки

  14. March 30th, 2011 at 20:30 | #14

    Visit us at the moment to come by more low-down and facts at all events [url=http://tlumaczenia.compare.com.pl]Biuro Tłumaczeń[/url]

  15. April 8th, 2011 at 05:17 | #15

    barricade deceit the hand-out at the all mod [url=http://www.casinogameluck.com/]casino online[/url] , with mod [url=http://www.freeamericancasino.com]online casinos[/url] and liberated [url=http://www.yourcasinousa.com]online casino bonus[/url]. you can also combine poker rooms at [url=http://www.casinogameluck.com/]casino online[/url]
    [url=http://www.liveinternetcasino.com]online casino spiele[/url] and [url=http://www.casinogameluck.com]casino[/url] at the win in in excess of German casinos an glad ogle to DE players.

  16. April 8th, 2011 at 09:19 | #16

    Visit us now to obtain more details and facts regarding [url=http://www.mega-power.pl]odzywki[/url]

  17. April 10th, 2011 at 12:18 | #17

    ranging from under $4000 to well over 25 grand for top-of-the-line models such
    in terms of your bed mattress disposal will be the Canadian Mattress Recycling.
    task of producing a sofa bed mattress to a complete new level. They can
    hand. Despite the higher sales of Hasten mattresses, the company does not
    what kind of mattress you sleep on. Having a good night sleep is very critical

    [url=http://ahentomes.comoj.com/article.php?article=530533]Latex foam mattress benefits[/url]
    [url=http://ahentomes.comoj.com/article.php?article=74753]Home classics memory foam mattress topper reviews[/url]
    [url=http://ahentomes.comoj.com/article.php?article=728050]Inflatable mattresses[/url]
    [url=http://ahentomes.comoj.com/article.php?article=442320]Extra firm mattress[/url]
    [url=http://ahentomes.comoj.com/article.php?article=159613]Sleepwell mattress in chennai[/url]

    [url=http://blasernete.comli.com/article.php?article=800565]Camping air mattress with pump[/url]
    [url=http://blasernete.comli.com/article.php?article=601292]Nasa memory foam mattress review[/url]
    [url=http://blasernete.comli.com/ctg.php?category=3&page=2]Latex foam mattress benefits[/url]
    [url=http://blasernete.comli.com/article.php?article=251597]Coleman air mattress pump amazon[/url]
    [url=http://blasernete.comli.com/article.php?article=365407]King koil mattress reviews 2009[/url]

    [url=http://bouyksenecfa.comoj.com/article.php?article=831463]Mattress giant[/url]
    [url=http://bouyksenecfa.comoj.com/article.php?article=745732]Recycle mattress portland oregon[/url]
    [url=http://bouyksenecfa.comoj.com/article.php?article=165817]Mattress factory outlet colorado springs[/url]
    [url=http://bouyksenecfa.comoj.com/article.php?article=531657]Kingsdown mattress reviews consumer reports[/url]
    [url=http://bouyksenecfa.comoj.com/article.php?article=248846]Mattress land herndon va[/url]

    [url=http://calvenonligh.comyr.com/article.php?article=728231]The mattress factory pittsburgh hours[/url]
    [url=http://calvenonligh.comyr.com/article.php?article=223617]Best crib mattress cover[/url]
    [url=http://calvenonligh.comyr.com/article.php?article=97150]Simmons westin mattress[/url]
    [url=http://calvenonligh.comyr.com/article.php?article=151410]Englander mattress reviews 2010[/url]
    [url=http://calvenonligh.comyr.com/article.php?article=392440]Mattress for moses basket mamas and papas[/url]

    [url=http://candrefsandtel.net23.net/article.php?article=694864]Memory foam mattress topper reviews consumer reports[/url]
    [url=http://candrefsandtel.net23.net/article.php?article=38802]Sleepy’s mattress removal[/url]
    [url=http://candrefsandtel.net23.net/ctg.php?category=1&page=4]Most comfortable mattress world[/url]
    [url=http://candrefsandtel.net23.net/article.php?article=969805]New mattress fumes[/url]
    [url=http://candrefsandtel.net23.net/article.php?article=7759]Mattress depot roanoke va[/url]

    [url=http://centsernorfcomp.net23.net/article.php?article=892437]Kings down mattress price[/url]
    [url=http://centsernorfcomp.net23.net/article.php?article=304]Novaform mattress topper reviews[/url]
    [url=http://centsernorfcomp.net23.net/article.php?article=434583]Banner mattress ads[/url]
    [url=http://centsernorfcomp.net23.net/article.php?article=389174]Coleman inflatable mattress twin[/url]
    [url=http://centsernorfcomp.net23.net/article.php?article=735259]Memory foam mattress topper reviews[/url]

    [url=http://cirestremi.comyr.com/article.php?article=474262]Innerspring mattress vs foam[/url]
    [url=http://cirestremi.comyr.com/article.php?article=493996]Mattress one daytona[/url]
    [url=http://cirestremi.comyr.com/article.php?article=212724]Crib mattress cover[/url]
    [url=http://cirestremi.comyr.com/article.php?article=916483]Latex foam mattresses manufacturers[/url]
    [url=http://cirestremi.comyr.com/ctg.php?category=3&page=1]City mattress florida[/url]

    [url=http://conslanesschu.site40.net/article.php?article=286137]Compare types of mattresses[/url]
    [url=http://conslanesschu.site40.net/ctg.php?category=14&page=2]Ikea full size mattress dimensions[/url]
    [url=http://conslanesschu.site40.net/article.php?article=35388]Crib mattresses[/url]
    [url=http://conslanesschu.site40.net/ctg.php?category=4&page=4]Alternating pressure mattress pad[/url]
    [url=http://conslanesschu.site40.net/article.php?article=514642]Colgate crib mattress[/url]

    [url=http://createsphode.comli.com/article.php?article=332871]Inflatable mattresses king size[/url]
    [url=http://createsphode.comli.com/ctg.php?category=10&page=1]City mattress factory[/url]
    [url=http://createsphode.comli.com/article.php?article=56153]How to clean a mattress with urine stains[/url]
    [url=http://createsphode.comli.com/article.php?article=702068]Costco novaform mattress topper review[/url]
    [url=http://createsphode.comli.com/article.php?article=162948]Donate mattress phoenix[/url]

    [url=http://critresingme.net23.net/article.php?article=959003]Mattress factory pittsburgh wedding[/url]
    [url=http://critresingme.net23.net/article.php?article=907815]Innerspring mattress[/url]
    [url=http://critresingme.net23.net/article.php?article=529200]Englander mattress reviews consumer[/url]
    [url=http://critresingme.net23.net/article.php?article=178529]Healthcare memory foam mattresses reviews[/url]
    [url=http://critresingme.net23.net/article.php?article=242701]Nasa foam mattress top[/url]

  18. April 18th, 2011 at 00:28 | #18

    mostly viewed ory

    [url=http://1lhannecg.blogspot.com]North Face Breast Cancer Jacket[/url]

  19. April 18th, 2011 at 16:26 | #19

    If you are an overweight Christian servant, you are not alone. Impression your church high-mindedness on: your women’s combine, choir, Sunday Rudimentary pedigree or fellowship circle, wherever you participate. Look circumjacent at the other women there; are uncountable of them overweight? The grotesque authenticity is that in most of our churches today, being overweight is not the cavil, but the norm.

    There is a apology you are fat.

    You may not qualification to pile up it, because the truly is hard. But we as Christians are committed to the event, so I brace you to upkeep reading. The mob of people who are overweight apt to medical problems is a petite minority, which means that the bootless down of us secure to aspect confront reality.
    Is Being Fat A Sin?

    The dubiousness is how did you in through fat? Most of us get gotten here past committing the misdeed of gluttony. You indubitably haven’t contemporary with heard this huddle in a long control, since pastors on occasions evangelize on it anymore.

    So then what is a glutton? The “Illustrated Glossary of the Bible” (published by Thomas Nelson) says a grangousier is a person who is debased and fulsome in her eating habits, whose verve is acknowledged to excess. (In the score, the message “hoggishness” can altogether refer to self-absorbed overindulgence in any base diversion, including eatables, sec, and spending money.) Miserliness is the objurgate of the pretty gifts God has understood us to from in compulsion, which are to be hardened in thankfulness and idolization to Him, all to his glory.

    [url=http://www.loseweightgodsway.com]weight loss guide[/url]
    [url=http://www.weightlossgodsway.com]herbal life diet[/url]

  20. April 25th, 2011 at 12:51 | #20

    be happy and love. kiss

  21. toucceesy
    June 21st, 2011 at 19:57 | #21

    Hello all! I like this forum, i organize tons gripping people on this forum.!!!

    Large Community, regard all!

  22. November 20th, 2011 at 17:45 | #22

    электронная сигарета fresh
    электронная сигарета denshi tabaco turbo
    электронная сигарета купить в магазине
    vgo сигарета
    купить электронную сигарету дешево
    http://brutfeili.chat.ru электронные сигареты купить
    тонкая электронная сигарета
    электронные сигареты denshi tobacco
    электронная сигарета health e cigarette
    зарядка электронной сигареты

  1. No trackbacks yet.