mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
bump php version requirement
This commit is contained in:
@@ -387,8 +387,8 @@ class Setup extends \Zotlabs\Web\Controller {
|
|||||||
function check_php(&$phpath, &$checks) {
|
function check_php(&$phpath, &$checks) {
|
||||||
$help = '';
|
$help = '';
|
||||||
|
|
||||||
if(version_compare(PHP_VERSION, '7.1') < 0) {
|
if(version_compare(PHP_VERSION, '8.0') < 0) {
|
||||||
$help .= t('PHP version 7.1 or greater is required.');
|
$help .= t('PHP version 8.0 or greater is required.');
|
||||||
$this->check_add($checks, t('PHP version'), false, true, $help);
|
$this->check_add($checks, t('PHP version'), false, true, $help);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -344,19 +344,13 @@ abstract class PhotoDriver {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
$f = @fopen($filename, 'rb');
|
||||||
* PHP 7.2 allows you to use a stream resource, which should reduce/avoid
|
|
||||||
* memory exhaustion on large images.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if(version_compare(PHP_VERSION, '7.2.0') >= 0) {
|
|
||||||
$f = @fopen($filename, 'rb');
|
|
||||||
} else {
|
|
||||||
$f = $filename;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($f) {
|
if($f) {
|
||||||
return @exif_read_data($f, null, true);
|
// exif_read_data accepts a stream resource in php > 7.2
|
||||||
|
$x = @exif_read_data($f, null, true);
|
||||||
|
fclose($f);
|
||||||
|
return $x;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
Software Installation
|
Software Installation
|
||||||
|
|
||||||
We've tried very hard to ensure that this software will run on commodity
|
We've tried very hard to ensure that this software will run on commodity
|
||||||
hosting platforms - such as those used to host Wordpress blogs and Drupal
|
hosting platforms - such as those used to host Wordpress blogs and Drupal
|
||||||
websites. It will run on most any Linux VPS system. Windows LAMP platforms
|
websites. It will run on most any Linux VPS system. Windows LAMP platforms
|
||||||
such as XAMPP and WAMP are not officially supported at this time - however
|
such as XAMPP and WAMP are not officially supported at this time - however
|
||||||
we welcome patches if you manage to get it working.
|
we welcome patches if you manage to get it working.
|
||||||
|
|
||||||
Be aware that this software is more than a simple web application. It is a
|
Be aware that this software is more than a simple web application. It is a
|
||||||
complex communications and content management system which more closely
|
complex communications and content management system which more closely
|
||||||
resembles an email server than a web server. For reliability and performance,
|
resembles an email server than a web server. For reliability and performance,
|
||||||
messages are delivered in the background and are queued for later delivery
|
messages are delivered in the background and are queued for later delivery
|
||||||
when sites are down. This kind of functionality requires a bit more of the
|
when sites are down. This kind of functionality requires a bit more of the
|
||||||
host system than the typical blog. Not every PHP/MySQL hosting provider will
|
host system than the typical blog. Not every PHP/MySQL hosting provider will
|
||||||
be able to support Hubzilla. Many will - but please review the requirements
|
be able to support Hubzilla. Many will - but please review the requirements
|
||||||
and confirm these with your hosting provider prior to installation. (And
|
and confirm these with your hosting provider prior to installation. (And
|
||||||
preferably before entering into a long-term contract.)
|
preferably before entering into a long-term contract.)
|
||||||
|
|
||||||
If you encounter installation issues, please let us know via the issue
|
If you encounter installation issues, please let us know via the issue
|
||||||
tracker at https://framagit.org/hubzilla where you downloaded the software.
|
tracker at https://framagit.org/hubzilla where you downloaded the software.
|
||||||
Please be as clear as you can about your operating environment and provide as
|
Please be as clear as you can about your operating environment and provide as
|
||||||
much detail as possible about any error messages you may see, so that we can
|
much detail as possible about any error messages you may see, so that we can
|
||||||
@@ -27,14 +27,14 @@ our best to solve any general code issues.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Before you begin**
|
**Before you begin**
|
||||||
|
|
||||||
Choose a domain name or subdomain name for your server.
|
Choose a domain name or subdomain name for your server.
|
||||||
|
|
||||||
The software can only be installed into the root of a domain or
|
The software can only be installed into the root of a domain or
|
||||||
sub-domain, and can not be installed using alternate TCP ports. These
|
sub-domain, and can not be installed using alternate TCP ports. These
|
||||||
restrictions may be relaxed in the future, but will be inconvenient to work
|
restrictions may be relaxed in the future, but will be inconvenient to work
|
||||||
with, so we still STRONGLY recommend you abide by them.
|
with, so we still STRONGLY recommend you abide by them.
|
||||||
|
|
||||||
Decide if you will use SSL and obtain an SSL certificate before software
|
Decide if you will use SSL and obtain an SSL certificate before software
|
||||||
installation. You SHOULD use SSL. If you use SSL, you MUST use a
|
installation. You SHOULD use SSL. If you use SSL, you MUST use a
|
||||||
@@ -46,19 +46,19 @@ site for the first time, please use the SSL ("https://") URL if SSL is
|
|||||||
available. This will avoid problems later. The installation routine will not
|
available. This will avoid problems later. The installation routine will not
|
||||||
allow you to use a non browser-valid certificate.
|
allow you to use a non browser-valid certificate.
|
||||||
|
|
||||||
This restriction is incorporated because public posts from you may contain
|
This restriction is incorporated because public posts from you may contain
|
||||||
references to images on your own hub. Other members viewing their stream on
|
references to images on your own hub. Other members viewing their stream on
|
||||||
other hubs will get warnings if your certificate is not trusted by their web
|
other hubs will get warnings if your certificate is not trusted by their web
|
||||||
browser. This will confuse many people because this is a decentralised network
|
browser. This will confuse many people because this is a decentralised network
|
||||||
and they will get the warning about your hub while viewing their own hub and
|
and they will get the warning about your hub while viewing their own hub and
|
||||||
may think their own hub has an issue. These warnings are very technical and
|
may think their own hub has an issue. These warnings are very technical and
|
||||||
scary to some folks, many of whom will not know how to proceed except to
|
scary to some folks, many of whom will not know how to proceed except to
|
||||||
follow the browser advice. This is disruptive to the community. That said, we
|
follow the browser advice. This is disruptive to the community. That said, we
|
||||||
recognise the issues surrounding the current certificate infrastructure and
|
recognise the issues surrounding the current certificate infrastructure and
|
||||||
agree there are many problems, but that doesn't change the requirement.
|
agree there are many problems, but that doesn't change the requirement.
|
||||||
|
|
||||||
Free "browser-valid" certificates are available from providers such as StartSSL
|
Free "browser-valid" certificates are available from providers such as StartSSL
|
||||||
and LetsEncrypt.
|
and LetsEncrypt.
|
||||||
|
|
||||||
If you do NOT use SSL, there may be a delay of up to a minute for the initial
|
If you do NOT use SSL, there may be a delay of up to a minute for the initial
|
||||||
install script - while we check the SSL port to see if anything responds there.
|
install script - while we check the SSL port to see if anything responds there.
|
||||||
@@ -66,10 +66,10 @@ When communicating with new sites, Hubzilla always attempts connection on the
|
|||||||
SSL port first, before falling back to a less secure connection. If you do not
|
SSL port first, before falling back to a less secure connection. If you do not
|
||||||
use SSL, your webserver MUST NOT listen on port 443 at all.
|
use SSL, your webserver MUST NOT listen on port 443 at all.
|
||||||
|
|
||||||
If you use LetsEncrypt to provide certificates and create a file under
|
If you use LetsEncrypt to provide certificates and create a file under
|
||||||
.well-known/acme-challenge so that LetsEncrypt can verify your domain
|
.well-known/acme-challenge so that LetsEncrypt can verify your domain
|
||||||
ownership, please remove or rename the .well-known directory as soon as the
|
ownership, please remove or rename the .well-known directory as soon as the
|
||||||
certificate is generated. The software will provide its own handler for
|
certificate is generated. The software will provide its own handler for
|
||||||
".well-known" services when it is installed, and an existing directory in this
|
".well-known" services when it is installed, and an existing directory in this
|
||||||
location may prevent some of these services from working correctly. This
|
location may prevent some of these services from working correctly. This
|
||||||
should not be a problem with Apache, but may be an issue with nginx or other
|
should not be a problem with Apache, but may be an issue with nginx or other
|
||||||
@@ -78,40 +78,40 @@ web server platforms.
|
|||||||
**Installation**
|
**Installation**
|
||||||
|
|
||||||
1. Requirements
|
1. Requirements
|
||||||
- Apache with mod-rewrite enabled and "AllowOverride All" so you can use a
|
- Apache with mod-rewrite enabled and "AllowOverride All" so you can use a
|
||||||
local .htaccess file. Some folks have successfully used nginx and lighttpd.
|
local .htaccess file. Some folks have successfully used nginx and lighttpd.
|
||||||
Example config scripts are available for these platforms in the install
|
Example config scripts are available for these platforms in the install
|
||||||
directory. Apache and nginx have the most support.
|
directory. Apache and nginx have the most support.
|
||||||
|
|
||||||
- PHP 7.1 or later.
|
- PHP 8.0 or later.
|
||||||
|
|
||||||
- PHP *command line* access with register_argc_argv set to true in the
|
- PHP *command line* access with register_argc_argv set to true in the
|
||||||
php.ini file - and with no hosting provider restrictions on the use of
|
php.ini file - and with no hosting provider restrictions on the use of
|
||||||
exec() and proc_open().
|
exec() and proc_open().
|
||||||
|
|
||||||
- curl, gd (with at least jpeg and png support), mysqli, mbstring, xml,
|
- curl, gd (with at least jpeg and png support), mysqli, mbstring, xml,
|
||||||
xmlreader (FreeBSD), zip and openssl extensions. The imagick extension MAY be used
|
xmlreader (FreeBSD), zip and openssl extensions. The imagick extension MAY be used
|
||||||
instead of gd, but is not required and MAY also be disabled via
|
instead of gd, but is not required and MAY also be disabled via
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
- some form of email server or email gateway such that PHP mail() works.
|
- some form of email server or email gateway such that PHP mail() works.
|
||||||
|
|
||||||
- Mysql 5.5.3 or later or MariaDB or postgres database server.
|
- Mysql 5.5.3 or later or MariaDB or postgres database server.
|
||||||
|
|
||||||
- ability to schedule jobs with cron.
|
- ability to schedule jobs with cron.
|
||||||
|
|
||||||
- Installation into a top-level domain or sub-domain (without a
|
- Installation into a top-level domain or sub-domain (without a
|
||||||
directory/path component in the URL) is REQUIRED.
|
directory/path component in the URL) is REQUIRED.
|
||||||
|
|
||||||
2. Unpack the project files into the root of your web server document area.
|
2. Unpack the project files into the root of your web server document area.
|
||||||
|
|
||||||
If you copy the directory tree to your webserver, make sure that you
|
If you copy the directory tree to your webserver, make sure that you
|
||||||
also copy .htaccess - as "dot" files are often hidden and aren't normally
|
also copy .htaccess - as "dot" files are often hidden and aren't normally
|
||||||
copied.
|
copied.
|
||||||
|
|
||||||
- If you are able to do so, we recommend using git to clone the source
|
- If you are able to do so, we recommend using git to clone the source
|
||||||
repository rather than to use a packaged tar or zip file. This makes the
|
repository rather than to use a packaged tar or zip file. This makes the
|
||||||
software much easier to update. The Linux command to clone the repository
|
software much easier to update. The Linux command to clone the repository
|
||||||
into a directory "mywebsite" would be
|
into a directory "mywebsite" would be
|
||||||
|
|
||||||
git clone https://framagit.org/hubzilla/core.git mywebsite
|
git clone https://framagit.org/hubzilla/core.git mywebsite
|
||||||
@@ -120,7 +120,7 @@ web server platforms.
|
|||||||
|
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
- make sure folders *store/[data]/smarty3* and *store* exist and are
|
- make sure folders *store/[data]/smarty3* and *store* exist and are
|
||||||
writable by the webserver
|
writable by the webserver
|
||||||
|
|
||||||
mkdir -p "store/[data]/smarty3"
|
mkdir -p "store/[data]/smarty3"
|
||||||
@@ -134,7 +134,7 @@ web server platforms.
|
|||||||
difficult without opening a trouble ticket with your provider. The
|
difficult without opening a trouble ticket with your provider. The
|
||||||
above permissions will allow the software to work, but are not
|
above permissions will allow the software to work, but are not
|
||||||
optimal.]
|
optimal.]
|
||||||
|
|
||||||
- For installing addons
|
- For installing addons
|
||||||
|
|
||||||
- First you should be **on** your website folder
|
- First you should be **on** your website folder
|
||||||
@@ -142,12 +142,12 @@ web server platforms.
|
|||||||
cd mywebsite
|
cd mywebsite
|
||||||
|
|
||||||
- Then you should clone the addon repository (separately). We'll give this repository
|
- Then you should clone the addon repository (separately). We'll give this repository
|
||||||
a nickname of 'hzaddons'. You can pull in other hubzilla addon repositories by
|
a nickname of 'hzaddons'. You can pull in other hubzilla addon repositories by
|
||||||
giving them different nicknames.
|
giving them different nicknames.
|
||||||
|
|
||||||
util/add_addon_repo https://framagit.org/hubzilla/addons.git hzaddons
|
util/add_addon_repo https://framagit.org/hubzilla/addons.git hzaddons
|
||||||
|
|
||||||
- For keeping the addon tree updated, you should be on your top level website
|
- For keeping the addon tree updated, you should be on your top level website
|
||||||
directory and issue an update command for that repository.
|
directory and issue an update command for that repository.
|
||||||
|
|
||||||
cd mywebsite
|
cd mywebsite
|
||||||
@@ -163,53 +163,53 @@ web server platforms.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
3. Create an empty database and note the access details (hostname, username,
|
3. Create an empty database and note the access details (hostname, username,
|
||||||
password, database name). The PDO database libraries will fallback to socket
|
password, database name). The PDO database libraries will fallback to socket
|
||||||
communication if the hostname is 'localhost' and some people have reported
|
communication if the hostname is 'localhost' and some people have reported
|
||||||
issues with the socket implementation. Use it if your requirements mandate.
|
issues with the socket implementation. Use it if your requirements mandate.
|
||||||
Otherwise if the database is served on the local server, use '127.0.0.1' for
|
Otherwise if the database is served on the local server, use '127.0.0.1' for
|
||||||
the hostname.
|
the hostname.
|
||||||
|
|
||||||
Internally we now use the PDO library for database connections. If you
|
Internally we now use the PDO library for database connections. If you
|
||||||
encounter a database configuration which cannot be expressed on the setup form
|
encounter a database configuration which cannot be expressed on the setup form
|
||||||
(for instance using MySQL with an unusual socket location); you can supply
|
(for instance using MySQL with an unusual socket location); you can supply
|
||||||
the PDO connection string as the database hostname. For instance
|
the PDO connection string as the database hostname. For instance
|
||||||
|
|
||||||
:/path/to/socket.file
|
:/path/to/socket.file
|
||||||
|
|
||||||
You should still fill in all other applicable form values as needed.
|
You should still fill in all other applicable form values as needed.
|
||||||
|
|
||||||
|
|
||||||
4. If you know in advance that it will be impossible for the web server to
|
4. If you know in advance that it will be impossible for the web server to
|
||||||
write or create files in your web directory, create an empty file called
|
write or create files in your web directory, create an empty file called
|
||||||
.htconfig.php and make it writable by the web server.
|
.htconfig.php and make it writable by the web server.
|
||||||
|
|
||||||
5. Visit your website with a web browser and follow the instructions. Please
|
5. Visit your website with a web browser and follow the instructions. Please
|
||||||
note any error messages and correct these before continuing. If you are using
|
note any error messages and correct these before continuing. If you are using
|
||||||
SSL with a known signature authority, use the https: link to your
|
SSL with a known signature authority, use the https: link to your
|
||||||
website.
|
website.
|
||||||
|
|
||||||
6. *If* the automated installation fails for any reason, check the following:
|
6. *If* the automated installation fails for any reason, check the following:
|
||||||
|
|
||||||
- ".htconfig.php" exists
|
- ".htconfig.php" exists
|
||||||
If not, edit htconfig.php and change system settings. Rename
|
If not, edit htconfig.php and change system settings. Rename
|
||||||
to .htconfig.php
|
to .htconfig.php
|
||||||
- Database is populated.
|
- Database is populated.
|
||||||
If not, import the contents of "install/schema_xxxxx.sql" with phpmyadmin
|
If not, import the contents of "install/schema_xxxxx.sql" with phpmyadmin
|
||||||
or mysql command line (replace 'xxxxx' with your DB type).
|
or mysql command line (replace 'xxxxx' with your DB type).
|
||||||
|
|
||||||
7. At this point visit your website again, and register your personal account.
|
7. At this point visit your website again, and register your personal account.
|
||||||
Registration errors should all be recoverable automatically.
|
Registration errors should all be recoverable automatically.
|
||||||
If you get any *critical* failure at this point, it generally indicates the
|
If you get any *critical* failure at this point, it generally indicates the
|
||||||
database was not installed correctly. You might wish to move/rename
|
database was not installed correctly. You might wish to move/rename
|
||||||
.htconfig.php to another name and empty (called 'dropping') the database
|
.htconfig.php to another name and empty (called 'dropping') the database
|
||||||
tables, so that you can start fresh.
|
tables, so that you can start fresh.
|
||||||
|
|
||||||
In order for your account to be given administrator access, it should be the
|
In order for your account to be given administrator access, it should be the
|
||||||
first account created, and the email address provided during registration
|
first account created, and the email address provided during registration
|
||||||
must match the "administrator email" address you provided during
|
must match the "administrator email" address you provided during
|
||||||
installation. Otherwise to give an account administrator access,
|
installation. Otherwise to give an account administrator access,
|
||||||
add 4096 to the account_roles for that account in the database.
|
add 4096 to the account_roles for that account in the database.
|
||||||
|
|
||||||
For your site security there is no way to provide administrator access
|
For your site security there is no way to provide administrator access
|
||||||
using web forms.
|
using web forms.
|
||||||
@@ -220,29 +220,29 @@ using web forms.
|
|||||||
****************************************************************************
|
****************************************************************************
|
||||||
****************************************************************************
|
****************************************************************************
|
||||||
|
|
||||||
8. Set up a cron job or scheduled task to run the Cron manager once every 10-15
|
8. Set up a cron job or scheduled task to run the Cron manager once every 10-15
|
||||||
minutes to perform background processing and maintenance. Example:
|
minutes to perform background processing and maintenance. Example:
|
||||||
|
|
||||||
cd /base/directory; /path/to/php Zotlabs/Daemon/Master.php Cron
|
cd /base/directory; /path/to/php Zotlabs/Daemon/Master.php Cron
|
||||||
|
|
||||||
Change "/base/directory", and "/path/to/php" as appropriate for your situation.
|
Change "/base/directory", and "/path/to/php" as appropriate for your situation.
|
||||||
|
|
||||||
If you are using a Linux server, run "crontab -e" and add a line like the
|
If you are using a Linux server, run "crontab -e" and add a line like the
|
||||||
one shown, substituting for your unique paths and settings:
|
one shown, substituting for your unique paths and settings:
|
||||||
|
|
||||||
*/10 * * * * cd /home/myname/mywebsite; /usr/bin/php Zotlabs/Daemon/Master.php Cron > /dev/null 2>&1
|
*/10 * * * * cd /home/myname/mywebsite; /usr/bin/php Zotlabs/Daemon/Master.php Cron > /dev/null 2>&1
|
||||||
|
|
||||||
You can generally find the location of PHP by executing "which php". If you
|
You can generally find the location of PHP by executing "which php". If you
|
||||||
have troubles with this section please contact your hosting provider for
|
have troubles with this section please contact your hosting provider for
|
||||||
assistance. Hubzilla will not work correctly if you cannot perform this step.
|
assistance. Hubzilla will not work correctly if you cannot perform this step.
|
||||||
|
|
||||||
You should also be sure that App::$config['system']['php_path'] is set correctly
|
You should also be sure that App::$config['system']['php_path'] is set correctly
|
||||||
in your .htconfig.php file, it should look like (changing it to the correct
|
in your .htconfig.php file, it should look like (changing it to the correct
|
||||||
PHP location):
|
PHP location):
|
||||||
|
|
||||||
App::$config['system']['php_path'] = '/usr/local/php56/bin/php';
|
App::$config['system']['php_path'] = '/usr/local/php80/bin/php';
|
||||||
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
If things don't work...
|
If things don't work...
|
||||||
@@ -251,54 +251,54 @@ App::$config['system']['php_path'] = '/usr/local/php56/bin/php';
|
|||||||
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
- If you get the message
|
- If you get the message
|
||||||
"System is currently unavailable. Please try again later"
|
"System is currently unavailable. Please try again later"
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
Check your database settings. It usually means your database could not be
|
Check your database settings. It usually means your database could not be
|
||||||
opened or accessed. If the database resides on the same machine, check that
|
opened or accessed. If the database resides on the same machine, check that
|
||||||
the database server name is "127.0.0.1" or the word "localhost".
|
the database server name is "127.0.0.1" or the word "localhost".
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
- 500 Internal Error
|
- 500 Internal Error
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
This could be the result of one of our Apache directives not being
|
This could be the result of one of our Apache directives not being
|
||||||
supported by your version of Apache. Examine your apache server logs.
|
supported by your version of Apache. Examine your apache server logs.
|
||||||
Also check your file permissions. Your website and all contents must generally
|
Also check your file permissions. Your website and all contents must generally
|
||||||
be world-readable.
|
be world-readable.
|
||||||
|
|
||||||
It is likely that your web server reported the source of the problem in
|
It is likely that your web server reported the source of the problem in
|
||||||
its error log files. Please review these system error logs to determine what
|
its error log files. Please review these system error logs to determine what
|
||||||
caused the problem. Often this will need to be resolved with your hosting
|
caused the problem. Often this will need to be resolved with your hosting
|
||||||
provider or (if self-hosted) your web server configuration.
|
provider or (if self-hosted) your web server configuration.
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
- 400 and 4xx "File not found" errors
|
- 400 and 4xx "File not found" errors
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
First check your file permissions. Your website and all contents must
|
First check your file permissions. Your website and all contents must
|
||||||
generally be world-readable.
|
generally be world-readable.
|
||||||
|
|
||||||
Ensure that mod-rewite is installed and working, and that your
|
Ensure that mod-rewite is installed and working, and that your
|
||||||
.htaccess file is being used. To verify the latter, create a file test.out
|
.htaccess file is being used. To verify the latter, create a file test.out
|
||||||
containing the word "test" in the top directory of the Hubzilla, make it world
|
containing the word "test" in the top directory of the Hubzilla, make it world
|
||||||
readable and point your web browser to
|
readable and point your web browser to
|
||||||
|
|
||||||
http://yoursitenamehere.com/test.out
|
http://yoursitenamehere.com/test.out
|
||||||
|
|
||||||
This file should be blocked. You should get a permission denied message.
|
This file should be blocked. You should get a permission denied message.
|
||||||
|
|
||||||
If you see the word "test" your Apache configuration is not allowing your
|
If you see the word "test" your Apache configuration is not allowing your
|
||||||
.htaccess file to be used (there are rules in this file to block access
|
.htaccess file to be used (there are rules in this file to block access
|
||||||
to any file with .out at the end, as these are typically used for system logs).
|
to any file with .out at the end, as these are typically used for system logs).
|
||||||
|
|
||||||
Make certain the .htaccess file exists and is readable by everybody, then
|
Make certain the .htaccess file exists and is readable by everybody, then
|
||||||
look for the existence of "AllowOverride None" in the Apache server
|
look for the existence of "AllowOverride None" in the Apache server
|
||||||
configuration for your site. This will need to be changed to
|
configuration for your site. This will need to be changed to
|
||||||
"AllowOverride All".
|
"AllowOverride All".
|
||||||
|
|
||||||
If you do not see the word "test", your .htaccess is working, but it is
|
If you do not see the word "test", your .htaccess is working, but it is
|
||||||
likely that mod-rewrite is not installed in your web server or is not working.
|
likely that mod-rewrite is not installed in your web server or is not working.
|
||||||
|
|
||||||
On most flavours of Linux,
|
On most flavours of Linux,
|
||||||
@@ -306,30 +306,30 @@ likely that mod-rewrite is not installed in your web server or is not working.
|
|||||||
% a2enmod rewrite
|
% a2enmod rewrite
|
||||||
% /etc/init.d/apache2 restart
|
% /etc/init.d/apache2 restart
|
||||||
|
|
||||||
Consult your hosting provider, experts on your particular Linux
|
Consult your hosting provider, experts on your particular Linux
|
||||||
distribution or (if Windows) the provider of your Apache server software if
|
distribution or (if Windows) the provider of your Apache server software if
|
||||||
you need to change either of these and can not figure out how. There is
|
you need to change either of these and can not figure out how. There is
|
||||||
a lot of help available on the web. Google "mod-rewrite" along with the
|
a lot of help available on the web. Google "mod-rewrite" along with the
|
||||||
name of your operating system distribution or Apache package.
|
name of your operating system distribution or Apache package.
|
||||||
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
- If you see an error during database setup that DNS lookup failed
|
- If you see an error during database setup that DNS lookup failed
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
This is a known issue on some versions of FreeBSD, because
|
This is a known issue on some versions of FreeBSD, because
|
||||||
dns_get_record() fails for some lookups. Create a file in your top webserver
|
dns_get_record() fails for some lookups. Create a file in your top webserver
|
||||||
folder called '.htpreconfig.php' and inside it put the following:
|
folder called '.htpreconfig.php' and inside it put the following:
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
App::$config['system']['do_not_check_dns'] = 1;
|
App::$config['system']['do_not_check_dns'] = 1;
|
||||||
|
|
||||||
This should allow installation to proceed. Once the database has been
|
This should allow installation to proceed. Once the database has been
|
||||||
installed, add the same config statement (but not the '<?php' line) to the
|
installed, add the same config statement (but not the '<?php' line) to the
|
||||||
.htconfig.php file which was created during installation.
|
.htconfig.php file which was created during installation.
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
- If you are unable to write the file .htconfig.php during installation
|
- If you are unable to write the file .htconfig.php during installation
|
||||||
due to permissions issues:
|
due to permissions issues:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
@@ -339,7 +339,7 @@ For Linux:
|
|||||||
% touch .htconfig.php
|
% touch .htconfig.php
|
||||||
% chmod 777 .htconfig.php
|
% chmod 777 .htconfig.php
|
||||||
|
|
||||||
Retry the installation. As soon as the database has been created,
|
Retry the installation. As soon as the database has been created,
|
||||||
|
|
||||||
******* this is important *********
|
******* this is important *********
|
||||||
|
|
||||||
@@ -437,5 +437,5 @@ MaxRequestWorkers to 70.
|
|||||||
Here you can read more about Apache performance tuning:
|
Here you can read more about Apache performance tuning:
|
||||||
https://httpd.apache.org/docs/2.4/misc/perf-tuning.html
|
https://httpd.apache.org/docs/2.4/misc/perf-tuning.html
|
||||||
|
|
||||||
There are tons of scripts to help you with fine-tuning your Apache installation.
|
There are tons of scripts to help you with fine-tuning your Apache installation.
|
||||||
Just search with your favorite search engine 'apache fine-tuning script'.
|
Just search with your favorite search engine 'apache fine-tuning script'.
|
||||||
|
|||||||
Reference in New Issue
Block a user