Hi Everyone, Since yesterday I'm trying and searching how to install the extension libssh2 in GAE
But without success yet, I would like to know if anyone there knows / has a tutorial on how to install libssh in GAE
I want to install libssh2 on GAE PHP FLEX to execute this php code on my page:
<?php
$connection = ssh2_connect('
shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$stream = ssh2_exec($connection, '/usr/local/bin/php -i');
?>
And how i can run multiple runtimes (PHP
+ PYTHON3) in the same app ?,
I'alredy tried to create a Custom Runtime and set
the two (PHP and PYTHON3) in my app.yaml but give the error at the time
of deploy saying that the command "runtime: " was declared twice.Thanks for anybody to answer.