Posted: January 24, 2022 at 7:30 pm
I also have an issue since updated to 4.10.25p no csv file are generated when trying exporting the attendees of an event to CSV. Here is the output I get: Worked fine with the previous version. |
|
Hi there, Strange, I can’t reproduce this. Can you post the full steps you are taking to get the above error, please? |
|
Hi Tony, thanks for getting back to me. Steps:
I get these messages: In the admin page
extra log from the error file Here is what I tried so far: When did that start
I reverted back to PHP 7.3 and removed my changes in the functions file. But the error remains. Before taking this to prod, I made the changes on a test server and only tested client side and not admin side. |
|
Just a quick update, I reinstall a fresh copy of the test server and imported the prod site, and everything works, on the test server. I just need to wrap my head around what to do on prod. Reinstalling the webserver seems a bit tedious. |
|
Hi there, This error:
It means you are using the ‘old’ export method and EE has a ‘new’ (it’s been EE in 2012, so not really new) batch export system. Edit the server’s
Comment that out and check if the export then works? |
|
it works!! |
|
Great, I’m glad that worked for you. So to explain this a little more… The ‘old’ method basically pulls all registrations and builds the CSV on a single request, which means it needs to do all of the processing within 30 seconds (as that’s the default PHP So with that, we added the ‘new’ (again, not so new anymore :)) system which is a batch system. It works in a similar way to the other version for pulling the data in but now it writes the exports in batches to a temp file on the server before sending it to the browser. The default is 50 registrations per step so now you have 30 seconds to pull all of the data in for only 50 registration each time (each of those requests usually takes just a couple of seconds), write them to a temp file and go to the next step. Overall the batch system is slightly slower than the original because there’s a lot more going on with it, but it’s a more robust system and I recommend using it. We’ve changed how the request is processed in v4.10.25.p and it’s causing an issue with the old system, that will be fixed in the next version but I still recommend using the batch system over the original. |
|
The support post ‘Split: Issue with Version 4.10.25.p’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.