I have Wamp Server 2.5 with Apache 2.4.9 on Windows 64x. I created a PHP using Slim REST Api project under c:\wamp\www\tridrops folder. I have my index.php, that I am trying to execute at c:\wamp\www\tridrops\tridrops\ver\index.php .
My PHP code :
<?php
use Slim\Slim;
require_once '../include/DbHandler.php';
require_once '../libs/Slim-2.x/Slim/Slim.php';
\Slim\Slim::registerAutoloader();
$app = new Slim();
$app->run();
/***
* Creating NEW CATEGORY in db
* method POST
* params - category_name, category_description
* url - /categories/
*/
$app->post('/categories', function() use ($app) {
// Check for required params
verifyRequiredParams(array('name', 'desc'));
$response = array();
// Reading post parameters
$category_name = $app->request()->post('name');
$category_description = $app->request()->post('desc');
$db = new DbHandler();
// Creating new Category
$categoryId = $db->createCategory($category_name, $category_description);
if ($categoryId != NULL) {
$response["error"] = false;
$response["message"] = "Category Created Successfully with Category ";
$response["categoryId"] = $categoryId;
} else {
$response["error"] = true;
$response["message"] = "Failed to create Category. Please try again.";
}
echoRespnse(201, $response);
});
/**
* Getting List of Categories
* method GET
* url /categories
*/
$app->get('/categories', function() {
$response = array();
$db = new DbHandler();
// fetching all categories
$result = $db->getAllCategories();
$response["error"] = false;
$response["categories"] = array();
// looping through results
while ($categories = $result->fetch_assoc()) {
$tmp = array();
$tmp["categoryId"] = $categories["categoryId"];
$tmp["category_name"] = $categories["category_name"];
$tmp["categoy_isparent"] = $categories["categoy_isparent"];
$tmp["category_description"] = $categories["category_description"];
array_push($response["categories"], $tmp);
}
echoRespnse(200, $response);
});
?>
DbHandler.PHP file
<?php
// DbHandler.php
/**
* Class to handle DB operations
* CRUD methods for database
*/
class DbHandler {
private $conn;
function __construct() {
require_once dirname(__FILE__) . './DbConnect.php';
// Opening db connection
$db = new DbConnect();
$this->conn = $db->connect();
}
/*------------------ category table methods ------------ */
/**
* Creating new Category
* @param String $category_name
* @param String $category_description
* @param boolean $category_isparent
*/
public function createCategory($category_name, $category_description) {
$response = array();
// First ccheck if category already exists
if (! $this->isCategoryExists($category_name)) {
// insert stmt
$stmt = $this->conn->prepare("INSERT INTO category(category_name, category_description) values(?, ?)");
$stmt->bind_param("ssss", $category_name, $category_description);
$result = $stmt->execute();
$stmt->close();
// Check for successful insertion
if ($result) {
// Category Created Successfully
return SUCCESSFUL;
} else {
// fAILED TO INSERT
return FAILED;
}
} else {
// Same Category Exists
return EXISTS;
}
return $response;
}
/**
* Fetch all Categories
*/
public function getAllCategories() {
$stmt = $this->conn->prepare("SELECT * FROM category");
$stmt->execute();
$cats = $stmt->get_result();
$stmt.close();
return $cats;
}
.htaccess
# tridrops/ver/.htaccess
RewriteEngine On
# Always set these headers.
#Header always set Access-Control-Allow-Origin "*"
#Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
#Header add Access-Control-Allow-Methods "PUT, GET, POST, DELETE, OPTIONS"
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
I tried to execute POST
& GET
of categories
in Google Advanced REST Client, but I keep on getting 404.
RESPONSE:
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /tridrops/tridrops/ver/categories/ was not found on this server.</p>
<hr>
<address>Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 81</address>
</body>
Any idea why am I getting this error only.
Wamp is running on port 81. I can execute phpadmin perfectly well. Why this is causing problem, can't figure out since days.
Can you please help me fix this error.
Any help is highly appreciative.
Thanks a lot.
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ index.php [QSA,L]
– Steve Parish Mar 20 '16 at 10:52