Broken Links?!

Broken Links?!

DoiDoi Posts: 3Questions: 0Answers: 0
edited September 2012 in General
Hello, how do I get the following data from my links deleted?

[quote] /index.php?gotoPage=1&SpryMedia_DataTables_DataTables_Table_1_={"iCreate":1347360073212,"iStart":0,"iEnd":0,"iLength":10,"aaSorting":[[0,"asc",0]],"oSearch":{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},"aoSearchCols":[{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true}],"abVisCols":[true,true,true,true,true]}&SpryMedia_DataTables_DataTables_Table_0_index_php={"iCreate":1347360648110,"iStart":0,"iEnd":0,"iLength":10,"aaSorting":[[0,"asc",0]],"oSearch":{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},"aoSearchCols":[{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true}],"abVisCols":[true,true,true,true]}&SpryMedia_DataTables_DataTables_Table_1_index_php={"iCreate":1347360648133,"iStart":0,"iEnd":3,"iLength":10,"aaSorting":[[0,"asc",0]],"oSearch":{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},"aoSearchCols":[{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true},{"bCaseInsensitive":true,"sSearch":"","bRegex":false,"bSmart":true}],"abVisCols":[true,true,true,true]}&parameter1=one&parameter2=two [/quote]

Here is my init-call:

[code]var tableData = $('table.display').dataTable({
"bStateSave" : true,
"bPaginate" : false,
"bFilter" : false,
"bInfo" : false,
"bProcessing" : false,
"bServerSide" : false,
"oLanguage": {
"sLengthMenu" : "_MENU_ Jobs",
"sZeroRecords" : "-",
"sInfo" : "_START_ - _END_ / _TOTAL_ Daten"
}
});[/code]

Replies

  • allanallan Posts: 63,535Questions: 1Answers: 10,475 Site admin
    Something in your PHP configuration is causing Cookies to be added to the GET string. Do you have `session.use_cookies` set to 0 or something? Either way, it might be an idea to ask in a PHP forum, as we are mainly Javascript here, so will only be able to offer limited help with PHP.

    Allan
  • DoiDoi Posts: 3Questions: 0Answers: 0
    But the code is set by the data tables in my link.
    As soon as I comment out the datatable work my links.
    Is there a parameter to disable cookies?

    Thank you
  • DoiDoi Posts: 3Questions: 0Answers: 0
    edited September 2012
    I've found the problem. Once the parameter is set to true bStateSave the data being passed by REQUEST OR SESSION.
    Thank you
This discussion has been closed.