The Joomla! Forum ™



Forum rules


Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 64 posts ]  Go to page 1, 2, 3  Next
Author Message
PostPosted: Wed Apr 29, 2009 4:52 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Tue Sep 04, 2007 3:39 am
Posts: 1
I downloaded and installed Mehdi's phpBB3 bridge tonight and am having an issue.

When I configure joomphpbb_conf2.php with the proper values
Code:
<?php

$joomIntegrate = 3;
$joomUrl= "http://localhost/";
$joomRel= "../"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing


I get the following value when trying to access my forum
Code:
Fatal error: Call to undefined function generate_link_hash() in /home/stiltz/www/forum/inc_index.php on line 128


If I change the code to:
Code:
<?php

$joomIntegrate = 3;
$joomUrl= "http://localhost/";
$joomRel= "/"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing


Then when accessing my forums I get the following returned to me
Code:
Unable to detect Joomla install.

According to the relative path you provided
Joomla's root should be:
/

If that's wrong, correct the relative path you provided.


So I believe the component is installed properly but it is rejecting my provided relative path.

The path to my Joomla install is http://www.stiltz.net/ and my phpbb3 install is at http://www.stiltz.net/forum .
My relative path of my forum to my joomla install is ".." or "../" if you're a stickler. I've tried both with the same result. Has anyone seen this or able to provide some insight to help me out?

Versions:
Joomla 1.5.10
phpBB 3.04
PHP 5.2.9

EDIT::: Now I'm getting the following error
Code:
Error: Infinite login loop intercepted.
Try to click here, do not refresh.



Thanks
-=StIlTz=-


Top
 Profile  
 
PostPosted: Mon May 04, 2009 3:11 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Sat Sep 20, 2008 11:12 am
Posts: 28
Location: Kgs. Lyngby
I have the exact same setup as you...
on my local mashine with wamp i have my joomla in http://localhost/sitename/
and my phpbb forum is in http://localhost/sitename/forum

my relative path is "../" and i got it to work fine exept i got an error saying i
had an undefined variable in "joomphpbb_engine2"
(i fixed this by defining the variable in the top of the file"

but just wanted to let you know that your path is correct :)

Cheers and god luck...


Top
 Profile  
 
PostPosted: Thu May 14, 2009 3:50 pm 
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Oct 10, 2008 11:01 am
Posts: 125
stiltz wrote:
I downloaded and installed Mehdi's phpBB3 bridge tonight and am having an issue.

When I configure joomphpbb_conf2.php with the proper values
Code:
<?php

$joomIntegrate = 3;
$joomUrl= "http://localhost/";
$joomRel= "../"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing


I get the following value when trying to access my forum
Code:




Fatal error: Call to undefined function generate_link_hash() in /home/stiltz/www/forum/inc_index.php on line 128


If I change the code to:
Code:
<?php

$joomIntegrate = 3;
$joomUrl= "http://localhost/";
$joomRel= "/"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing


Then when accessing my forums I get the following returned to me
Code:
Unable to detect Joomla install.

According to the relative path you provided
Joomla's root should be:
/

If that's wrong, correct the relative path you provided.


So I believe the component is installed properly but it is rejecting my provided relative path.

The path to my Joomla install is http://www.stiltz.net/ and my phpbb3 install is at http://www.stiltz.net/forum .
My relative path of my forum to my joomla install is ".." or "../" if you're a stickler. I've tried both with the same result. Has anyone seen this or able to provide some insight to help me out?

Versions:
Joomla 1.5.10
phpBB 3.04
PHP 5.2.9

EDIT::: Now I'm getting the following error
Code:
Error: Infinite login loop intercepted.
Try to click here, do not refresh.



Thanks
-=StIlTz=-


Have you Found Solution on your last problem ??
Code:
Error: Infinite login loop intercepted.
Try to click here, do not refresh.


I have the same issue Please post what need to be done


Thanks


Top
 Profile  
 
PostPosted: Tue May 19, 2009 12:13 am 
Joomla! Intern
Joomla! Intern

Joined: Fri Feb 16, 2007 11:53 pm
Posts: 53
If your joomla installation is in like this http://www.yourdomainname.com/joomla
and your forum installation is in http://www.yourdomainname.com/joomla/phpbb3/

