Skip to main content

Posts

Showing posts from 2019

iis server cannot run shell exec

iis server cannot run shell exec

After hours and hours of trying and searching for an answer i coudn't get it working. Hosting details: Windows Server 2012 R2 Plesk 12 IIS 8.5 The problem My problem is: I want to execute this command in PHP. The command is necessary to reload the configs for filezilla, after creating a new user with an PHP script. C : \Program Files ( x86 ) \FileZilla Server \FileZilla Server . exe / reload - config It does work when i try it directly in CMD. But in PHP if doens't somehow work. I tried so many things, that im going to try to give you all the manners i tried. I tried to do this at the following ways: Trial 1 $command = '"C:\\Program Files (x86)\\FileZilla Server\\FileZilla Server.exe" /reload-config' ; exec ( $command , $output , $return ); print_r ( $output ); echo '<br/>' . $return ; Output: Array ( ) 0 Trial 2 $command = '"C:\\Program Files (x86)\\FileZilla Server\\FileZilla Server.exe...

menggunakan snappy wkhtml di silex

persipan download wkthtm yg versi mana saja, kali ini saya pake versi 7z download di https://downloads.wkhtmltopdf.org/0.12/0.12.5/wkhtmltox-0.12.5-1.mxe-cross-win32.7z dan dokumentasinya di  https://github.com/KnpLabs/KnpSnappyBundle Installation With  composer , require: composer require knplabs/knp-snappy-bundle jalankan perintah diatas tunggu sampe beres lalu  tinggal pakai dengan menggunakan  use Knp\Snappy\Pdf ; di baris awal dan $snappy -> generate ( $input , $output ) ; echo "berhasil genrate $output_name " ; di baris perintah , Generate an image from a URL $container -> get( ' knp_snappy.image ' ) -> generate( ' http://www.google.fr ' , ' /path/to/the/image.jpg ' ); Generate a pdf document from a URL $container -> get( ' knp_snappy.pdf ' ) -> generate( ' http://www.google.fr ' , ' /path/to/the/file.pdf ' ); Generate a pdf document from m...