finally, IF if you set NOTHING in the field? Have you try?
do not solve, just look into WHM Php Configuration docs about how to disable open_basedir via WHM Php Control Panel, and/or ask your host.
Greetings, quick question re: W3all plugin for login integration
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
- corleone
- User w
- Posts: 17
- Joined: Sun May 29, 2016 2:29 pm
Re: Greetings, quick question re: W3all plugin for login integration
Yes I tried that. I searched and found another way:
Unfortunately, still have the error in my WP dashboard:
Unfortunately, still have the error in my WP dashboard:
WARNING! Wp w3all miss phpBB configuration file:
PLEASE set the correct full ABSOLUTE PATH to phpBB folder!
Notice: WP_w3all for subdomains installations. If result impossible to correctly setup the wp_w3all config path
please read this post about files inclusions restrictions, when in php.ini file is set the open_basedir directive
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: Greetings, quick question re: W3all plugin for login integration
sorry modified ... the stupid question:
have you put the phpinfo.php to look for absolute path of your forum, inside your forum root?
have you put the phpinfo.php to look for absolute path of your forum, inside your forum root?
- corleone
- User w
- Posts: 17
- Joined: Sun May 29, 2016 2:29 pm
Re: Greetings, quick question re: W3all plugin for login integration
Yes, I did do that, and I believe I should have the correct path.
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: Greetings, quick question re: W3all plugin for login integration
try to check your root WP and phpBB .htaccess, what those files contains?
post the content of both
post the content of both
- corleone
- User w
- Posts: 17
- Joined: Sun May 29, 2016 2:29 pm
Re: Greetings, quick question re: W3all plugin for login integration
Here is the phpbb
here is the WP.
Code: Select all
RewriteEngine on
SetEnvIfNoCase User-Agent .*rogerbot.* bad_bot
SetEnvIfNoCase User-Agent .*exabot.* bad_bot
SetEnvIfNoCase User-Agent .*mj12bot.* bad_bot
SetEnvIfNoCase User-Agent .*dotbot.* bad_bot
SetEnvIfNoCase User-Agent .*gigabot.* bad_bot
SetEnvIfNoCase User-Agent .*ahrefsbot.* bad_bot
SetEnvIfNoCase User-Agent .*sitebot.* bad_bot
<Limit GET POST HEAD>
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</Limit>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
# raiderforums.com -> raiderforums.com
# raiderforums.net -> raiderforums.com
#RewriteCond %{HTTP_HOST} ^raiderforums\.net$
#RewriteRule ^(.*)$ https://raiderforums.com/$1 [R=301,L]
#RewriteCond %{HTTP_HOST} ^www\.raiderforums\.net$
#RewriteRule ^(.*)$ https://raiderforums.com/$1 [R=301,L]
# www. -> domain
# -> SSL
#RewriteCond %{HTTP_HOST} ^raider-forums\.com
#RewriteCond %{HTTP:CF-Visitor} '"scheme":"http"'
#RewriteRule ^(.*)$ https://raiderforums.com/$1 [R=301,L]
# Compression
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
# Img Expires
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
</IfModule>
#RewriteCond %{HTTP_HOST} ^raiderforums.com$
#RewriteRule ^/?$ "https\:\/\/raiderforums\.com\/" [R=301,L]
#RewriteCond %{HTTP_HOST} ^raiderforums\.com$ [OR]
#RewriteCond %{HTTP_HOST} ^www\.raiderforums\.com$
#RewriteRule ^/?$ "https\:\/\/raiderforums\.com\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^raider\-forums\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.raider\-forums\.com$
RewriteRule ^(.*)$ "https\:\/\/raiderforums\.com\/$1" [R=301,L]
RewriteCond %{HTTP_HOST} ^raiderforums\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.raiderforums\.net$
RewriteRule ^(.*)$ "https\:\/\/raiderforums\.com\/$1" [R=301,L]
Code: Select all
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# WP Maximum Execution Time Exceeded
<IfModule mod_php5.c>
php_value max_execution_time 300
</IfModule>