Changes between Version 16 and Version 17 of HostingServerSetupRecommendations
- Timestamp:
- Aug 31, 2010, 8:59:09 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HostingServerSetupRecommendations
v16 v17 69 69 == PHP == 70 70 71 There are many setups options here, there are advantages and disadvantages between all of them. So choose most suitable for your situation. PHP is a part of webserver and it is difficult to describe PHP without webserver or related to different webservers, so Apache is considered as webserver in this section. Most common setups are described, there maybe more complex setupsavailable.71 There are many setups options here, there are advantages and disadvantages between all of them. So choose most suitable for your situation. PHP is a part of webserver and it is difficult to describe PHP without webserver or related to different webservers, so Apache is considered as webserver in this section. Most common setups are described, but there are more complex setups maybe available. 72 72 73 73 === mod_php (dso module) === … … 77 77 [[Image(hssr-php-1-dso.jpg)]] 78 78 79 This setup works fast because web-server don't need to load PHP interpreter each time, it works as part of web-server. You can even speedup it by installing opcode cache extensions for PHP, we recommend [http://eaccelerator.net/ eAccelerator], because you can get advantage of shared memory cache since Dolphin 7.0.3 which offer eAccelerator.79 This setup works fast because web-server don't need to load PHP interpreter each time, it works as part of web-server. You can even speedup it by installing [http://en.wikipedia.org/wiki/PHP_accelerator opcode cache extensions for PHP], we recommend [http://eaccelerator.net/ eAccelerator], because you can get advantage of shared memory cache since Dolphin 7.0.3 which offer eAccelerator. 80 80 81 81 The problem maybe on shared hosting, because PHP scripts are executing under the same web-user (nobody or apache as usual) and one account owner can get access to nobody files of other account on the server, but it can be properly configured with correct "base_path" restriction to disable such access from PHP script. If you have VPS or dedicated server this is not a problem, since all sites on the server are yours.