Jump to content
The Uniform Server Community

carlopug

Member
  • Posts

    3
  • Joined

  • Last visited

Previous Fields

  • Main OS
    Windows 7

carlopug's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. You are right!!! Thank you very much!!! I never used the server console before... Setting HOME and US_ROOTF variables from the batch before calling php is the right way to solve the problem. Is there a method to force the server console environment to call custom batch? TIA, C.
  2. Sure! This is the code of test.php file: <?php error_reporting(E_ALL); ini_set('display_errors', '1'); mail("to@email.com", "Subject", "Line 1\nLine 2\nLine 3"); die();This is the command line to run the code: F:\UniServerZ\core\php54\php -f F:\Home\Dropbox\test.phpThis is the error message: Impossibile trovare il percorso specificato.that sounds like "unable to find the specified path" or something silimar (I use italian OS). I think that the ${US_ROOTF} variable contains a wrong path value... This is the command line to see the default configuration file loaded: f:\uniserverz\core\php54\php -r "print (php_ini_loaded_file());"the output result is: F:\uniserverz\core\php54\php-cli.iniphp-cli.ini default file contains: [PHP] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; PHP PHP 5.4.32 CLI php-cli.ini ; ; Uniform Server PHP CLI php-cli.ini ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; extension=php_curl.dll extension=php_mysql.dll extension=php_openssl.dll extension=php_gd2.dll extension=php_pdo_mysql.dll extension=php_mbstring.dll extension_dir = "./extensions" ;error_reporting = E_ALL | E_STRICT error_reporting = E_ALL date.timezone = "Europe/Rome" sendmail_path = "${US_ROOTF}/core/msmtp/msmtp.exe --file=${US_ROOTF}/core/msmtp/msmtprc.ini -t" [COM_DOT_NET] extension=php_com_dotnet.dll If I try to change sendmail_path configuration with sendmail_path = "F:/UniServerZ/core/msmtp/msmtp.exe --file=F:/UniServerZ/core/msmtp/msmtprc.ini -t"the following error comes out: F:/UniServerZ/core/msmtp/msmtp.exe: cannot log to C:\Users\utente\AppData\Roaming\core\msmtp\msmtp.log: cannot open: No such file or directoryand the email was correctly send. In the last error message I can see the USER HOME path so I think that ${US_ROOTF} contains it. This solution is not the best... What can I do? TIA, C.
  3. Hi to everybody, this is my first post here. I've a problem sending email from php54 CLI. The .ini file used is php-cli.ini from core\php54 folder. But the ${US_ROOTF} variable in the .ini contain the user home directory in windows (ex. "C:\Users\username\AppData\Roaming\"). How about this strange behaviour? TIA, Carlo
×
×
  • Create New...