Hi i am new to google cloud, Working since 5days. I make a collection on firebase has type google/cloud-firestore, and i am using it in my php project.
It working fine. but since 2 hour it showing error-
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\orDeal Cloud\composer\vendor\grpc\grpc\src\lib\ServerStreamingCall.php on line 48
I make a test.php file for testing database connection-
require_once __DIR__ . '/composer/vendor/autoload.php';
use Google\Cloud\Firestore\FirestoreClient;
$db = new FirestoreClient([
'projectId' => 'myProjectId'
]);
$snapshot = $db->collection("users")->documents();
print_r($snapshot);
But still it showing error.