• 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
General Topics

Suhosin: Advanced Security Protection for PHP

by SupportPRO Admin July 31, 2009
written by SupportPRO Admin

Suhosin is an advanced security protection system designed for PHP installations. It helps secure PHP applications and servers against known and unknown vulnerabilities by adding additional protection layers to the PHP core and runtime environment. Suhosin is widely used by server administrators to improve PHP security, harden web hosting environments, and reduce the risk of exploitation caused by insecure PHP scripts. What is Suhosin? Suhosin is a security system developed specifically for PHP. The primary goal of Suhosin is to protect servers and websites from vulnerabilities in both PHP applications and the PHP core itself. The name “Suhosin” comes from a Korean word meaning “guardian angel,” which reflects its role in securing PHP environments. Suhosin consists of two independent parts: …

Continue Reading
July 31, 2009 0 comments
0 FacebookTwitterPinterestEmail
General TopicsMiscellaneous

Brief intro about mod_userdir | open_basedir

by SupportPRO Admin July 29, 2009
written by SupportPRO Admin

mod_userdir It is an Apache module that allows you to create a separate website for each user on a server. These sites can all be accessed by going to, http://servername.com/~username Eg:- http://example.com/~user/ The module is installed on most Apache setups by default, but isnt necessarily always enabled. Most mass-hosted cPanel servers make extensive use of it for a variety of reasons. Apaches mod_userdir allows users to view their sites by entering a tilde(~) and their username as the URL on a specific host. For example http://test.cpanel.net/~test will bring up the user Tests domain How To Enable 1. To access the Server Setup Menu, click on Server Setup, on the main screen of your WebHost Manager interface. Then, click on Tweak …

Continue Reading
July 29, 2009 0 comments
0 FacebookTwitterPinterestEmail
Server Security

SuPHP, a brief Intro

by SupportPRO Admin July 28, 2009
written by SupportPRO Admin

suPHP suPHP is a tool for executing PHP scripts with the permissions of their owners. It consists of an Apache module (mod_suphp) and a setuid root binary (suphp) that is called by the Apache module to change the uid of the process executing the PHP interpreter. Main Features of SuPHP suPHP provides an additional layer of protection on servers. It causes php scripts to run under the account username instead of the user nobody which is the user that apache/php would run under on a server that is not running suPHP. This feature allows us to more easily track any potential security breaches that come in via insecure php script(s) that a user is running. suPHP also does away with …

Continue Reading
July 28, 2009 0 comments
0 FacebookTwitterPinterestEmail
fantastico deluxe
General Topics

Fantastico De Luxe for cPanel: Complete Guide to Installation, Features, and Troubleshooting

by SupportPRO Admin July 27, 2009
written by SupportPRO Admin

Fantastico De Luxe is a powerful auto-installer for cPanel servers, designed to simplify the deployment of popular web applications. With over 10,000 installations and more than one million users, it enables quick and easy installation of leading open-source scripts directly from the cPanel interface. By integrating seamlessly with cPanel, Fantastico allows users to install multiple instances of applications with minimal effort, making it an essential tool for developers, hosting providers, and website owners. Key Features of Fantastico De Luxe Applications Supported by Fantastico Fantastico offers a wide range of scripts categorized for different use cases: 1. Blogging Platforms 2. Content Management Systems (CMS) 3. Customer Support Tools 4. E-Commerce Solutions 5. Image Galleries 6. Mailing List Tools 7. Wiki Platforms …

Continue Reading
July 27, 2009 0 comments
0 FacebookTwitterPinterestEmail
Server Security

SSH Securing and Key Generation Best Practices

by SupportPRO Admin July 21, 2009
written by SupportPRO Admin

  Secure Shell (SSH) is one of the most critical components of modern server administration. It enables administrators and developers to remotely access servers, execute commands, transfer files, and manage infrastructure securely over an untrusted network. However, if SSH is misconfigured or left unsecured, it can become a major attack vector for brute-force attempts, unauthorized access, and data breaches. In this guide, we’ll explain what SSH is, why securing it is essential, and walk through practical steps to harden SSH access using configuration best practices and SSH key-based authentication. What Is SSH? Secure Shell (SSH) is a cryptographic network protocol used to establish a secure communication channel between two networked devices. It is primarily used on Linux and Unix-based systems …

Continue Reading
July 21, 2009 0 comments
0 FacebookTwitterPinterestEmail
Server Tweaking

How to Optimize MySQL Without Breaking Your Server ?

by SupportPRO Admin July 17, 2009
written by SupportPRO Admin

Optimizing MySQL performance is critical for high-traffic applications. This guide explains how to monitor and tune MySQL for efficient resource usage, focusing on modern defaults, InnoDB, and current best practices. 1. Check MySQL Status and Variables Log in to your MySQL server: mysql -u root -p Check general statistics: SHOW STATUS LIKE ‘%tables%’; SHOW VARIABLES LIKE ‘table_open_cache’; Analysis: Open_tables – Number of tables currently open Opened_tables – Tables opened because the cache was too small Tuning tip:If Opened_tables increases rapidly, increase table_open_cache in your my.cnf : [mysqld] table_open_cache = 4000 2. Thread Cache Check thread usage: SHOW STATUS LIKE ‘Threads_created’; SHOW STATUS LIKE ‘Threads_connected’; Explanation: Threads_created increases each time MySQL must create a new thread for a connection Threads_connected shows …

