Constantly challenging ourselves to deliver more to our clients

Ubuntu

How to increase the memory limit in WordPress (wp_max_memory_limit)?

To increase the memory limit in WordPress (wp_max_memory_limit), you need to edit the wp-config.php file or your server's configuration file. Here are the steps: Edit the wp-config.php file: Access the wp-config.php file in your WordPress installation. Add the following line of code before the line that says "/* That's all, stop editing! */": define('WP_MEMORY_LIMIT', '256M'); [...]

By |2024-10-20T16:31:06+00:00October 20th, 2024|Centos, Dedicated servers, Plesk, System Administration, Ubuntu, Wordpress|0 Comments

why does my server have a high ttfb?

A high TTFB (Time to First Byte) on your server can occur due to several factors, meaning there’s a delay between a user's request and the moment your server sends the first byte of response. Below are some of the common reasons: Database issues: If your server relies on a database (like MySQL or MariaDB), [...]

How can I test the SSL negotiation of my website

You can test the SSL negotiation of your website using online tools or specific commands. Here are some options: SSL Labs: Use the free service from SSL Labs to perform a comprehensive analysis of your SSL certificate, including the SSL/TLS negotiation. Simply enter your website URL, and it will generate a detailed report about supported [...]

How can I measure the number of requests a website can handle?

To measure the number of requests a website can handle (known as concurrent requests), you can follow these steps: Load testing: Use tools like Apache JMeter, Loader.io, or k6 to simulate multiple users making requests to your website simultaneously. This will help you determine how many requests your website can handle before performance starts to [...]

Where can I configure the number of connections on the hosting?

On a hosting server, the number of simultaneous connections that a server can handle can be configured at different levels, depending on the type of web server and the environment it's set up in. Below is a detailed guide on how to configure it for the most common web servers, like Apache, Nginx, and PHP-FPM: [...]

By |2024-10-13T10:19:49+00:00October 13th, 2024|Centos, Dedicated servers, Plesk, System Administration, Ubuntu|0 Comments

how many maximum connections your MySQL server allows

To check how many maximum connections your MySQL server allows, follow these steps: Open the MySQL command line: mysql -u root -p Once inside MySQL, run the following command to see the maximum allowed connections: SHOW VARIABLES LIKE 'max_connections'; This will display the current value of max_connections, which is the maximum number of simultaneous connections [...]

By |2024-10-13T09:16:15+00:00October 13th, 2024|Centos, Dedicated servers, Plesk, System Administration, Ubuntu|0 Comments

How many simultaneous connections your Apache server can handle

To find out how many simultaneous connections your Apache server can handle, you need to check the configuration of the Multi-Processing Module (MPM), whether it is mpm_prefork, mpm_worker, or mpm_event. The number of allowed connections depends on settings like MaxRequestWorkers (previously known as MaxClients). Steps: Open the Apache configuration file, usually located at /etc/apache2/apache2.conf or [...]

By |2024-10-13T09:10:31+00:00October 13th, 2024|Centos, Dedicated servers, System Administration, Ubuntu|0 Comments

Usage and Examples of the grep

The grep command is widely used in Unix/Linux systems to search for patterns in text files. It’s useful for filtering lines that match a specific text or regular expression. Basic syntax grep [options] "pattern" file pattern: The text or regular expression you want to search for. file: The file where you want to perform the [...]

By |2024-09-28T16:08:48+00:00September 28th, 2024|Centos, Dedicated servers, Scripting, System Administration, Ubuntu|0 Comments

Base-admin.class.php PHP Fatal error: Uncaught Error: [] operator not supported for strings

The error you're encountering, "PHP Fatal error: Uncaught Error: [] operator not supported for strings", indicates that in the file base-admin.class.php of the Revolution Slider (or RevSlider) plugin, you are trying to use the [] operator to add a value to a variable that has been declared as a string. The [] operator is used [...]

How to Download an Entire Directory Using SFTP?

When working with SFTP (SSH File Transfer Protocol), you might need to download an entire directory from a remote server to your local machine. Here's how you can do it. 1. Connecting to the SFTP Server First, you need to connect to the SFTP server. You can do this from the command line using the [...]

By |2024-08-26T09:00:12+00:00August 26th, 2024|Centos, Dedicated servers, System Administration, Ubuntu|0 Comments
Go to Top