Tag: email
-
WP_w3all .htaccess and Javascript for phpBB: rewrite URLs to point iframe how to (Spiders friendly)
—
by
Open .htaccess file of your phpBB root folder, search for this line: RewriteRule ^(.*)$ app.php [QSA,L] just below add the follow: #p reserved in WP RewriteCond %{QUERY_STRING} ^(.*)(iframe=true&)(.*)(p=)([0-9]+)(.*)?$ RewriteRule . /yourwp/index.php/forum/?%3post_id=%5%6 [R,L] #all others RewriteCond %{QUERY_STRING} ^(.*)(iframe=true)(.*)$ RewriteRule . /yourwp/index.php/forum/?%3 [R,L] Change on lines RewriteRule . /yourwp/index.php/forum/?%3post_id=%5%6 [R,L] and RewriteRule . /yourwp/index.php/forum/?%3 [R,L] the relative…
-
How are users identified when you add/transfer existent user
integration of same username/email users—
by
Problem: i have WordPress users and I have phpbb users, they have different usernames but the same email addresses. Solutions: user A into phpBB with email C user B into WP with email C user A into phpBB come to try to login WP: NOT added can’t login WP side. If you use the transfer…