Continue Reading
July 17, 2009 0 comments
0 FacebookTwitterPinterestEmail
Technical Articles

S.M.A.R.T.D – SMART Disk Monitoring Daemon

by SupportPRO Admin January 15, 2009
written by SupportPRO Admin

What Is smartd? smartd stands for SMART Disk Monitoring Daemon. It is part of the smartmontools package and continuously monitors the SMART (Self-Monitoring, Analysis and Reporting Technology) system built into modern hard drives and SSDs. SMART helps detect and report early warning signs of disk failure. By monitoring these indicators, smartd allows administrators to take preventive action before data loss occurs. smartd supports: How SMART Works SMART tracks several health indicators such as: When these values exceed safe thresholds, smartd can generate warnings via system logs or email notifications. smartmontools Project smartd is maintained as part of the smartmontools open-source project. Key Contributors The project is actively maintained and widely used across Linux, BSD, macOS, and Windows. Project site:https://sourceforge.net/projects/smartmontools/ Installing …

Continue Reading
January 15, 2009 0 comments
0 FacebookTwitterPinterestEmail
A web proxy server positioned between users and the internet cloud, with arrows indicating request and response flow
Technical Articles

Squid

by SupportPRO Admin April 27, 2008
written by SupportPRO Admin

A proxy server is an intermediary application that sits between clients and servers. Instead of connecting directly to a website or service, a client sends requests to the proxy, which then forwards them to the destination server. Proxies are commonly used to: There are proxies for many protocols, including: This article focuses on web proxies, particularly using Squid. Understanding Web Objects and Caching What Are Web Objects? When discussing web proxies and caching, we often refer to objects. A web object can be: Each object is identified by a URL (Uniform Resource Locator). Note: A “web page” typically consists of multiple objects — the HTML file plus images, scripts, and stylesheets. How Caching Works Requests and Responses Here’s what happens …

Continue Reading
April 27, 2008 0 comments
0 FacebookTwitterPinterestEmail
What is Alternative PHP Cache
Technical Articles

What is Alternative PHP Cache (APC)? Why It Was Replaced by OPcache and APCu

by SupportPRO Admin April 22, 2008
written by SupportPRO Admin

Performance optimization is an important part of managing PHP applications and web servers. In earlier PHP environments, Alternative PHP Cache (APC) was one of the most widely used caching solutions for improving application speed and reducing server load. APC worked by storing compiled PHP bytecode in shared memory, eliminating the need to recompile PHP scripts on every request. This significantly improved performance for dynamic PHP applications. However, APC is now deprecated and unsupported in modern PHP environments. Today, OPcache and APCu are the recommended alternatives for PHP caching and performance optimization. In this blog, we’ll explain what APC was, how it worked, why it became obsolete, and which modern caching solutions should be used instead. What Is Alternative PHP Cache …

Continue Reading
April 22, 2008 0 comments
0 FacebookTwitterPinterestEmail
Technical Articles

DHCP

by SupportPRO Admin November 22, 2007
written by SupportPRO Admin

DHCP (Dynamic Host Control Configuration Protocol) Dynamic Host Configuration Protocol (DHCP) is a network protocol that enables a DHCP server to automatically assign an IP address to an individual computers TCP/IP stack software. DHCP assigns a number dynamically from a defined range of numbers configured for a given network.

Continue Reading
November 22, 2007 0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Services

  • Outsourced hosting support
  • Server administration
  • Web Programming
  • How Unchecked Log Growth Brings Production Servers to Their Knees
    When Logs Attack: How Unchecked Log Growth Brings Production Servers to Their Knees
    A Slowdown With No Obvious Cause A server doesn’t need a CPU spike or a memory leak to grind to a halt. Sometimes, the real problem is something much simpler:…
  • How to Reduce Website Response Time
    How to Reduce Website Response Time
    Nobody sticks around for a slow website. If your pages take too long to load, visitors leave, and in many cases, they’re gone before the content even finishes rendering. We…
  • Virtual Machine
    Step-by-step Guide to Expanding a Xen Virtual Machine.
    XenServer is a virtualization platform that provides performance for virtualized server and client operating systems, delivering near-bare metal server performance. On a single host computer, the Xen hypervisor safely runs…

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
  • Database
  • 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
  • MySQL
  • Open source
  • OpenClaw
  • Outsourced tech support
  • Recovery & Backup
  • Remote infrastructure Management
  • RunCloud
  • Security
  • Server
  • server checkup
  • server management
  • server Migration
  • Server Monitoring
  • Server Security
  • server support
  • Server Tweaking
  • Technical Articles
  • Troubleshooting
  • VPS
  • 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
  • Home