Prefork: The prefork MPM uses multiple child processes with one thread each. Each process handles one connection at a time. On many systems, prefork is comparable in speed to worker, but uses more memory. Prefork’s threadless design has advantages over worker in some situations: it can be used with non-thread-safe third-party modules, and it is … Read More “Apache Prefork versus Worker” »
Category: Optimization
Optimization is necessary to use the standard practises to develop the technology. In websites, we optimize from server to small bit of code. All is try to covered under this category.
Open PowerShell as administrator, Copy and paste one or more of the following commands into the PowerShell prompt, pressing Enter after each one to remove the apps you don’t want on your Windows 10 system: Uninstall 3D Builder: Get-AppxPackage *3dbuilder* | Remove-AppxPackage Uninstall Alarms and Clock: Get-AppxPackage *windowsalarms* | Remove-AppxPackage Uninstall Calculator: Get-AppxPackage *windowscalculator* | … Read More “Remove Apps from Windows 10” »
Control Panel Logs Error log: /var/log/sw-cp-server/error_log and /var/log/sw-cp-server/sw-engine.log Access log: /usr/local/psa/admin/logs/httpsd_access_log Panel log: /usr/local/psa/admin/logs/panel.log Services Stop: /etc/init.d/psa stop Start: /etc/init.d/psa start Restart: /etc/init.d/psa restart Configuration PHP config: /usr/local/psa/admin/conf/php.ini Panel config: /usr/local/psa/admin/conf/panel.ini Web server config: /etc/sw-cp-server/conf.d/plesk.conf Web Presence Builder Logs Error log: /usr/local/psa/admin/logs/sitebuilder.log Install/upgrade logs: /usr/local/sb/tmp/ No service control (working via sw-cp-server service) Configuration /usr/local/sb/config /etc/sw-cp-server/conf.d/plesk.conf … Read More “Plesk/Odin Services Structure” »
WordPress is currently one of the most popular blogging/CMS applications. Here are some ideas for optimizing WordPress and reducing the CPU consumption of this PHP script. Make a backup of your account first, and then upgrade to the latest version of WordPress. The latest versions have optimized code that could reduce the CPU consumption of … Read More “WordPress Optimization” »
The efficiency with which Apache/httpd runs can greatly be improved with a few small tweaks in the Apache configuration file. Below are the major parameters that can be tweaked to improve the performance of the server. Timeout : This directive “Timeout” is used to define the amount of time Apache will waitfor a GET, POST, … Read More “Apache Optimization” »