Your Portal Version: 2.0.1
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Beginner
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
Hi, sorry if i do something wrong posting this.
Im begginer in phpBB, before i use other foruns CMS...
I want do onething i dont know if it is possible because i never see in phpBB e just saw in vbulletin.
what i want is put the portal in www.hypro-tech.com for exemple and the forum in www.hypro-tech.com/forum or in www.forum.hypro-tech.com
I dont know if it possible like i say i just saw in vbulletin. if you prefer i can say the link of the forum where i see this to you check and understend what im talking
PS: sorry for my english
Poral and forum
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
Topic author - Active Member
- Posts: 3
- Joined: 2. March 2013 14:16
- phpBB.de User: 24
- phpBB.com User: 24
-
- Portal Professional
- Posts: 1963
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Re: Poral and forum
You can Board3 Portal with phpBB but not with vbulletin.
Board3 Portal, they can be the first page and not in index.php.
For their styles please read here: Absolution (Base: prosilver)
Board3 Portal, they can be the first page and not in index.php.
For their styles please read here: Absolution (Base: prosilver)
V.G. archivar
sorry for my bad english
sorry for my bad english
-
Topic author - Active Member
- Posts: 3
- Joined: 2. March 2013 14:16
- phpBB.de User: 24
- phpBB.com User: 24
Re: Poral and forum
i know i cant use board3 with vbuletin
what i wat know it if is possible put the portal in www.hypro-tech.com and have the forum in forum.hypro-tech.com or hypro-tech.com/forum
what i wat know it if is possible put the portal in www.hypro-tech.com and have the forum in forum.hypro-tech.com or hypro-tech.com/forum
-
- Portal Professional
- Posts: 1963
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Re: Poral and forum
It should be possible, if they follow all the instructions in the install.xml.Derradeiro_24 wrote: and have the forum in forum.hypro-tech.com or hypro-tech.com/forum
and:
archivar wrote: For their styles please read here: Absolution (Base: prosilver)
V.G. archivar
sorry for my bad english
sorry for my bad english
-
Topic author - Active Member
- Posts: 3
- Joined: 2. March 2013 14:16
- phpBB.de User: 24
- phpBB.com User: 24
Re: Poral and forum
i already install the portal and work with absolution template.
but its a normal portal its the index but are in the same place with forum. im doing in localhost
i go send to host and try somethings
but its a normal portal its the index but are in the same place with forum. im doing in localhost
i go send to host and try somethings
Re: Poral and forum
You should search - how to move portal.php out of forum directory.
Make a copy of /forum/portal.php to the htdocs directory.
Edit the /htdocs/portal.php and change - this line :
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
so it points to the forum directory, in my case to /forum :
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum';
now copy .htaccess from the /forum to htdocs and check that it has :
DirectoryIndex portal.php index.php index.html index.htm
in the /forum edit .htaccess and change DirectoryIndex line to :
DirectoryIndex index.php portal.php index.html index.htm
This way under /forum it doesnt default to portal, but opens forum index.
Make a copy of /forum/portal.php to the htdocs directory.
Edit the /htdocs/portal.php and change - this line :
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
so it points to the forum directory, in my case to /forum :
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum';
now copy .htaccess from the /forum to htdocs and check that it has :
DirectoryIndex portal.php index.php index.html index.htm
in the /forum edit .htaccess and change DirectoryIndex line to :
DirectoryIndex index.php portal.php index.html index.htm
This way under /forum it doesnt default to portal, but opens forum index.