Code: Select all
phpbb_version_compare($config['version'], '3.2.0', '>=') &&
phpbb_version_compare($config['version'], '3.3', '<=') &&
/store/phpbbservices
folder 0777 and see if that works.Code: Select all
phpbb_version_compare($config['version'], '3.2.0', '>=') &&
phpbb_version_compare($config['version'], '3.3', '<=') &&
/store/phpbbservices
folder 0777 and see if that works.Doesn't this result in phpBB 3.2.0 not being supported (since 3.2.0 < 3.2.0-a1)? (it looks illogical but in alphanumeric order 3.2.0 is smaller than3.2.0-a1).
/core/common.php
on lines 55-59 replace:Code: Select all
// If the license key is blank or not 16 characters, the database cannot be downloaded, so exit this function.
if (strlen(trim($this->config['phpbbservices_filterbycountry_license_key'])) !== 16)
{
return false;
}
Code: Select all
// If on the settings page, we return true, otherwise, the screen can't come up to enter a new or corrected license key.
if (stripos($this->user->page['query_string'], 'mode=settings'))
{
return true;
}
else
{
// If the license key is blank or not 16 characters, the database cannot be downloaded, so exit this function.
if (strlen(trim($this->config['phpbbservices_filterbycountry_license_key'])) !== 16)
{
return false;
}
}
/event/main_listener.php
lines 142-145 may be:Code: Select all
$test_mode = true;
if ($test_mode)
{
$test_ips[] = '128.101.101.101'; // For testing, United States IP
Code: Select all
$test_mode = false;
if ($test_mode)
{
//$test_ips[] = '128.101.101.101'; // For testing, United States IP
/ext/phpbbservices/filterbycountry
directory.once i'd got a Maxmind licence key it worked fine on 3.2.9
Code: Select all
"version": "1.0.9-beta",
Does that mean it is not phpBB 3.3.0 compatible? I try to switch back.Information
To install this extension, the store directory must be writable (0777 Unix file permissions). The allow_url_fopen directive must be enabled. The following PHP extensions are required: curl, dom and Phar. This extension works with phpBB 3.2 only.