Everything posted by leisegang
-
View sites PHP version
This is what i came up with: Search for PHP 7.4 grep -r "74" /home/*/.conf/webservers/ Search for PHP 8.2 grep -r "82" /home/*/.conf/webservers/ Displaying all versions grep -r "php-fpm_ver" /home/*/.conf/webservers/ I did not find that file/folder in all accounts. I dont know why
-
Install PHP 8.3 via CWP
i trying to install php 8.3 via cwp php-fpm selector. it will not work, i get this error: Dependencies resolved. Nothing to do. Complete! chdir: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 28505 100 28505 0 0 61967 0 --:--:-- --:--:-- --:--:-- 61967 /usr/local/cwpsrv/htdocs/resources/conf/el8/php-fpm_selector/external_modules/8.3/sodium.sh: line 9: /opt/alt/php-fpm83/usr/bin/phpize: No such file or directory /usr/local/cwpsrv/htdocs/resources/conf/el8/php-fpm_selector/external_modules/8.3/sodium.sh: line 10: ./configure: No such file or directory make: *** No targets specified and no makefile found. Stop. make: *** No rule to make target 'install'. Stop. /usr/local/cwpsrv/htdocs/resources/conf/el8/php-fpm_selector/external_modules/8.3/sodium.sh: line 14: /opt/alt/php-fpm83/usr/bin/php-config: No such file or directory ERROR: Missing extension file /sodium.so exe:/opt/alt/php-fpm83/usr/sbin/php-fpm Build Completed ################### Error:Can't add notification!
-
View sites PHP version
Is there a way or place in CWP i can view a list of all accounts and what PHP version they are using, i have a few/several sites that are PHP7.4 now and i dont want to open every site in the control panel and change the site to PHP8.3 Also i cannot upgrade ALL sites to php 8.3 because they dont support it yet. If needed how can i write a plugin to make it happen`?
-
Recommended web server setup
As of now i use the PHP-FPM and apache. i mainly host wordpress sites so use of the .htaccess files is absolutely neccesary. if i did the switch to Nginx & Apache would that be that the static files be served with nginx and the php/html with apache? what type of performance gain would i be likely to recieve? I used to use nginx with cpanel, but then i had somewhat more control over this. If its important i use IPV6 now too. Thanks for any answers or solutions
-
AutoSSL stopped working
I have noticed over the last 2 weeks that AutoSSL has stopped working, this is not good for me or my clients. Is there a cronjob i can run every night that checks and renews the ssl certificates?
-
What do you think with Hetzner
I have the Intel® Core™ i9-13900 with 64 GB DDR5 ECC and 2tb nvme ssd. IT is FAST and i can have a good amount of customers on this server. i have had like 6 months with 8TB monthly traffic and it has no problem with that. i really like the storagebox backup that hetzner has. if i will need more servers i would go for one at hetzner. i also have a VPS at hetzner.
-
Backup Remote Sync ith Hetzner Storage box
In Linux-based systems, you can use the following command on the CLI to mount the file system: mount.cifs -o user=<username>,pass=<password> //<username>.your-storagebox.de/backup /PATH/FOLDER By adding the following line to /etc/fstab, your system will automatically mount the file system at boot. (It is a single line!): //<username>.your-storagebox.de/backup /mnt/backup-server cifs iocharset=utf8,rw,credentials=/etc/backup-credentials.txt,uid=<system account>,gid=<system group>,file_mode=0660,dir_mode=0770 0 0 The file /etc/backup-credentials.txt (mode 0600) should contain two lines as follows: username=<username> password=<password> In Debian-based distributions, the command is provided via the package cifs-utils. apt-get install cifs-utils On Debian Wheezy based systems, edit the parameters as follows if you are having problems: rsize=65536,wsize=130048 You should also add the following lines to /etc/rc.local: modprobe cifs echo 0 > /proc/fs/cifs/OplockEnabled
-
Best Hosting providers for CWP - Control Web Panel
I have used these hetzner i have the Intel® Core™ i9-13900 with 64 GB DDR5 ECC and 2tb nvme ssd. IT is FAST and i can have a good amount of customers on this server. i have had like 6 months with 8TB monthly traffic and it has no problem with that. i really like the storagebox backup that hetzner has. if i will need more servers i would go for one at hetzner. i also have a VPS at hetzner. ovh The server i got was probably a few years old when i got it and i had several incidents where disk or RAM failed. Causing downtime, Also they were relatively pricy if you look at hetzner digital ocean good for small vps if you want something small and cointained to its own "server" Not bad prices vps.net good support ok prices. scalability is really good.
-
What do you think with Hetzner
how many servers/vps do you have?
-
How to clear Linux RAM memory cache and free up SWAP memory
this is a solution, but normally a server will clear cache memory when needed., mysql uses the caches very much, also APC/memcached if you use that. It should just be used as a temporary solution and not make a cronjob out of it as sandeep is mentioning.
-
How to check if your Server provider is blocking SMTP Port 25
i like to use netstat -tulpn | grep LISTEN $ netstat -tulpn | more netstat -tulpn | grep LISTEN netstat -tulpn | more to check if there is a service running on that portm then do the telnet debug.
-
Backup Remote Sync ith Hetzner Storage box
The absolute easiest way is to mount the storage box as a volume and then backup to that location. Then use the NEW backup solution in CWP to backup to that location, or you can use rsync to backup to that location. I have one volume at Path: /mnt/backup-server/backup
-
What do you think with Hetzner
i have a intel i9 server there, works great, i have about 60 accounts on it the storage box is good for backup, relatively cheap backup
-
Backup Remote Sync ith Hetzner Storage box
i did it like this: ssh -p23 uXXXXX@uXXXXX.your-storagebox.de mkdir backup connects to port 23 to the storage box and makes the folder backup then to send the backup use: rsync --progress -e 'ssh -p23' --recursive /home <username>@<username>.your-storagebox.de:/backup
-
How to get full apache_status
I also made some other posts about this CWP control panel here: https://leisegang.no/stikkord/cwp/
-
Email delivery
i am not making it, i just found it and used it, because some customer nedded it
-
How to get full apache_status
I have now integrated it into CWP, so for the benefit of others. 1. Create /usr/local/cwpsrv/htdocs/resources/admin/modules/apache_status.php with the following contents: <?php // Apache Status - Accesses v0.4 $url = "http://localhost/server-status"; $ch_session = curl_init(); curl_setopt($ch_session, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch_session, CURLOPT_URL, $url); $result_url = curl_exec($ch_session); echo $result_url; ?> To Add under webservers instead of Developer Options /usr/local/cwpsrv/htdocs/resources/admin/include/3rdparty.php <script type="text/javascript"> $(document).ready(function() { var newButtons = '' +' <li>' +' <a href="?module=apache_status"><span aria-hidden="true" class="icon16 icomoon-icon-arrow-right-3"></span>Apache Status - Accesses</span></a>' +'</li>'; $("ul#mn-15-sub").prepend(newButtons); }); </script> and that's all you need to do to get the full apache status
-
Email delivery
Image of menu on user panel image of the actual output of plugin
-
Upgrade openssl
Thanks for swift reply
-
Email delivery
I got a message saying that i dont have access/rights to view this plugin. I Tried to remove it manually and installed it again with this command and then it worked
-
Email delivery
on cpanel i loved the email delivery tab. that is now missing. @Sandeep B. could you take a look at this plugin and try to get it working? https://github.com/ChobPT/cwp-email-delivery
-
Upgrade openssl
How can i update openssl to version 3.x. The reason i ask is that one of my customers is a public Office and they do security checks on all webpages in their portfolio. Openssl is on a too low version. I currently have v 1.1.1
-
Wrong IP is sending the email. It is not using the default IP
That is what i have in my master file now. edit that to this: So just adding the line to smtp AND relay lines then I will try this after a reply
-
Wrong IP is sending the email. It is not using the default IP
That is per user account mi have that oronlemnserverwide. How do i fix that?
-
Wrong IP is sending the email. It is not using the default IP
When i send an email, i have a PTR record for my hostname server.domain.com it has IP 192.168.0.1 (not real IP, but i dont want to publish my server IP) I also have an addon IP address 192.168.0.2 IPs and hostname is changed to make this simple. When i send an email it uses the 192.168.0.2 IP address and not the one for the hostname, this has the "wrong" PTR record, and so gmail blocks the email because its not "correct" ptr and several other parameters. How do i change this so it doesnt happen? server sends around 1000-2000 mail a day and about 50-100 are blocked. this is quite irritating that it does not use hostname and server IP in CWP for sending email. it uses ANY ip address!