Прежде всего проверьте ваш файл config.php в папке config и убедитесь, что строка 26 имеет значение $ config ['base_url'] = 'http://www.yourwebsite.com';
И я предлагаю использовать base_url следующим образом:
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro|Open+Sans+Condensed:300|Raleway' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#comment_content').keypress(function (eventt) {
if (e.which == 13) {
$('#submit').submit();
return false; //<---- Add this line
}
});
$('#comment_form').on('submit', function(event){
event.preventDefault();
var form_data = $(this).serialize();
$.ajax({
url:"<?php echo base_url('index.php/home/add_comment'); ?>",
method:"POST",
data:form_data,
dataType:"JSON",
success:function(data)
{
if(data.error != '')
{
$('#comment_form')[0].reset();
$('#comment_message').html(data.error);
$('#comment_id').val('0');
load_comment();
}
$('#msg_body').animate({scrollTop: 6000000}, 600);
}
})
});
$(document).ready(function() {
setInterval('load_comment', 5000);
});
load_comment();
var RefreshTimerInterval = 1000;
function load_comment()
{
$.ajax({
url:"<?php echo base_url('index.php/home/fetch_comment'); ?>",
method:"POST",
data: {
'idprod': $('#idprod').val()
},
success:function(data)
{
$('#display_comment').html(data);
setTimeout(load_comment, RefreshTimerInterval);
}
})
}
$(document).ready(function() {
setInterval('load_comment', 500);
});
$(document).on('click', '.reply', function(){
var comment_id = $(this).attr("id");
$('#comment_id').val(comment_id);
$('#comment_name').focus();
});
});
</script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
var RefreshTimerInterval = 1000; // every 5 seconds
$(document).ready(getData);
function getData() {
$.get("<?php echo base_url('index.php/home/fetch_comment'); ?>", function(data) {
$('#display_comment').html(data);
setTimeout(getData, RefreshTimerInterval);
}
}
</script>
Если это не поможет, оставьте здесь сообщение об ошибке?