then your "joomphpbb_conf2.php" would be like the following

$joomUrl="http://www.yourdomainname.com/joomla"; <note: no slash @ the end>
$joomRel= "../"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing

****************
If your joomla installation is in like this http://www.yourdomainname.com/
and your forum installation is in http://www.yourdomainname.com/phpbb3/

then your "joomphpbb_conf2.php" would be like the following

$joomUrl="http://www.yourdomainname.com"; <note: no slash @ the end>
$joomRel= "../"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing


Top
 Profile  
 
PostPosted: Fri May 22, 2009 1:44 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
hi,
the error
Quote:
Error: Infinite login loop intercepted.
Try to click here, do not refresh.


is covered by the FAQ:

Quote:
You get this error when user integration is enabled, you are logged in Joomla, but the bridge fail to perform automatic login in Phpbb. There can be multiple reason for this. The most trivial reason is that you didn't create joomphpbb_bridge table under Phpbb's database. An other trivial reason would be that you didn't enable the authentication method named "Joomla15" in Phpbb's backend.


Top
 Profile  
 
PostPosted: Sat May 23, 2009 5:23 am 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Fri Apr 11, 2008 8:11 am
Posts: 47
Anyone know how to simply echo the current page link for mehdis phpbb3 with sef enabled ?

I need to echo the link on the bottom of the template but apparently there is no way of doing this.


Top
 Profile  
 
PostPosted: Sat May 23, 2009 3:34 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
@Umbungo
Answered by pm, I do not wish to post answer here.


Top
 Profile  
 
PostPosted: Tue Jun 16, 2009 11:46 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
Man i am facing a critical problem.When i am login in phpBB [ Administration Control Panel ] getting this Error.
"
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 2086: parse_url(http:///mysite.com/joomla/phpbb/adm/index.php?sid=119d78da8d04681b49b1e92c2c069177) [function.parse-url]: Unable to parse URL
"

Have any perfect solution???????

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Tue Jun 16, 2009 11:52 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
"
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 2086: parse_url(http:///mysite.com/joomla/phpbb/adm/index.php?sid=119d78da8d04681b49b1e92c2c069177) [function.parse-url]: Unable to parse URL
"
I am also notice here a extra "/" after http:// (http:///mysite.com/joomla/phpbb/adm/index.php?sid=119d78da8d04681b49b1e92c2c069177)

Have any configuration problem in phpBB??????

Please reply @mehdi

Thanks

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Tue Jun 16, 2009 1:07 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
@kazal
1) ensure phpbb3 is working properly , before bridging it.
2) assuming that joomla work at:
http://mysite.com/joomla/
and phpbb at:
http://mysite.com/joomla/phpbb/

then the bridge configuration file must contain:
Code:
$joomUrl="http://mysite.com/joomla";
$joomRel= "../";


good luck


Top
 Profile  
 
PostPosted: Tue Jun 16, 2009 6:04 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@mehdi all are configuration file perfect.Also perfect all bridging.Only facing this error in ACP login page.Right now it's work perfect in Localhost.
"
http:///mysite.com/joomla/phpbb/adm/index.php?sid=119d78da8d04681b49b1e92c2c069177
"

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Tue Jun 16, 2009 7:38 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
@kazal,
according to your error, there's a problem with the phpbb file, "includes/functions.php"
at line 2086, while calling the php function parse_url.

I checked this file, and the parse_url is not called at line 2086.
Either you've hacked this file, then please use original version,
or you use an old phpbb version, then please update to version 3.05

Also ensure you use latest bridge version as this might help.


Top
 Profile  
 
PostPosted: Wed Jun 17, 2009 5:07 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
Can you help me how to upgrade my phpBB 3.04 (function.php) file to latest bridge version 3.05.
I am using
{
Joomla 1.5.10
phpBB 3.04
bridge version "joomphpbb2-bridge"
}
Is this clear?
You can mail to me at
kazal@evatix.com

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Thu Jun 18, 2009 5:20 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@mehdi Thanks a lot.

