export to CSV stopped working
(14 posts) (9 voices)-
Hi, I have been using your survey plugin and it was working great. For some reason the export to CSV has stopped working. In Firefox, I get the error message:
Firefox can't find the file at http://freewhistlerparking.com/wp-conte ... p?survey=2
Any ideas?
Thanks, Tim.Posted 2 years ago # -
Try uploading the files once again. Maybe one of the files got deleted somehow.Posted 2 years ago #
-
Well, how do I do this without erasing the data I have there? I have a survey with over 700 names, which is great, but I don't want to lose the names.
thanks,
Tim.Posted 2 years ago # -
Uploading the files once again will not affect the data in the database. You can do it safely. But, if you are feeling paranoid, you can backup the database using phpMyAdmin or something.Posted 2 years ago #
-
Hi,
I upgraded to your latest version of the surveys plugin, now I can export the data, but it exports to a new web-page in text format (export.php), it does not open in my spreadsheet like your previous version did. Formatting the data to Excel is going to be laborious, can you take a look at the export function and fix it please?Posted 2 years ago # -
I'll look into it. For the time-being, once you see the export, do a page save and name it as Survey.csv . That should work.Posted 2 years ago #
-
how do i export the survey
please? you mention it but i cant find it anywhere?! Help!Posted 2 years ago # -
I don't see a method for exporting survey data either... Was this a feature that got removed?
Posted 1 year ago # -
Same issue here. I export and save as .txt .csv .xls whatever, it doesn't open in Excel no matter what magic I try. Any thoughts? Other than that, I think this survey plugin will do the trick for me. Just need to get it to export.
Posted 1 year ago # -
Hi, sorry to jump in on this thread but can someone please tell me how to export? When i first started working the survey there was a live link: export to csv. But not it has disappeared? :(
Posted 1 year ago # -
I found it. When you view the responses for a survey, you need to click on "Show Individual Responses", and then at the bottom you'll see the "Export to CSV" link.
Posted 1 year ago # -
"Export to CSV" link doesnt work for me - i go to 'see all answers' then 'export to csv' and it just gives me text on a web page - please see attached screenshot for what I mean... can anyone help me get around this and export to excel?
Posted 1 year ago # -
I modify the file export.php, because if you do export the page print the result, but not do download the file .csv .
My modify:
(at line 0)
before<?php
include('../../../wp-blog-header.php');
auth_redirect();
include('wpframe.php');after
<?php
### Load WP-Config File If This File Is Called Directly
if (!function_exists('add_action')) {
$wp_root = '../../..';
if (file_exists($wp_root.'/wp-load.php')) {
require_once($wp_root.'/wp-load.php');
} else {
require_once($wp_root.'/wp-config.php');
}
}
include('wpframe.php');(at line 21)
before// header("Content-type:text/octect-stream");
// header("Content-Disposition:attachment;filename=$survey_name.csv");
header("Content-type:text/plain");after
header("Content-type:text/octect-stream");
header("Content-Disposition:attachment;filename=$survey_name.csv");
//header("Content-type:text/plain");Posted 1 year ago # -
When you export to CSV and are brought to the next page with all the data jumbled around, right click and select "Save page as" and make sure you add .csv at the end, and that you choose CSV file type. Works like a charm!
Posted 1 year ago #
Reply
You must log in to post.