【发布时间】:2016-03-19 22:13:31
【问题描述】:
我在 Windows 64x 上安装了带有 Apache 2.4.9 的 Wamp Server 2.5。我在 c:\wamp\www\tridrops 文件夹下使用 Slim REST Api 项目创建了一个 PHP。我有我的 index.php,我试图在 c:\wamp\www\tridrops\tridrops\ver\index.php 执行。
我的 PHP 代码:
<?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 文件
<?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]
我尝试在 Google 高级 REST 客户端中执行 categories 中的 POST 和 GET,但我一直收到 404。
回应:
<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>
知道为什么我只会收到此错误。
Wamp 在 81 端口上运行。我可以很好地执行 phpadmin。为什么这会导致问题,几天以来无法弄清楚。
你能帮我解决这个错误吗?
任何帮助都非常感谢。
非常感谢。
【问题讨论】:
标签: php mysql .htaccess rest wampserver