| |
|
| :: |
| Author |
Message |
COOL_CORGI
Joined: 14 Feb 2008 Posts: 12
|
Posted: Thu Feb 14, 2008 5:30 am Post subject: The premodded phpBB3 |
|
|
I have a question about the preModed phpBB3.
Since I already have a phpBB3 board, is there a way to insert my database into the SEO Moded version? |
|
|
| Back to top |
|
 |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3987
|
|
| Back to top |
|
 |
COOL_CORGI
Joined: 14 Feb 2008 Posts: 12
|
Posted: Thu Feb 14, 2008 9:03 pm Post subject: Re: The premodded phpBB3 |
|
|
I know that, I installed it as a test. But I need to know how to move my already existing database to the preModed install.
Also, on the test install, I activate the URL rewriting, but it gives me a 404 Error when I go to a forum, category and user profile. Look here: http://wildworldcrossing.com/test_seo
Could I please get help setting up the test board? |
|
|
| Back to top |
|
 |
HB phpBB SEO Team

Joined: 16 Oct 2006 Posts: 829
|
Posted: Thu Feb 14, 2008 9:17 pm Post subject: Re: The premodded phpBB3 |
|
|
You don't need to move your current database. You can literally merge your (code) customizations into the phpBB SEO premod and upload it overtop your existing installation. However...
A more prudent approach is to copy your database to a new database using phpMyAdmin, install the premod pointing to it (config.php), run the phpBB SEO install script (see the zip instructions for details), and confirm everything works. Then apply your customizations to the premod.
Remember: phpBB uses the config.php file to point to the database. The database uses the config table entries script_path and server_name to determine the active board. You can "flip" between installations by changing these values (e.g., copy your database, change script_path to your test install directory, test away... when you're confident it works, rename the test/live site install directories, update script_path and config.php... done).
As for the "not found" errors, that's invariably the .htaccess file. Did you modify it as described in the instructions? If so, please post it.
PS: Would you turn down your avatar? It hurts my eyes.  |
_________________ Dan Kehn |
|
| Back to top |
|
 |
COOL_CORGI
Joined: 14 Feb 2008 Posts: 12
|
Posted: Thu Feb 14, 2008 9:44 pm Post subject: Re: The premodded phpBB3 |
|
|
I removed the avatar.
In the install file, it has
| Code: | >>>> INSTALLATION INSTRUCTION <<<<<
________________________________________
___________
IMPORTANT :
________________________________________
Before you start, read this with caution.
=> For a smooth install :
1) Upload all files and lunch -www.yoursite.com/phpBB/ in your browser;
2) Follow the installation / conversion / upgrade steps;
3) Go to phpBB ACP : It's now time to play with settings described bellow;
4) Generate your personalized .htaccess and upload or move it following the instructions;
5) Test a rewritten URL, such as -www.yoursite.com/phpBB/post1.html, if you end up with a 404 (not a phpBB message), go back to step 5;
6) Activate URL rewriting in phpBB ACP and allow yourself some auto-congratulation :D
7) Activate the Zero duplicate is wise at this point.
________________________________________
|
What does it mean by "step 5"? |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3987
|
|
| Back to top |
|
 |
COOL_CORGI
Joined: 14 Feb 2008 Posts: 12
|
Posted: Sat Feb 16, 2008 2:09 am Post subject: Re: The premodded phpBB3 |
|
|
This is the code in my htaccess file:
| Code: | # Lines That should already be in your .htacess
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
# You may need to un-comment the following line
# Options +FollowSymlinks
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO ADD THE WWW PREFIXE REDIRECTION
#####################################################
# PHPBB SEO REWRITE RULES - MIXED
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. 'forum' REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^test_seo/forum\.html$ test_seo/index.php [QSA,L,NC]
# FORUM
RewriteRule ^test_seo/[a-z0-9_-]*-f([0-9]+)(-([0-9]+))?\.html$ test_seo/viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER
RewriteRule ^test_seo/[a-z0-9_-]*-f([0-9]+)/topic([0-9]+)(-([0-9]+))?\.html$ test_seo/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER
RewriteRule ^test_seo/announces/topic([0-9]+)(-([0-9]+))?\.html$ test_seo/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM
RewriteRule ^test_seo/[a-z0-9_-]*/?topic([0-9]+)(-([0-9]+))?\.html$ test_seo/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# PROFILES ADVANCED
RewriteRule ^test_seo/[a-z0-9_-]*-u([0-9]+)\.html$ test_seo/memberlist.php?mode=viewprofile&u=$1 [QSA,L,NC]
# USER MESSAGES ADVANCED
RewriteRule ^test_seo/[a-z0-9_-]*-m([0-9]+)(-([0-9]+))?\.html$ test_seo/search.php?author_id=$1&sr=posts&start=$3 [QSA,L,NC]
# GROUPS ADVANCED
RewriteRule ^test_seo/[a-z0-9_-]*-g([0-9]+)(-([0-9]+))?\.html$ test_seo/memberlist.php?mode=group&g=$1&start=$3 [QSA,L,NC]
# POST
RewriteRule ^test_seo/post([0-9]+)\.html$ test_seo/viewtopic.php?p=$1 [QSA,L,NC]
# THE TEAM
RewriteRule ^test_seo/the-team\.html$ test_seo/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# FORUM WITHOUT ID & DELIM
# THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^test_seo/[a-z0-9_-]+(-([0-9]+))?\.html$ test_seo/viewforum.php?start=$2 [QSA,L,NC]
# END PHPBB PAGES
#####################################################
|
What could be wrong that it doesn't work?
I also noticed that the forum's name does not show up on the title of the page.
It just has Index page on the index, and the same with other pages. |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3987
|
Posted: Sat Feb 16, 2008 9:43 am Post subject: Re: The premodded phpBB3 |
|
|
| COOL_CORGI wrote: |
What could be wrong that it doesn't work?
I also noticed that the forum's name does not show up on the title of the page.
It just has Index page on the index, and the same with other pages. |
Well I'm not sure, it's working here -http://wildworldcrossing.com/test_seo isn't it ?
About the page title, try searching, the "issue" has already been covered several times. |
_________________ phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible ! |
|
| Back to top |
|
 |
|
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|