This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1
CentOS 9 Problems / Re: Can't Get CentOS 9 to Serve Any Content Except Test Page
« on: Today at 10:23:32 PM »
And to be sure, your DocumentRoot is correctly set? And your DirectoryIndex is set to look for index.php? Personally, I remove index.htm and make sure index.php is the first hit, then index.html is the secondary possibility.
2
PHP Selector / Re: Cant install any alt php version
« on: December 29, 2025, 01:44:32 PM »
I have heard of and seen those 8.x versions fail to build lately (from PHP Selector -- oddly, all versions work fine compiling for php-fpm). The workaround is to capture the build script that is downloaded to /usr/local/src and then run it manually after the auto build fails. For some reason, running it manually in the CLI seems to let it succeed vs. running it in the web GUI.
3
E-Mail / Re: RoundCube 1.5.12 Released
« on: December 29, 2025, 12:04:53 AM »
Likewise I'm running AL 8.10 with PHP 8.1.33 as the main command line PHP and also the primary php-fpm version for maximum WordPress compatibility. I have updated all my servers with Starburst's instructions and the only odd thing I had to do was restart cwpsrv afterward as some clients were having troubles accessing the webmail until that service was restarted.
Note that Roundcube runs under CWP's nginx and internal PHP version (actually 7.2) -- labeled as 7.1.
Can you give a list of your repos?
Note that Roundcube runs under CWP's nginx and internal PHP version (actually 7.2) -- labeled as 7.1.
Can you give a list of your repos?
4
PHP / Re: any problems with PHP 8.3 and later?
« on: December 28, 2025, 05:41:21 PM »
WP should use MariaDB by default; MongoDB shouldn't be needed except for specialized applications/purposes.
5
Backup / Re: BACKUP GOOGLE DRIVE
« on: December 24, 2025, 02:26:21 PM »
Thanks, I will try it out!
6
CentOS 9 Problems / Re: CWP7 Pro DNS Editor Bug: DMARC TXT Record Truncated at Semicolon
« on: December 21, 2025, 03:41:22 PM »
I am a bit wary of the config editors after having a few bugs crop up like this. So I tend to edit DNS zones (rarely) in the CLI with nano.
Also note that Starburst found a bug in the Code Editor, so you may want to check out this one based on Ace Editor:
https://forum.centos-webpanel.com/i-can-build-it/cwp-custom-codeeditor-based-on-ace-editor/
Also note that Starburst found a bug in the Code Editor, so you may want to check out this one based on Ace Editor:
https://forum.centos-webpanel.com/i-can-build-it/cwp-custom-codeeditor-based-on-ace-editor/
8
CSF Firewall / Re: Continued CWP support with new CSF fork
« on: December 17, 2025, 02:19:11 AM »
Thanks for the tip. That did look like the fork to watch early on. If it's active and alive, that's great.
9
PHP / Re: any problems with PHP 8.3 and later?
« on: December 16, 2025, 03:02:14 AM »
That was just general advice -- you know your system and your workflow. Do you want to update the extension via PECL? You need to make sure you have an appropriate version of PHP as your CLI version (8.1 or higher). Forget about Composer if you don't use it to manage your projects. I can't really help from afar with some screenshots of error messages... You really may want to consider a sysadmin helping you tune up your system and getting your environment stable with modern PHP versions and MongoDB for your application...
10
PHP / Re: any problems with PHP 8.3 and later?
« on: December 14, 2025, 05:52:08 PM »Quote
Update the MongoDB PHP Driver
Often, this warning appears because of older versions of the mongodb extension or library. Ensure you are using the latest version of both:
Extension: Update via PECL:Code: [Select]pecl upgrade mongodbLibrary: Update via Composer:Code: [Select]composer update mongodb/mongodb
11
How to / Re: Clear alerts & notifications from CLI?
« on: December 11, 2025, 04:30:35 AM »
Bravo! But if I'm not missing something, wouldn't it be easiest to empty the notifications like so:
Code: [Select]
echo '[]' > /usr/local/cwpsrv/htdocs/resources/admin/include/libs/notifications/notifications.json
12
Apache / Re: Apache 2.4.66 released on 2025-12-04
« on: December 08, 2025, 02:09:34 PM »
Great, thanks!
And on the other side of the tracks, if you need Nginx 1.28 with brotli compression, this guide is a good one:
https://www.alphagnu.com/topic/10-enable-brotli-compression-on-nginx-cwp-and-on-linux-os-for-official-nginx/#comment-12
And on the other side of the tracks, if you need Nginx 1.28 with brotli compression, this guide is a good one:
https://www.alphagnu.com/topic/10-enable-brotli-compression-on-nginx-cwp-and-on-linux-os-for-official-nginx/#comment-12
13
E-Mail / Re: Roundcube - Connection Error (Failed to reach server)
« on: December 08, 2025, 02:02:50 PM »
If it's automated login from the panel, should be using an API key to authenticate. Could be an odd gremlin. Try logging out/logging back in. Or could be some specific problem with the account. Can you test logging in manually? Are you able to reset the user credentials without interrupting customer access?
14
How to / Re: Clear alerts & notifications from CLI?
« on: December 08, 2025, 11:56:05 AM »
I poked around one day but didn't come up with any solid answers.
15
How to / Re: Change Domain path to subfolder?
« on: December 06, 2025, 10:22:38 PM »
WebServer Settings > WebServers Conf Editor Apache > /usr/local/apache/conf.d/vhosts/ > yourdomain.conf
Set the DocumentRoot to:
Set the DocumentRoot to:
Code: [Select]
DocumentRoot /home/username/public_html/public
