好吧即时尝试ajaxify我的网站,我在第一页上有一个主要问题我正在使用原始ajax并使用responseText,最重要的是有一个文件树被用来使用某些功能
首先是问题文件代码
<?php
echo 'apple'; // this runs
// is not returning or executing this
include('../core/init.php');
echo 'apple'; // this does not run
if(!empty($_POST)){
$validate = new validate();
if(token::check(input::get('token'))) {
$validation = $validate->check($_POST, array(
'title' => array(
'required' => true
),
'message' => array(
'required' => true
),
));
if ($validation->passed()) {
#create the post
$db_instance = DB::getInstance();
#check the value of private before submitting as there is an error there
$private = 0;
if(isset($_POST['private'])){
$private = 1;
}
if(@$db_instance->insert('feed',array(
'user_id' => $user->data()->id,
'title' => $_POST['title'],
'message' => $_POST['message'],
'private' => $private
))){
echo'updated the site activity';
}
}else{
foreach ($validation->errors() as $error) {
echo '<br>';
echo $error, '<br>';
}
echo '<br>';
}
}
}else{
echo '<p>error</p>';
}
?>
继续此文件位于包含树中 index-&gt; updateFeed-&gt; ajaxScript(已经运行) - &gt; thiscode
如果有人可以在没有jquery的情况下进行解释并使用类似的结构,则会出现问题,这很有意义。
<?php
// lets us redirect using headers even if headers have already been sent out
ob_start();
session_start();
error_reporting(1);
// config
$GLOBALS['config'] = array(
'mysql' => array(
'host' => 'XXXXXXXXXXXXX',
'username' => 'XXXXXXXXXXXXX',
'password' => 'XXXXXXXXXXXXX',
'db' => 'XXXXXXXXXXXXX'
),
'remember' => array(
'cookie_name' => 'wpd_remember_cookie',
'cookie_expiry' => 2628000
),
'session' => array(
'session_name' => 'user',
'token_name' => 'CSRF_token'
)
);
// auto-load classes
spl_autoload_register(function($class){
require_once ('classes/' . $class . '.php');
});
require_once ('functions/sanitize.php');
require('functions/Gravatar.php'); //used for the gravatar
require('functions/email_verify.php');
//check if the user is logged in by tokens and if not don't log the user in other wise log them in
if(cookie::exists(config::get('remember/cookie_name')) && !session::exists(config::get('session/session_name'))){
$hash = cookie::get(config::get('remember/cookie_name'));
$hashCheck = DB::getInstance()->get('users_session', array('hash', '=', $hash ));
if($hashCheck->count()){
$user = new user ($hashCheck->first()->user_id);
$user->login();
}
}
?>
答案 0 :(得分:0)
我忽略了一些东西并暂时修补了当初始文件包含1级更深或更深层次时,初始文件无法正常工作