• Free Checkup
  • Emergency Support
  • Login
  • Sign Up
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team
Server Management Tips
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team
Copyright 2021 - All Right Reserved
Linux Basics

How to Open a Port in IPTABLES on Linux Server

by SupportPRO Admin November 15, 2012
written by SupportPRO 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 …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
You said photo of a computer monitor displaying a PHP warning message in a browser window
Technical Articles

How to Fix “ini_set() Has Been Disabled for Security Reasons” in Drupal 7

by SupportPRO Admin November 15, 2012
written by SupportPRO Admin

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 …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Close-up of a laptop screen showing a PowerShell command window with commands
MiscellaneousWindows Server

What Is PowerShell? | Complete Beginner Guide 

by SupportPRO Admin November 15, 2012
written by SupportPRO Admin

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 …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Increase memory_limit of a particular script
Miscellaneous

How to Increase PHP Memory Limit for a Specific Script ?

by SupportPRO Admin November 6, 2012
written by SupportPRO Admin

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 …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Technical Articles

How do I setup custom php.ini settings

by SupportPRO Admin November 5, 2012
written by SupportPRO Admin

Most of the shared hosting servers will be running php 5 with phpSuExec enabled.And so users are not able to have php flags in their .htaccess file. Inserting php flags in .htaccess files is a common cause of internal server errors on servers with phpSuExec enabled. One way around this is to create a custom php.ini file with the php values you need. The custom php.ini file we are creating should have the following permissions. permission: 644 ownership: cpanelusername:cpanelusername We can simply create a blank php.ini file and can add …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
General Topics

POP vs IMAP: What’s the Difference and Which One Should You Use?

by SupportPRO Admin October 30, 2012
written by SupportPRO Admin

When configuring email, one of the most common decisions is choosing between POP and IMAP. Both are email retrieval protocols, but they work in very different ways. POP (Post Office Protocol) is an older protocol designed for offline email access. IMAP (Internet Message Access Protocol) is more modern and supports multi-device email access. Understanding the difference between POP and IMAP helps you choose the right setup for your business or personal email. What Is POP (Post Office Protocol)? POP was designed to download emails from the mail server to a …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How Can mod_expires Speed Up Your Website in Apache?

by SupportPRO Admin October 30, 2012
written by SupportPRO Admin

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 …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Converting PHP Handler from DSO to suPHP in cPanel Servers
Miscellaneous

Converting PHP Handler from DSO to suPHP in cPanel Servers

by SupportPRO Admin October 17, 2012
written by SupportPRO Admin

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 …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How to Safely Reduce Root (/) LVM Partition Size Using Rescue Mode ?

by SupportPRO Admin October 17, 2012
written by SupportPRO Admin

Resizing an LVM partition, especially reducing the root ( / ) partition, requires careful planning because the root filesystem cannot be unmounted while the system is running. To safely perform this operation, the server must be booted into a rescue environment, allowing administrators to modify disk partitions without risking data corruption. This guide explains how to safely reduce an LVM root partition using SystemRescueCd. Prerequisites Before starting: 👉 http://www.sysresccd.org/Download Step 1: Boot the Server in Rescue Mode Reboot the server and enter BIOS/Boot Menu. Step 2: Identify the Root LVM …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

DomainKey Identifer Mail (DKIM) Working Principle

by SupportPRO Admin October 1, 2012
written by SupportPRO Admin

DKIM is an email authentication technology which uses cryptography to validate that a message was sent by an authorized source. It is a method for associating a domain name to an email message, thereby allowing a person or organization to claim some responsibility for the message. In DKIM, any sending or handling mail agent either an MTA (Mail Transfer Agent) or a MUA (Mail User Agent) can cryptographically sign mail by adding a DKIM-Signature mail header to the mail item.

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Services

  • Outsourced hosting support
  • Server administration
  • Web Programming
  • Large Language Models
    Understanding LLMs (Large Language Models): A Step-by-Step Guide for Beginners
    Introduction Artificial Intelligence (AI) is revolutionizing the way we live our lives by transforming everything from work practices to communication and even ways we search for information. Nowadays, most of…
  • Linux server monitoring dashboard showing I/O wait and disk bottlenecks
    How to Troubleshoot High I/O Wait in Linux
    Linux servers can handle thousands of operations every second. However, they can still slow down when storage devices become overloaded. One of the clearest signs of a storage problem is…
  • How to Choose Server Infrastructure for Hosting Companies
    How to Choose the Right Server Infrastructure for a Growing Hosting Company ?
    Why Infrastructure Decisions Matter ? Running a hosting company becomes more challenging as your business grows. In the beginning, managing a few customers and servers may feel simple. However, your…

Categories

  • ansible
  • Artificial Intelligence
  • AWS
  • aws managed service provider
  • AWS Support
  • aws support services
  • Build Automation
  • Business
  • Case Study
  • Cloud
  • Cloud Managed Service
  • Cloud Support Services
  • Cloudflare
  • Compiling tools
  • cPanel
  • dedicated server support
  • Dedicated servers
  • Dedicated tech support
  • DevOps
  • Disaster Recovery
  • Docker
  • GCP
  • General Topics
  • JetBackup
  • Linux
  • Linux Basics
  • live chat
  • live chat support
  • Miscellaneous
  • Open source
  • Outsourced tech support
  • Recovery & Backup
  • Remote infrastructure Management
  • RunCloud
  • Security
  • server checkup
  • server management
  • server Migration
  • Server Monitoring
  • Server Security
  • server support
  • Server Tweaking
  • Technical Articles
  • Troubleshooting
  • web hosting
  • web hosting support
  • Windows Server
  • WordPress

CONTACT US

Sales and Support

Phone: 1-(847) 607-6123
Fax: 1-(847)-620-0626
Sales: sales@supportpro.com
Support: clients@supportpro.com
Skype ID: sales_supportpro

Postal Address

1020 Milwaukee Ave, #245,
Deerfield, IL-60015
USA

  • Industry Solutions
    • Web Hosting Services
    • Service Providers
    • E-Commerce Companies
    • Software Vendors
    • Web Developers
    • ISPs
    • Services
  • About Us
    • Company
    • Technical Blog
    • Careers
    • FAQ
    • Partners
    • Site Map
    • Affiliates
  • Popular Plans
    • Dedicated Team Support
    • Helpdesk Support
    • Hourly Administration
    • Legal
    • Privacy Statement
    • Terms of Use
    • How we work

©2022  SupportPRO.com. All Rights Reserved

X-twitter Facebook Linkedin Rss
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team