Apache * Php * WHM/Cpanel

Recompiling apache

Method 1: Recompilation from WHM===========================1. Login to the WHM of the server as user root.2. Go to Software >> EasyApache (Apache Update) 3. Select a profile to load and click “Start customizing based on profile”.4. Select the Apache version and click next step. 5. Select the Major PHP Version and click next step.6. Select the […]

Linux * MySQL

ERROR 1153 : Got a Packet Bigger Than ‘Max_allowed_packet’ Bytes”

You may have come across this error before while trying to restore mysql databases, it can be easily fixed by increasing max_allowed_packet value. Check the current value first. Get into mysql prompt and enter the following query :select @@max_allowed_packet;Then you can increase the value either by adding the variable in my.cnf file or executing the […]

ASP.NET * Kentico * Windows

Kentico, unable to update/modify and save Master page

Find the following line in your web.config file : <httpRuntime maxRequestLength=”2097151″ waitChangeNotification=”1″ maxWaitChangeNotification=”3600″ /> Change it to: <httpRuntime requestValidationMode=”2.0″ maxRequestLength=”2097151″ waitChangeNotification=”1″ maxWaitChangeNotification=”3600″ /> Request Validation Mode property gets or sets a version number that indicates which ASP.NET version-specific approach to validation will be used. Let me know if it works for you..!!