Agnes Riley
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] HTTP? HTTPSI think I have the same problem. https://witfm.org/shin-memorial-scholarship redirects perfectly well, but not https://witfm.org/shin-memorial-scholarship.
Can you help @matthiaswagner ?
Thank you.
I got a response via email (which I couldn’t respond to) in which I was told to purchase the pro license to be able to see an image of the video. That should not be a premium feature when for years we were able to see an image of every video posted.
Forum: Plugins
In reply to: [Contact Form 7 reCAPTCHA Extension] CF7 shortcode not displayingDoesn’t work for me. I have WordPress 4.2.2. Any ideas?
Same here: empty form. Why have something available if it doesn’t work AT ALL?
Forum: Plugins
In reply to: [Contact Form 7] Spinning wheel on WindowsThank you. I’ll do some troubleshooting.
But is it possible that it only occurs on Windows?
Forum: Plugins
In reply to: [Contact Form DB] IntegrationI even managed to reformat the data to ‘%m/%d/%Y’ so I can read that and add an expiration date for the memberships.
Thanks for making me learn. ??
Forum: Plugins
In reply to: [Contact Form DB] IntegrationOMG, that’s embarrassing.
I actually added an ID field that gets a random ID in FM, so that problem is solved.
I cannot connect the table because I don’t get all the data in one record. FileMaker works like Excel: one row is one record. Field names are “column” headers.
Okay, so now I have this:
SELECT
DATE_FORMAT(FROM_UNIXTIME(submit_time), ‘%b %e, %Y %l:%i %p’) AS Submitted,
MAX(IF(field_name=’first_name’, field_value, NULL )) AS ‘first_name’,
MAX(IF(field_name=’last_name’, field_value, NULL )) AS ‘last_name’,
MAX(IF(field_name=’email’, field_value, NULL )) AS ’email’,
MAX(IF(field_name=’cell’, field_value, NULL )) AS ‘cell’,
MAX(IF(field_name=’website’, field_value, NULL )) AS ‘website’,
MAX(IF(field_name=’service_provided’, field_value, NULL )) AS ‘service_provided’,
MAX(IF(field_name=’address1′, field_value, NULL )) AS ‘address1’,
MAX(IF(field_name=’adress2′, field_value, NULL )) AS ‘address2’,
MAX(IF(field_name=’city’, field_value, NULL )) AS ‘city’,
MAX(IF(field_name=’state’, field_value, NULL )) AS ‘state’,
MAX(IF(field_name=’zip’, field_value, NULL )) AS ‘zip’
FROM wp_cf7dbplugin_submits
WHERE
form_name = ‘Individual Membership Form’
OR
form_name = ‘Student Membership Form’
GROUP BY submit_time
ORDER BY submit_time DESCAND IT WORKS!!!
Thank you. ??
I have 4 forms that I need to get the data into one table/view into.
Forum: Plugins
In reply to: [Contact Form DB] IntegrationOkay, a step in the right direction. Got a view and can see the view in FM.
Two issues:
1:
SELECT
DATE_FORMAT(FROM_UNIXTIME(submit_time), ‘%b %e, %Y %l:%i %p’) AS Submitted,
MAX(IF(field_name=’first_name’, field_value, NULL )) AS ‘first_name’,
MAX(IF(field_name=’last_name’, field_value, NULL )) AS ‘last_name’,
MAX(IF(field_name=’email’, field_value, NULL )) AS ’email’,
MAX(IF(field_name=’cell’, field_value, NULL )) AS ‘cell’
MAX(IF(field_name=’website’, field_value, NULL )) AS ‘website’
MAX(IF(field_name=’service_provided’, field_value, NULL )) AS ‘service_provided’
MAX(IF(field_name=’address1′, field_value, NULL )) AS ‘address1’
MAX(IF(field_name=’adress2′, field_value, NULL )) AS ‘address2’
MAX(IF(field_name=’city’, field_value, NULL )) AS ‘city’
MAX(IF(field_name=’state’, field_value, NULL )) AS ‘state’
MAX(IF(field_name=’zip’, field_value, NULL )) AS ‘zip’
FROM wp_cf7dbplugin_submits
WHERE
form_name = ‘Individual Membership Form’
GROUP BY submit_time
ORDER BY submit_time DESCThis is my query but it errs out on line 7: website and even if I remove that, errs out subsequently on the next ones. What am I doing wrong? I’m not a SQL developer. ??
2. FileMaker cannot connect to a view or table where there is no primary key. I used the submit_time for now, but I would prefer a primary key. Any ideas here?
Thanks,
AgiForum: Plugins
In reply to: [Combrite] Search ToolsIt is over 20,000 for me. Impossible to find my event, even though I changed the title to contain “YesTheBronx”.
If I can’t find my event, this plugin is useless.
See image: https://cloud.zerobluetech.com/image/46330R043q38
Forum: Plugins
In reply to: [Contact Form DB] Display one record at a time with previous next arrowsThe problem is that each field submission is stored as a new record in the DB. Plus the records have no ID.
This is how it should look: https://cloud.zerobluetech.com/image/2e3I3B3H1409
And this is how this looks: https://cloud.zerobluetech.com/image/2e3I3B3H1409
This is completely wrong and therefore useless data. I cannot get this into another database like this. We need a fix for this ASAP.