I have added both PARSE and PHP libraries to the root folder using "composer", Parse server queries are working fine but, when adding BBB PHP api codes as mentioned in the "
https://github.com/bigbluebutton/bigbluebutton-api-php" github page, I'm getting ERROR 500. Could anyone guide me to use this API effectively?
Added the below code to (/etc/nginx/sites-available/bigbluebutton)
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
composer.json
{
"require": {
"bigbluebutton/bigbluebutton-api-php": "dev-master",
"parse/php-sdk" : "1.2.*"
}
}
Root Directory
username@sk-97072:/usr/share/nginx/html$ ls
50x.html composer.json composer.lock dashboard.php index.html meeting.php myaccount.php vendor
BigBlueButton php API directory
username@sk-97072:/usr/share/nginx/html/vendor/bigbluebutton/bigbluebutton-api-php$ ls
codeception.yml composer.json LICENSE phpunit.xml.dist README.md src tests