Problems with "export to csv"

FRW

Well-known member
I try to export some records to csv and have set the parameters in custom_config.php
If I try an export with round about 2500 records, all will be fine, but if I try to export all the recors (~9000) I will get an empty page.
Is there a way to get this working?
 

eugenio

Administrator
Staff member
Do you mean the web page is blank or the CSV file is blank?

If it's the web page, I guess there is an error that was "hidden". You should check the Apache error log or ask your hosting provider to get the details about the error.
It might be a max time execution error, in that case you can try to uncomment and increase this parameter in config.php:
$csv_creation_time_limt

Best,
 

FRW

Well-known member
Thank you, I set this parameters in config_custom.php and it solved the problem.:

$use_sort_for_csv = 0;
$csv_creation_time_limt = 180;
 
Top