Vous avez cherché: to contribute to your esteemed ... (Chinois (simplifié) - Anglais)

Traduction automatique

Apprendre à traduire à partir d'exemples de traductions humaines.

Chinese

English

Infos

Chinese

to contribute to your esteemed organization

English

 

De: Traduction automatique
Suggérer une meilleure traduction
Qualité :

Contributions humaines

Réalisées par des traducteurs professionnels, des entreprises, des pages web ou traductions disponibles gratuitement.

Ajouter une traduction

Chinois (simplifié)

Anglais

Infos

Chinois (simplifié)

go back to your country

Anglais

go back to your country

Dernière mise à jour : 2024-01-18
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

environmental monitoring systems not specific to dldd but that may contribute to unccd reporting supported in 2008

Anglais

environmental monitoring systems not specific to dldd but that may contribute to unccd reporting supported in 2008

Dernière mise à jour : 2016-12-04
Fréquence d'utilisation : 2
Qualité :

Chinois (simplifié)

(序言部分第二段 "inter alia, both to control transfers that could contribute to proliferation activities and ")

Anglais

(the words "inter alia, both to control transfers that could contribute to

Dernière mise à jour : 2016-12-04
Fréquence d'utilisation : 1
Qualité :

Avertissement : un formatage HTML invisible est présent

Chinois (simplifié)

this is your pointer which will point to your previously registered resource.

Anglais

this is your pointer which will point to your previously registered resource.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

you need to insert these three lines to your apache httpd.conf configuration file to set up the cgi binary:

Anglais

there are two ways to set up php to work with apache 2.0 on windows.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

add the line extension=php_printer.dll to your php.ini file.

Anglais

add the line extension=php_printer.dll to your php.ini file.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

this section will guide you through the general configuration and installation of php on unix systems. be sure to investigate any sections specific to your platform or web server before you begin the process.

Anglais

be sure to investigate any sections specific to your platform or web server before you begin the process.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

this database uses a single quote (') character for escaping, a behavior similar to the sybase database, add to your php.ini the following directive:

Anglais

this database uses a single quote (') character for escaping, a behavior similar to the sybase database, add to your php.ini the following directive:

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

the only header file you really have to include for your modules is php.h, located in the php directory. this file makes all macros and api definitions required to build new modules available to your code.

Anglais

this file makes all macros and api definitions required to build new modules available to your code.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

图片页these are weekly readings and do not have translations. they may have different spellings in your language; otherwise, just translate the sound to your characters

Anglais

picture page

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 3
Qualité :

Chinois (simplifié)

haazinuthese are jewish holidays and mostly do not have translations. they may have different spellings in your language; otherwise, just translate the sound to your characters.

Anglais

haazinu

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 3
Qualité :

Chinois (simplifié)

to enable support for xpm add --with-xpm-dir=dir. if configure is not able to find the required libraries, you may add the path to your x11 libraries.

Anglais

if configure is not able to find the required libraries, you may add the path to your x11 libraries.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

we'll go into more details on the m4 macros available to your configuration scripts later in this chapter. for now, we'll simply use the default files.

Anglais

for now, we 'll simply use the default files.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

to enable ovrimos support in php just compile php with the --with-ovrimos[=dir] parameter to your configure line. dir is the ovrimos' libsqlcli install directory.

Anglais

to enable ovrimos support in php just compile php with the --with-ovrimos[ =dir] to enable ovrimos support in php just compile php with the --with-ovrimos[=dir] parameter to your configure line.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Chinois (simplifié)

// fill in data for the distinguished name to be used in the cert // you must change the values of these keys to match your name and // company, or more precisely, the name and company of the person/site // that you are generating the certificate for. // for ssl certificates, the commonname is usually the domain name of // that will be using the certificate, but for s/mime certificates, // the commonname will be the name of the individual who will use the // certificate. $dn = array( "countryname" = "uk", "stateorprovincename" = "somerset", "localityname" = "glastonbury", "organizationname" = "the brain room limited", "organizationalunitname" = "php documentation team", "commonname" = "wez furlong", "emailaddress" = "wez@php.net"); // generate a new private (and public) key pair $privkey = openssl_pkey_new(); // generate a certificate signing request $csr = openssl_csr_new($dn, $privkey); // you will usually want to create a self-signed certificate at this // point until your ca fulfills your request. // this creates a self-signed cert that is valid for 365 days $sscert = openssl_csr_sign($csr, null, $privkey, 365); // now you will want to preserve your private key, csr and self-signed // cert so that they can be installed into your web server, mail server // or mail client (depending on the intended use of the certificate). // this example shows how to get those things into variables, but you // can also store them directly into files. // typically, you will send the csr on to your ca who will then issue // you with the "real" certificate. openssl_csr_export($csr, $csrout) and debug_zval_dump($csrout); openssl_x509_export($sscert, $certout) and debug_zval_dump($certout); openssl_pkey_export($privkey, $pkeyout, "mypassword") and debug_zval_dump($pkeyout); // show any errors that occurred here while (($e = openssl_error_string()) !== false) {echo $e. "\n";}

Anglais

/ / fill in data for the distinguished name to be used in the cert / / you must change the values of these keys to match your name and / / company, or more precisely, the name and company of the person / site / / that you are generating the certificate for. / / for ssl certificates, the commonname is usually the domain name of / / that will be using the certificate, but for s / mime certificates, / / the commonname will be the name of the individual who will use the / / certificate. $dn = array( "countryname "= "uk", "stateorprovincename" = "somerset", "localityname "= "glastonbury", "organizationname" = "the brain room limited", "organizationalunitname "= "php documentation team", "commonname" = "wez furlong", "emailaddress "= "wez@php.net"); / / generate a new private (and public) key pair $privkey = openssl_pkey_new(); / / generate a certificate signing request $csr = openssl_csr_new($dn, $privkey); / / you will usually want to create a self-signed certificate at this / / point until your ca fulfills your request. / / this creates a self-signed cert that is valid for 365 days $sscert = openssl_csr_sign($csr, null, $privkey, 365); / / now you will want to preserve your private key, csr and self-signed / / cert so that they can be installed into your web server, mail server / / or mail client (depending on the intended use of the certificate). / / this example shows how to get those things into variables, but you / / can also store them directly into files. / / typically, you will send the csr on to your ca who will then issue / / you with the "real "certificate. openssl_csr_export($csr, $csrout) and debug_zval_dump($csrout); openssl_x509_export($sscert, $certout) and debug_zval_dump($certout); openssl_pkey_export($privkey, $pkeyout, "mypassword") and debug_zval_dump($pkeyout); / / show any errors that occurred here while (($e = openssl_error_string()) !== false) {echo $e. "\n";}

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Avertissement : un formatage HTML invisible est présent

Certaines traductions humaines peu pertinentes ont été masquées.
Affichez les résultats peu pertinents.

Obtenez une traduction de meilleure qualité grâce aux
7,770,960,120 contributions humaines

Les utilisateurs demandent maintenant de l'aide :



Nous utilisons des cookies pour améliorer votre expérience utilisateur sur notre site. En poursuivant votre navigation, vous déclarez accepter leur utilisation. En savoir plus. OK