SPDY is a new networking protocol used for speeding up the web. It combines with http protocol with several speed related features that can reduce page load time. It uses stream multiplexing and header compression to improve speed. In order to use SPDY, a web server and a browser that both support SPDY is needed. Google chrome and newer versions of Firefox support SPDY protocol. In Apache HTTPD server mod_spdy module add support to SPDY protocol. SPDY protocol uses HTTPS so site need to serve content over HTTPS in order …
Miscellaneous
As internet users we are all aware of the infections that are caused to our systems. We call each infections a set of medical terms like viruses,worms etc. so at some point of time we may even say my computer has caught a flue while browsing , just kidding . All apart we always trust on antivirus and some software to treat these viruses as doctors. My agenda here is to let a light pass though everyones mind so that they could understand what are these viruses and infections that …
Sometimes increasing the PHP memory limit in php.ini does not resolve memory-related errors. Even after updating the configuration, applications like WordPress may still display out of memory errors. This usually happens because Apache memory restrictions override PHP settings. Why PHP Memory Limit Changes May Not Work In cPanel/WHM servers, Apache can enforce its own memory limits independent of PHP configuration. You should verify the following WHM setting: WHM → Service Configuration → Apache Configuration → Memory Usage Restrictions This feature controls Apache’s memory usage based on historical resource consumption. How …
How can we delete the downloaded old and junk mails from the server in Outlook
You can set a junk email filter, which can automatically scan your e-mail and move spam into another folder, titled Junk E-mail. Please follow the steps below: 1. On the Tools menu, click Options. 2. On the Preferences tab, under E-mail, click Junk E-mail. 3. Select the level of protection that you want.
Ftp Connection issues (Can connect via console , but not with filezila )
Sometimes administrators may encounter an FTP connection issue where login works through the console, but FTP clients such as FileZilla fail to connect properly. Issue You can successfully connect to the FTP server using the command line, but when connecting through an FTP client like FileZilla: Cause This issue usually occurs when the FTP server operates in Passive Mode. In passive mode: Solution Step 1: Login to the FTP Server Access your server via SSH. Step 2: Configure Passive Port Range Open the Pure-FTPd configuration file: Locate the following line: …
When a users browser calls a PHP script, the process is as follows. 1.Users browser request the page2.PHP script gets compiled by server3.Execution of the compiled version4.Output data. Normally the applications such as programs on our desktop are already compiled. But this is not in the case of scripting languages such as PHP,Perl etc. They are compiled only on demand. Converting source code to machine code consumes a lot of resources. Opcode cache stores the opcode in a cache. Thus instead of constantly recompiling the source code it execute the …
If you manage Windows servers or systems, you’ve probably heard about PowerShell. But many people only use it for basic commands and never unlock its real potential. PowerShell is much more than a command prompt. It is a powerful automation tool that can manage systems, services, applications, and even remote computers — all from a single interface. In this guide, we’ll explain what PowerShell is, what it can do, and provide practical command examples you can use immediately. What Is PowerShell? PowerShell is a command-line shell and scripting language developed …
When working with large PHP applications, you may encounter the “Allowed memory size exhausted” error. This happens when a script consumes more memory than PHP allows. Increasing the PHP memory limit helps prevent script failures during heavy operations such as data processing, backups, or file uploads. This guide explains how to Increase PHP Memory Limit safely using different methods depending on your server setup. What Is PHP memory_limit? The memory_limit setting defines the maximum amount of memory a PHP script can use while running. Once this limit is reached, PHP …
The time that web pages take to load increases because static resources must be downloaded over the network. These resources can be cached by the browser using HTTP caching. Once a resource is cached, the browser loads the stored copy instead of downloading it again, reducing page load time. Browser caching helps reduce the total payload size, saves bandwidth, and eliminates repeated HTTP requests for the same resources. Cacheable resources include JavaScript and CSS files, image files, and other binary objects such as media files and PDFs. HTML files are …
suPHP adds an extra layer of security to your server by ensuring that PHP scripts run under the account’s own user instead of the default nobody user used by Apache in DSO mode. This makes it easier to track vulnerabilities and isolate security issues caused by insecure PHP scripts. Switching from DSO to suPHP improves accountability, enhances security, and prevents unauthorized access across user accounts in shared hosting environments. Why Use suPHP? Using suPHP offers several advantages: Steps to Convert PHP Handler from DSO to suPHP 1. Switch to suPHP …