its all about older version problem.Upgrade my phpbb version then configure perfect.
Waoo works fine both local & server !!!!!!!!!!!!!!!!!!!!!

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Thu Jun 18, 2009 12:37 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
I'm happy you've finally managed to upgrade phpbb yourself.
I don't have everyday the patience to answer basic question like this, sorry.
You 're problem was probably because of a mismatch between the hacked files
and your phpbb version.


Top
 Profile  
 
PostPosted: Thu Jun 18, 2009 12:59 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
Most of the site i manage forum by "Firebord Component" .It works nice and manage very simple.This time i am using phpBB first.Hopefully next time help to others.I am modify some of your bridge file.
Thanks

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Sat Jun 27, 2009 1:38 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@mehdi
Can you help me for SEF phpbb3?Please send the right way for sef...

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Sun Jun 28, 2009 5:04 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@mehdi
Please help me how to sef my phpBB3?
Is it possible to SEF with joomla?
Please reply !!!!!!!!!!!!!

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Mon Jun 29, 2009 8:41 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
hi kazel,
I was travelling ... I never tried sef for phpbb3 with my bridge.
You can use regular sef for joomla.
For phpbb, I guess there's a patch for this.
With my bridge you apply patch to inc_ files instead of regular one.

You might try sef for phpbb without bridge first , to ensure it work properly.
good luck


Top
 Profile  
 
PostPosted: Tue Jun 30, 2009 7:04 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@mehdi ;;
Thanks for reply.
I am tried it hardly.In joomla forum site it is not sef "phpBB".Are you noticed ?
If you never mind where from you and your email address please!!!!
I am from Bangladesh.

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Tue Jun 30, 2009 5:14 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Tue Oct 04, 2005 3:56 pm
Posts: 437
Your English is a bit hard to decrypt.
You can find my mail address, by searching my bridge on JED (joomla extension directory).


Top
 Profile  
 
PostPosted: Sat Jul 11, 2009 10:37 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Jul 11, 2009 10:17 am
Posts: 1
I'm having a bit of bother with this bridge. Creating a website etc to teach myself more advanced php to pick up as I go along.

in before n00b alert!

When I installed it like this:

"www.mysitename.com/Joomla" - For Joomla
"www.mysitename.com/phpBB3 - For Forum

I got everything working fine... although when i typed in "www.mysitename.com" it brings up "Index of/
/Joomla
/phpBB3"
Could you tell me if there is a way to get my Joomla site frontpage to appear when i type in "www.mysitename.com" instead of the "/index of" page coming up? I tried installing joomla to the "/www" root folder but it brought up the index of page only with all the joomla directories like "administrator" and "components"

I now have it like this:

"www.mysitename.com/Joomla" - for Joomla
"www.mysitename.com/Joomla/Forum - for Forum

(Still getting the index of page when I type in "www.mysitename.com")

I know how to install it fine up until step 6 of this guide:
Click Here

I'm getting the old "Error: Infinite login loop intercepted.Try to click here, do not refresh." message. But the problem is, all config files are fine, everything is set up fine. It logs me out of my ACP of phpBB before I get a chance to finish the installation. The FAQ section of Mehdi's site isn't very helpful, it tells me what I already know... I didn't get a chance to change the authentication method. When I try to log in to the forums again it keeps givin me the infinite login loop error :\

L337 Joomla users welcome ITT


Top
 Profile  
 
PostPosted: Mon Jul 13, 2009 12:35 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@BelterBeats
Bro are you used latest joomla & latest version of phpBB ?

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Tue Jul 21, 2009 10:12 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue Jul 21, 2009 6:31 am
Posts: 11
I'm getting the following error after completing step 5 of this document http://www.mehdiplugins.com/misc/phpbbjoom.htm

The joomphpbb_engine2 script is called from a wrong place

Urgent assistance is needed. Now I can't access the board anymore. Any help will highly be appreciated.

My joomla version is Joomla! 1.5.5
PHP version is 5.2.5
PHPBB Vrsion is 3.03

TIA


Top
 Profile  
 
PostPosted: Thu Jul 23, 2009 3:34 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue Jul 21, 2009 6:31 am
Posts: 11
Ok got it up and running with the bridge after upgrading my Phpbb install.


Top
 Profile  
 
