Commit Graph

3 Commits

Author SHA1 Message Date
Maurício Meneghini Fauth
ae9eb81b1e
Update server directory for Selenium CI tests
- Update php.ini from Debian's php 8.2 production ini file

```diff
diff --git a/test/php.ini b/test/php.ini
index 60b0020939..5a0439b7fb 100644
--- a/test/php.ini
+++ b/test/php.ini
@@ -317,3 +317,3 @@ serialize_precision = -1
 ; https://php.net/open-basedir
-open_basedir = /tmp/:%ROOT%
+;open_basedir =

@@ -849,3 +849,3 @@ file_uploads = On
 ; https://php.net/upload-max-filesize
-upload_max_filesize = 512M
+upload_max_filesize = 2M

@@ -860,3 +860,3 @@ max_file_uploads = 20
 ; https://php.net/allow-url-fopen
-allow_url_fopen = Off
+allow_url_fopen = On

@@ -1367,3 +1367,3 @@ session.save_handler = files
 ; https://php.net/session.save-path
-session.save_path = "%DIR%/sessions"
+;session.save_path = "/var/lib/php/sessions"

@@ -1376,3 +1376,3 @@ session.save_path = "%DIR%/sessions"
 ; https://wiki.php.net/rfc/strict_sessions
-session.use_strict_mode = 1
+session.use_strict_mode = 0

@@ -1415,3 +1415,3 @@ session.cookie_domain =
 ; https://php.net/session.cookie-httponly
-session.cookie_httponly = 1
+session.cookie_httponly =

@@ -1421,3 +1421,3 @@ session.cookie_httponly = 1
 ; https://tools.ietf.org/html/draft-west-first-party-cookies-07
-session.cookie_samesite = Strict
+session.cookie_samesite =

@@ -1434,3 +1434,3 @@ session.serialize_handler = php
 ; https://php.net/session.gc-probability
-session.gc_probability = 1
+session.gc_probability = 0

@@ -1801,3 +1801,3 @@ ldap.max_links = -1
 ; performance, but may break existing applications.
-opcache.use_cwd=0
+;opcache.use_cwd=1

@@ -1805,3 +1805,3 @@ opcache.use_cwd=0
 ; webserver for changes to the filesystem to take effect.
-opcache.validate_timestamps=0
+;opcache.validate_timestamps=1

@@ -1817,3 +1817,3 @@ opcache.validate_timestamps=0
 ; size of the optimized code.
-opcache.save_comments=0
+;opcache.save_comments=1

@@ -1871,3 +1871,3 @@ opcache.save_comments=0
 ; started from specified string. The default "" means no restriction
-opcache.restrict_api=/disabled/
+;opcache.restrict_api=
```

Co-authored-by: William Desportes <williamdes@wdes.fr>
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-02-26 21:08:55 +01:00
William Desportes
5ab7d56008
Remove all references to deprecated extension mcrypt
"Warning
This feature was DEPRECATED in PHP 7.1.0, and REMOVED in PHP 7.2.0."

It was added in: b9b6b45a4f

I did this change because Sphinx complained about "Warning, treated as error:
/home/travis/build/williamdes/phpmyadmintest/doc/glossary.rst:217:duplicate term description of mcrypt, other instance in glossary" in a documentation added 7 years ago. 

Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-04-05 20:57:07 +02:00
Michal Čihař
b9b6b45a4f Use nginx for running Selenium tests
It is supposed to perform better than PHP built in server.

Signed-off-by: Michal Čihař <michal@cihar.com>
2017-09-06 19:19:07 +02:00