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.
Introduction FTP is a popular protocol for transferring files between a local computer and a server. However, administrators may find that FTP authentication works fine via the command line, while FTP clients like FileZilla fail to display directory listings or complete file transfers. Usually, this problem relates to Passive Mode settings and firewall configurations. When passive FTP ports are blocked, the client can log in successfully but cannot establish the data connection required to list directories or transfer files. This article outlines the main cause of this issue and provides …
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 …
Steps to downgrade WordPress version: 1. Firstly, make full back up of your site (backup of WordPress folder and database). 2. Login to your WordPress dashboard. Go to plugins and deactivate all the plugins. 3. Once you completed with deactivating all the plugins, logout from the WordPress dashboard. 4. Login to your hosting account. Go to your sites root directory and locate the core WordPress files. 5. Delete wp-admin and wp-includes folder. There is no need to delete the files since they can be replaced or overwritten while you copy …
The following are the steps to install awststs in cpanel: 1. Download wastats source: http://awstats.sourceforge.net wget http://nchc.dl.sourceforge.net/project/awstats/AWStats/7.0/awstats-7.0.tar.gz 2. Extract the tzr.gz file #gtar -zxvf awstats-7.0.tar.gz 3. Change the permissions of the awredir.pl and awstats.pl files to 755 (under awstats-7.0/wwwroot/cgi-bin/) 4. Move awredir.pl and awstats.pl and the directory icons to /home/user/cgi-bin 5. Copy /home/user/tmp/awstats/awstats.domain.com.conf to /home/user/cgi-bin 6. Edit /home/user/cgi-bin/awstats.domain.com.conf and search for the “DirIcons” line, and change it to show: DirIcons=”/cgi-bin/icon” 7. Check statistics at http://www.yourdomain.com/cgi-bin/awstats.pl?config=yourdomain.com. If you require help, contact SupportPRO Server Admin
IPTABLES is a powerful firewall utility used in Linux servers to control incoming and outgoing network traffic. It stores firewall configuration rules in the file /etc/sysconfig/iptables. To open a specific port, root privileges are required because firewall rules directly affect system security. Step-by-Step: Open a Port Using IPTABLES 1. Edit the IPTABLES Configuration File Open the configuration file using a text editor: 2. Add a Rule to Allow the Port Append the following rule to allow incoming traffic on a specific TCP port: Replace [port_number] with the required port number …
How to Fix “ini_set() Has Been Disabled for Security Reasons” in Drupal 7
How to Fix “ini_set() Has Been Disabled for Security Reasons” in Drupal 7 When a Drupal 7 website suddenly starts showing warnings like: it usually means that your hosting server has disabled the ini_set() PHP function at the server level. This issue commonly appears after: Let’s understand why this happens and how to fix it properly. Why This Error Occurs Drupal 7 relies on the PHP function ini_set() during its bootstrap process (inside bootstrap.inc) to configure runtime settings. If your hosting provider has disabled ini_set() globally in the server configuration …
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 …