Friday, May 17, 2024
 Popular · Latest · Hot · Upcoming
69
rated 0 times [  75] [ 6]  / answers: 1 / hits: 17879  / 13 Years ago, thu, september 8, 2011, 12:00:00

I’ve got a issue here, i keep getting a error when i try to post something with ajax (POST). I know it is the CSRF that gives me these problems and I’ve been tried back and forth trying to find a solution. However, i hope somebody here can help me out!



This is the error i keep getting (from google chrome inspector),



*Failed to load resource: the server responded with a status of 500 (Internal Server Error)
XHR finished loading: http://localhost/woho/ajax/images.
*



PHP (Controller)



class Ajax extends CI_Controller {

function images() {

echo 'Hello World';

}

}


Javascript



var ID = $(.imageWrap:last).attr(id);
var baseurl = http://localhost/woho/;
var doScroll = 1;
var cct = $.cookie('csrf_cookie_name');

if (location.href == baseurl) {
$(window).scroll(function(){
if ($(window).scrollTop() > $('body').height() / 2) {
if(doScroll == 1) {
$.post(baseurl + 'ajax/images',{'id' : ID, 'csrf_token_name': cct}, function(data) {
alert(data);
$(#wrapper_content).append(data);
ID++;
});
}
}
});
}


my CCT var from javascript gives me the correct token or hash but when the javascript sends the ajax request codeigniter returns an error like,




An Error Was Encountered The action you have requested is
not allowed.




How can i fix this? do i need to validate the CSRF Token or something in my controller?



I'm using Codeigniter 2.0.3


More From » php

 Answers
37

Try (javascript):



var ID = $(.imageWrap:last).attr(id);
var baseurl = http://localhost/woho/;
var doScroll = 1;
var cct = $.cookie(<?php echo $this->config->item(csrf_cookie_name); ?>);

if (location.href == baseurl) {
$(window).scroll(function(){
if ($(window).scrollTop() > $('body').height() / 2) {
if(doScroll == 1) {
$.post(baseurl + 'ajax/images',{'id':ID,'<?php echo $this->security->get_csrf_token_name(); ?>': cct}, function(data) {
alert(data);
$(#wrapper_content).append(data);
ID++;
});
}
}
});
}

[#90200] Wednesday, September 7, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
devinjadong

Total Points: 711
Total Questions: 117
Total Answers: 100

Location: Andorra
Member since Sat, May 27, 2023
1 Year ago
devinjadong questions
Thu, Feb 17, 22, 00:00, 2 Years ago
Wed, Dec 8, 21, 00:00, 2 Years ago
Tue, Oct 27, 20, 00:00, 4 Years ago
Fri, Oct 18, 19, 00:00, 5 Years ago
;