Search found 152 matches

by isscbta
Thu Jul 17, 2025 3:21 pm
Forum: WordPress
Topic: Benchmark results: myVesta vs cPanel for WordPress hosting
Replies: 0
Views: 39

Benchmark results: myVesta vs cPanel for WordPress hosting

We have recently conducted a series of benchmarks comparing myVesta and cPanel + LiteSpeed as hosting panels for WordPress websites, using several popular themes (Astra, Elementor, Avada, Divi, WPBakery/Woodmart). The tests included: Time To First Byte (TTFB) measured from multiple global locations ...
by isscbta
Thu Jul 10, 2025 10:50 am
Forum: Mail
Topic: Error: message has lines too long for transport
Replies: 0
Views: 321

Error: message has lines too long for transport

If your users receive bounced emails with the following error: message has lines too long for transport here’s what’s really going on and how to solve it. Why does this happen? Some email clients (most often Microsoft Outlook, especially after copy/paste from Word) can generate emails where a single...
by isscbta
Mon Jun 02, 2025 4:26 pm
Forum: Linux tutorials
Topic: How to setup a post-commit hook with subversion (svn) for automatic deployment on myVesta
Replies: 0
Views: 6475

How to setup a post-commit hook with subversion (svn) for automatic deployment on myVesta

How to setup Subversion (SVN): https://forum.myvestacp.com/viewtopic.php?p=3238#p3238 Step 1: Prepare the Web Directory Before starting, make sure that you have created myVesta user called "svn" and clear the contents of the public_html directory for the target domain. rm -rf /home/svn/web...
by isscbta
Mon Jun 02, 2025 3:14 pm
Forum: Linux tutorials
Topic: How to setup Subversion (SVN) on Debian
Replies: 0
Views: 4118

How to setup Subversion (SVN) on Debian

This guide explains how to set up SVN (Subversion) repository management on a Debian server running myVesta. Step 1: Create the svn user with SSH access In the myVesta panel, create a new user named svn and grant SSH access. We will execute some commands as root and others as svn. Step 2: Install Su...
by isscbta
Mon Apr 28, 2025 1:33 pm
Forum: Mail
Topic: Best DMARC record example and explanation
Replies: 0
Views: 7589

Best DMARC record example and explanation

Here is an example of a strong DMARC (Domain-based Message Authentication, Reporting, and Conformance) record: "v=DMARC1; p=reject; sp=none; pct=100; ri=86400; rua=mailto:info@domain.com;" Explanation of each tag: • p=reject: The policy for your domain. It instructs mail servers to reject ...
by isscbta
Mon Apr 07, 2025 3:56 pm
Forum: nginx templates
Topic: How to Fix “Too Many Open Files” Error in Nginx
Replies: 0
Views: 9748

How to Fix “Too Many Open Files” Error in Nginx

When hosting many websites on a myVesta server, Nginx may eventually hit the system-imposed limit on the number of simultaneously open files. This can cause the web server to fail with the following error message: [emerg] ... open() "... .error.log" failed (24: Too many open files) This ha...
by isscbta
Mon Mar 17, 2025 11:36 am
Forum: PHP
Topic: How to Improve PHP-FPM Performance by Adjusting max_execution_time and Disabling zlib_output_compression
Replies: 0
Views: 8587

How to Improve PHP-FPM Performance by Adjusting max_execution_time and Disabling zlib_output_compression

If you’ve noticed performance issues or intermittent “stuttering” on your server, adjusting a few PHP-FPM settings might help. Below is a quick recap of our tweaks and how they helped resolve error messages and potential timeouts. 1. Identify the Problem We observed frequent occurrences of the follo...
by isscbta
Mon Mar 17, 2025 11:33 am
Forum: Bash
Topic: How to release deleted files held by a running process
Replies: 0
Views: 10244

How to release deleted files held by a running process

When you delete a file that is still being accessed by a process, the file may remain on the disk until that process releases it. This often happens if a Bash session is holding onto the file via an open file descriptor. Below is a quick guide on how to identify and fix this issue: 1. Identify Open ...
by isscbta
Mon Mar 17, 2025 11:29 am
Forum: Third-party software
Topic: How to Fix the "ENOSPC: System Limit for Number of File Watchers Reached" Error When Running npm run dev
Replies: 0
Views: 15445

How to Fix the "ENOSPC: System Limit for Number of File Watchers Reached" Error When Running npm run dev

We encountered an issue when running the command `npm run dev` on our server. Here's a quick overview: Issue Description: 1. The `npm run dev` command starts normally for a second or two. 2. Then the system begins to output errors: `Error: ENOSPC: System limit for number of file watchers reached, wa...
by isscbta
Mon Mar 17, 2025 11:09 am
Forum: Web
Topic: Increasing cookie size limit in nginx and apache
Replies: 0
Views: 7117

Increasing cookie size limit in nginx and apache

This guide explains how to increase the buffer size for URL + cookies accepted by the server in incoming http/https requests. This is done by modifying the relevant configurations in Nginx and Apache . Below is a step-by-step guide to making these changes. [hr] Nginx Configuration By default, Nginx ...