From c3abedd6f28c5deecc8197adb3e02d04e415a6be Mon Sep 17 00:00:00 2001 From: Prashant Ghimire Date: Mon, 10 Feb 2020 23:17:29 -0600 Subject: [PATCH 1/2] Update createtables.php added correct path of autoload.php file. --- createtables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createtables.php b/createtables.php index 04f9c0d..1a8d6a1 100644 --- a/createtables.php +++ b/createtables.php @@ -9,7 +9,7 @@ ini_set('display_startup_errors',1); error_reporting(-1); - require '/var/www/html/vendor/autoload.php'; + require '/var/www/html/dynamodb/vendor/autoload.php'; use Aws\DynamoDb\DynamoDbClient; $client = DynamoDbClient::factory(array( From aac10336ce4d203b97a845501e1a52b646d3752f Mon Sep 17 00:00:00 2001 From: Prashant Ghimire Date: Mon, 10 Feb 2020 23:20:12 -0600 Subject: [PATCH 2/2] Update uploaddata.php fixed vendor path --- uploaddata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uploaddata.php b/uploaddata.php index 4f4327d..f8a7d9a 100644 --- a/uploaddata.php +++ b/uploaddata.php @@ -8,7 +8,7 @@ ini_set('display_startup_errors',1); error_reporting(-1); - require '/var/www/html/vendor/autoload.php'; + require '/var/www/html/dynamodb/vendor/autoload.php'; use Aws\DynamoDb\DynamoDbClient; $client = DynamoDbClient::factory(array(