Deleted user

Results 142144 comments of Deleted user

You can change the Pi:s to Banana Pi:s. The have gigabit ethernet and SATA connector for the NAS part

A question insted of use SSH can telnet be used?

Any news regarding this isuse?

Any news about this?

Hello Kanti and Danpros, I use PHP 5.6 and the latest version of MySQL. It is a Managed Server in a German web host named All-inkl. Then I have understood...

Thanks for your help and now I have it already installed, and gather my experience. The other installer /htmly-installer.php unfortunately does not work that way. With this here in the...

Ok, I understood it that HTMLy only works with Composer and therefore I have also installed the Coomposer with my second HTMLy installation. But good to know that it is...

You are not handling a correct structure. Check the changes in the code below. ``` $attendees = array(); foreach($users as $user) { $attendees [] = array('mailbox' => array('emailAddress' => $user));...

change this `` $attendees[] = array('Attendee' => array('Mailbox' => array('EmailAddress' => $user))); `` for this `` $attendees [] = array('mailbox' => array('emailAddress' => $user)); ``

Hope this help. ``` /** creating a meeting with attendees */ /** connection */ $api = API::withUsernameAndPassword(server, username, password); $calendar = $api->getCalendar(); $start = \DateTime::createFromFormat("Y-m-d H:i:s", "2017-02-03 14:00:00"); $end =...