Is there a limit on the export?
I have a table with 10500 records, when i try to export them all i get a blank page and nothing happens.
when i do a search and select 1000+ i get the excel
is this because of some parameter limit? anything i can do?
this is my controller:
function funbas()
{
$data['maintab']=6;
try{
$crud = new grocery_CRUD();
$crud->set_table('funbas');
$crud->set_relation('GENUS', 'funbasGenus','genus');
$crud->set_relation('categorie', 'funbasCategorie','categorie');
$crud->set_relation('Eco1', 'funbasCdeEco','Functionele_groep');
$crud->set_relation('Eco2', 'funbasCdeEco','Functionele_groep');
$crud->set_relation('RLNL', 'funbasCdeRLNL', 'catNL');
$crud->set_relation('RLVL', 'funbasCdeRLVL', 'catVL');
$crud->set_relation('bibref', 'funbasBib', 'bib_titel');
$crud->set_relation('funbas', 'funbasStatus', 'verklaring');
$crud->set_subject('funbas');
$crud->columns('GENUS', 'SOORTNAAM', 'SPECIES', 'NEDNAAM', 'NEDSYN');
$output = $crud->render();
$this->view_output($output, $data);
}catch(Exception $e){
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}
