/PHP-8.2/ext/opcache/tests/ |
H A D | blacklist-win32.phpt | 15 $conf = opcache_get_configuration(); 16 $conf = $conf['blacklist']; 17 $conf[3] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[3]); 18 $conf[4] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[4]); 19 print_r($conf);
|
H A D | blacklist.phpt | 23 $conf = opcache_get_configuration(); 24 $conf = $conf['blacklist']; 25 $conf[3] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[3]); 26 $conf[4] = preg_replace("!^\\Q".__DIR__."\\E!", "__DIR__", $conf[4]); 27 print_r($conf);
|
/PHP-8.2/ext/openssl/tests/ |
H A D | openssl_csr_new_basic.phpt | 10 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'); 13 var_dump(openssl_csr_new(array(), $a, $conf, array())); 22 var_dump(openssl_csr_new($a, $b, $conf)); 25 $x = openssl_pkey_new($conf); 26 var_dump(openssl_csr_new(["countryName" => "DE"], $x, $conf + ["x509_extensions" => 0xDEADBEEF]));
|
H A D | bug73833.phpt | 8 $conf = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf']; 11 $key = openssl_pkey_new($conf); 13 if (openssl_pkey_export($key, $privatePEM, $password, $conf) === false) {
|
H A D | bug80747.phpt | 12 $conf = array( 16 var_dump(openssl_pkey_new($conf));
|
H A D | openssl_free_key.phpt | 16 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'); 17 $privkey = openssl_pkey_new($conf); 29 openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase, $conf) or die("failed to export …
|
H A D | 001.phpt | 13 $conf = array('config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'); 14 $privkey = openssl_pkey_new($conf); 28 if (!openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase, $conf)) {
|
/PHP-8.2/sapi/fpm/ |
H A D | Makefile.frag | 18 $(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf.default; \ 19 $(INSTALL_DATA) sapi/fpm/www.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.d/www.conf.default; \
|
H A D | init.d.php-fpm.in | 17 php_fpm_CONF=@sysconfdir@/php-fpm.conf
|
/PHP-8.2/ext/snmp/tests/ |
H A D | README.md | 39 * Replace config file (by default this is `/etc/snmp/snmpd.conf` on Linux and 40 `/usr/local/etc/snmp/snmpd.conf` on FreeBSD) with `snmpd.conf` supplied. 43 `/var/net-snmp/snmpd.conf`. Delete it if exists. Forgetting to do so will fail 46 * Place `ext/snmp/tests/bigtest` near `snmpd.conf`, tune path to it in 47 `snmpd.conf`. 52 sudo snmpd -C -c ./snmpd.conf -f -Le
|
/PHP-8.2/ext/imap/tests/setup/ |
H A D | setup.sh | 4 sudo cp ext/imap/tests/setup/dovecot.conf /etc/dovecot/dovecot.conf
|
/PHP-8.2/.github/actions/setup-x64/ |
H A D | action.yml | 15 sudo cp ext/snmp/tests/snmpd.conf /etc/snmp 21 sudo cp ext/imap/tests/setup/dovecot.conf /etc/dovecot/dovecot.conf
|
/PHP-8.2/ext/ldap/tests/ |
H A D | ldap_connect_ldap_conf.phpt | 2 ldap_connect() - Connection using default host from openldap's ldap.conf 15 LDAPCONF={PWD}/ldap_connect_ldap_conf.conf
|
H A D | README.md | 99 #### (/etc/openldap/)slapd.conf 121 #### (/etc/openldap/)ldap.conf
|
/PHP-8.2/.github/scripts/ |
H A D | setup-slapd.sh | 34 if ! grep -q 'TLS_CACERT \/etc\/ldap\/ssl\/server.crt' /etc/ldap/ldap.conf; then 35 sudo sed -e 's|^\s*TLS_CACERT|# TLS_CACERT|' -i /etc/ldap/ldap.conf 36 echo 'TLS_CACERT /etc/ldap/ssl/server.crt' | sudo tee -a /etc/ldap/ldap.conf
|
/PHP-8.2/.github/actions/setup-oracle/ |
H A D | action.yml | 25 …sudo sh -c 'echo /opt/oracle/instantclient >/etc/ld.so.conf.d/oracle-instantclient.conf && ldconfi…
|
/PHP-8.2/ext/phar/phar/ |
H A D | clicommand.inc | 245 foreach(call_user_func($func, $l, $sp) as $arg => $conf) { 246 if ((isset($conf['required']) && $conf['required']) != $required) { 258 $inf .= $this->cli_wordwrap($sp . $arg . $conf['inf'], $l2, $sp2) . "\n"; 260 if (isset($conf['select']) && count($conf['select'])) { 262 foreach($conf['select'] as $opt => $what) { 267 foreach($conf['select'] as $opt => $what) {
|
/PHP-8.2/sapi/fpm/fpm/ |
H A D | fpm_conf.c | 375 *conf = LOG_AUTH; in fpm_conf_set_syslog_facility() 389 *conf = LOG_CRON; in fpm_conf_set_syslog_facility() 396 *conf = LOG_DAEMON; in fpm_conf_set_syslog_facility() 403 *conf = LOG_FTP; in fpm_conf_set_syslog_facility() 410 *conf = LOG_KERN; in fpm_conf_set_syslog_facility() 417 *conf = LOG_LPR; in fpm_conf_set_syslog_facility() 424 *conf = LOG_MAIL; in fpm_conf_set_syslog_facility() 431 *conf = LOG_NEWS; in fpm_conf_set_syslog_facility() 438 *conf = LOG_SYSLOG; in fpm_conf_set_syslog_facility() 445 *conf = LOG_USER; in fpm_conf_set_syslog_facility() [all …]
|
/PHP-8.2/ext/pdo/tests/ |
H A D | pdo_test.inc | 14 $conf = eval($common); 15 foreach($conf['ENV'] as $n=>$v) putenv("$n=$v");
|
/PHP-8.2/sapi/apache2handler/ |
H A D | php_apache.h | 54 char *get_php_config(void *conf, char *name, size_t name_len);
|
H A D | apache_config.c | 180 char *get_php_config(void *conf, char *name, size_t name_len) in get_php_config() argument 182 php_conf_rec *d = conf; in get_php_config()
|
/PHP-8.2/sapi/fpm/tests/ |
H A D | gh13563-conf-bool-env.phpt | 2 FPM: GH-13563 - conf boolean environment variables values
|
/PHP-8.2/ext/imap/tests/ |
H A D | README.md | 23 `ext/imap/tests/setup/dovecot.conf` and `ext/imap/tests/setup/dovecotpass` to the correct
|
/PHP-8.2/ |
H A D | .travis.yml | 79 - sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
|
H A D | .cirrus.yml | 12 #- sed -i -e 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
|