PostPosted: Sun Jul 26, 2009 5:24 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@ muj
Can you tell me where the problem in "joomphpbb_engine2.php" file?

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Mon Aug 03, 2009 12:55 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Thu Oct 16, 2008 3:26 pm
Posts: 2
Can anyone help with this please?

I have a site with Joomla 1.5.9 installed at the root (http://www.thetrackdayclub.com) and have just installed phpbb3 in a sub folder 'forum' (http://www.thetrackdayclub.com/forum)...

During the installation of phpbb3 all went perfectly OK, all system requirement tests passed (server is Linux, Apache version 1.3.41 (Unix), PERL version 5.8.8, PHP version 5.2.6, MySQL version 4.1.22-standard-log; all folders have the correct permissions. The forum worked fine...

The forum worked fine as in, http://www.thetrackdayclub.com/forum opened the phpbb forum...

So went on to install the bridge following instructions on Mehdi's site...

- Check usernames: yes, admin same for Joomla and phpbb3 - no other phpbb users
- Create joomphpbb_bridge table: yes, ran the script provided in phpMyAdmin - successful
- Install joomla component: yes, installed via Joomla backend - successful
- Phbb hacks: yes, overwrote all files and folders in the root of the phpbb3 installation (/forum)

At this point the Forum stopped working! Now http://www.thetrackdayclub.com/forum opens a blank white page! There is no error message but there is no content and the source file is empty ('view>page source'), the source code window opens and there is nothing in it whatsoever!

I went to the next step just to if it would have any effect:

- Edit configuration of bridge , then copy:
<?php
//0 no integration
//1 visual integration
//2 user integration
//3 visual & user integration

$joomIntegrate = 0;
$joomUrl="http://www.thetrackdayclub.com";
$joomRel= "../"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0"; //you might want to override the Itemid
//----------------------------------------------------------
$joomSql="joomphpbb_bridge"; //don't touch unless you know what you are doing

saved and then overwrote the files as per instructions... made no difference!

I really need to get this working ASAP/URGENTLY... any suggestions?

Cheers!

PS:

Oh also... the phpbb3 admin panel is accessible but has appeared to have lost style! :s http://thetrackdayclub.com/forum/adm/in ... ff739d&i=1

I don't know whether it matters but I already have Fireboard installed in the Joomla site (to be removed when phpbb3 is working), and therefore have legacy mode enabled.


Top
 Profile  
 
PostPosted: Mon Aug 03, 2009 3:09 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
Are you clear about your integration problem?
Are you bridge joomla user and total integration now working?
Please clear your problem?

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
PostPosted: Mon Aug 03, 2009 4:59 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Thu Oct 16, 2008 3:26 pm
Posts: 2
kazal wrote:
Are you clear about your integration problem?
Are you bridge joomla user and total integration now working?
Please clear your problem?


Was that in response to my post? If so I'm not sure what you mean.

I don't know what the problem is, I have installed everything as directed by the instructions and now it's not working. :(

Edited: Ah! I see you registered on my website! :laugh:

What I want is for the phpbb3 forum to run preferably as a stand alone forum from the folder it is in (not displayed in the Joomla template), but with Joomla / Community Builder controlling user registration/access. Without the bridge installed the forum was working, but with it installed the forum doesn't work! :(


Top
 Profile  
 
PostPosted: Tue Aug 04, 2009 3:36 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Jan 13, 2009 4:52 am
Posts: 104
Location: Dhaka,Bangladesh.
@timarnold
Oh tnx,Now i am clear about your problem.I am review your site.I think make sure all steps of phpBB integration you can success.If any problem i can help you.
<--
$joomIntegrate = 3;(This is integration point)
$joomUrl="http://www.thetrackdayclub.com";
$joomRel= "../"; // relative path from phpbb
$joomQS="option=com_phpbb&Itemid=0";
-->

_________________
K@Z@L. http://www.thechuadanga.comhttp://people.joomla.org/groups/viewgroup/514-Joomla+Bangladesh.html
Abacus Bangladesh NMC LTD.kazal318631@gmail.com *** Cell: +8801818318631


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 64 posts ]  Go to page 1, 2, 3  Next



Who is online

Users browsing this forum: No registered users and 10 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group