Show Posts

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.


Messages - rcschaff

Pages: [1] 2 3 ... 55
1
CentOS-WebPanel GUI / Re: FrontEnd no text
« on: January 08, 2024, 10:28:51 PM »
Please post your browser and version.   There was a recent screw-up with some browsers that use a specific service for adblocking that crashed all sites they visited because they allowed NO css or js files to load.

2
CWP API / Re: Error API 404
« on: January 06, 2024, 12:52:47 AM »
You're using GET variables with a POST command.  The PHP example clearly shows how to do this.
Code: [Select]
Example in PHP:

$data = array("key" => "MYKEY","action"=>'list');
$url = "https://IPSERVERAPI:2304/v1/account";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt ($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt ($ch, CURLOPT_POST, 1);
$response = curl_exec($ch);
curl_close($ch);

For the command line
curl -k -X POST -d "key=my_key&action=list" "https://my_server_ip:2304/v1/account"

4
You're probably right.  If they post the same topic again, probably should ban the user :)

5
Information / Re: Ticket #071161 - Invoice #229529 PAID
« on: January 04, 2024, 08:05:13 PM »
I'm guessing that you're saying that you paid for CWP Pro, and it's not active on your server.  If that is the cast, please run /scripts/update_cwp    This should force a license check

6
Send an email to whoever hosts your CWP, and request that the "Set the PTR for your ip to (your hostname)"

7
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 06:32:10 AM »
I PM'd you

8
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 06:02:51 AM »
If it's only one domain, try rebuilding that domains config files from the Root Panel

9
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 05:33:33 AM »
check the following.

systemctl | grep php


They all should be running

10
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 05:30:17 AM »
Your test domain is trying to use php-fpm81, which is probably not started.  Go to Webserver Domain config and change the php version to 8.2 and see what happens.

11
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 04:16:52 AM »
can you post the log file from /usr/local/apache/domlogs/(site)/error.log

12
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 12:28:13 AM »
Without upload, your not getting a startup error. 

Let's try the command

journalctl -xe -u php-fpm82

13
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 04, 2024, 12:00:21 AM »
please post output of

ls /opt/alt/php-fpm82/usr/lib/php/extensions

14
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 03, 2024, 11:16:13 PM »
remove the upload progress module and restart to see if it starts working.

15
PHP / Re: All versions of PHP-FPM 8.2.x compiles but doesn't work.
« on: January 03, 2024, 08:31:27 PM »
from cli, systemctl status php-fpm82

If it's not running try starting it

Pages: [1] 2 3 ... 55