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.

Featured Replies

Posted

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?

Solved by leisegang

Go to solution
  • Author
  • Solution

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>";
?>

Create an account or sign in to comment

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.