Software / Platforms: Apache Webserver, nginx, MariaDB, PHP 8.3, Plesk, Apache Solr
Software / Platforms: Apache Webserver, nginx, MariaDB, PHP 8.3, Plesk, Apache Solr
access_compat: Für Abwärtskompatibilität mit älteren Zugriffssteuerungsrichtlinien. Zugriffskontrolle für ältere Versionen.
aclr: Zugriffskontrolllisten für feingranulare Berechtigungen. Zugriffskontrolllisten.
allowmethods: Beschränkt die erlaubten HTTP-Methoden. Erlaubte HTTP-Methoden festlegen.
auth_basic: Grundlegende HTTP-Authentifizierung.
auth_digest: Implementiert Digest-Authentifizierung. Digest-Authentifizierung für HTTP.
Ich möchte 250 Dateien auf hochladen. Aber der Webserver akzeptiert die ersten 20 und Rest wird ignoriert. Die Website läuft über Apache und nginx (Debian).
Was ist die Lösung?
Install PHP 8.0
apt install php8.0
Install common PHP 8 Extensions
Neue Konfigurationsdatei (.ini) erstellen: \etc\php\7.0\cgi\conf.d\meine_eigene.ini
memory_limit = 2G
upload_max_size = 2G
post_max_size = 2G
upload_max_filesize = 2G
max_execution_time = 300
max_input_time = 3600
max_file_uploads = 1000xdebug.max_nesting_level = 512
session.gc_maxlifetime = 86400
# service apache2 reload
[core:alert] [pid 3559] [client 11.22.33.44:46457] /home/mysite/public_html/.htaccess: Option FollowSymLinks not allowed here
Certbot Installation (durch shell root) klappt nicht:
#/path/to/certbot/certbot-auto --apache
...
Installing Python packages...
Installation succeeded.
Saving debug log to /var/log/letsencrypt/letsencrypt.log
The apache plugin is not working; there may be problems with your existing configuration.
The error was: NotSupportedError('Apache plugin support requires libaugeas0 and augeas-lenses version 1.2.0 or higher, please make sure you have you have those installed.',)
Es gibt ein paar Websites, die auf Linux-Server laufen. Ich benutze selber zu Hause Windows. Ich habe keine Erfahrung mit GIT und PHPStorm.
Wie kann ich PHPStorm und GIT installieren und konfigurieren, dass Alles mindestens "Hello World" reibungslos läuft?
Redirect www to non www properly (wildcard / any hostname)
RewriteEngine On RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Redirect www.example.com to example.com (with hostname):
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]
Neueste Kommentare
List config vaiables
/usr/sbin/mariadbd --help --verbose | grep "query.*size"
Restart MariaDB / MySQL
Commandline:
MariaDB Restart (after changes in /etc/mysql/db-performance.cnf)
After my changes in /etc/mysql/db-performance.cnf
Error: configure: error: no acceptable C compiler found in $PATH
Error:
PHP 8.3, APCu via PECL
PHP 8.3 extra packages (+ pecl, apcu)
apt update apt install plesk-php83-dev zlib1g-dev
https : Secure Connection Failed
I get this error, when I visit https://solr.example.com:8983 :
Remove files and show the number of deleted files
Remove all files starting with 2024 in mydir123 and show the number of deleted files:
find mydir123 -name '2024*' -exec rm -vf {} \; | wc -l
find . -name '*' | xargs rm …
find . -name '*' | xargs rm -v
Maybe Patch
https://www.drupal.org/project/tablefield/issues/3397688
/etc/my.cnf
Edit "/etc/my.cnf" ( under [mysqld] ):
transaction_isolation="READ-COMMITTED"
Restart MariaDB / MySQL: