Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Question in Contact Form 7 wordpress, is there a way to get the emails inputted by the visitor from the database? are the emails save in the database? thank you guys.
Ramje,
Take a look at the following plugin:
http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/
By default, when CF7 sends an email, the message is not stored to your database.
It seems that we have a plugin for storing Contact Form 7 information into DB made by the same team behind CF7. It's called Flamingo https://wordpress.org/plugins/flamingo/
I made a step by step guide of the plugin and also showcased a few other alternatives to it https://deliciousthemes.com/save-contact-form-7-submissions-to-database/
One of the Flamingo downsides is that it can't store attachments too. However, there are solutions.
Thanks!
You can use this plugin https://wordpress.org/plugins/contact-form-advanced-database/
It also has export and and search option at the backend.
I'm using this plugin (it costs $16): http://codecanyon.net/item/contact-form-7-database/14684587
You can export your emails (or any things) to csv file, maybe it can help you.
Hello Check out this New Plugin...! Its create input field as Column Name in Fields....!
https://wordpress.org/plugins/save-contact-form-7/
It help me out alot to update and add some field after form submission
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I am trying to figure out how to store user specific data in Wordpress. The user is supposed to insert their weight, the date and then be able to make multiple entries so that each entry can be presented in a table for that specific user.
I was wondering if this is possible to do through a plugin like JetEngine? And would this be possible to do through meta data or would I have to use something like Custom Content Type?
Thank you in advance.
There's two solutions for your problem.
Easy solution
Use a plugin like ACF with repeater add-on and create custom field for each kpi (weight, height, etc.) and for each add two sub field date and value.
House made solution
Create a json structure to be saved in the user meta which then decodes in php to show it in a table.
About this solution.
// The information return via $_POST
$weight=json_encode($_POST['weight']);
update_user_meta(get_current_user_id(),'weight',$weight)
// To show this information
$weight=json_decode(get_user_meta(get_current_user_id(),'weight',true);
// Create the table.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm currently stuck on my websites with a csv product import. I want the csv to sit on the server where i can simply update the csv and all the data will be transferred over to my products instantly without having to consistently upload the csv.
Does anyone know any way how to make this happen automatically ?
Thanks for your help!
A simple way to this can be a function which will be executed on every page load. This function checks if there is a csv-file, and if so, starts the import. But there a weaknesses by doing it this way. The import process will stuck the page load. And if the functions checks whether there is a cs-file, it can be that this csv-file is not completely uploaded, because the ftp-transfer is still running in this moment. (see here)
A better way is to use a Webhook to invoke the import function. The Webhook ideally should triggered by the process which transfer the csv-file (after completion) to the server.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am building a website. In this website, when a user logged in successfully, how i start session for him and when he hit on log out button ,how i close the session.
Please help me. I am a beginner in Asp.net. So please help me with your answers in Details.
Thank You.
VB.NET
To Create
Session.Add("UserSession", MySession)
To Asign
Dim vUserSession As String = Session.Item("UserSession")
To Close
Session.Item("UserSession") = Nothing
C#
Check this link there is a good explain
http://forums.asp.net/t/1261964.aspx
Depending on how you're setting this up, there are .NET controls that provide this functionality mostly for free (you don't have to write a lot of code to get it to work). Look into the Login control.
You need to decide whether you're authenticating against a domain or a database. Most likely it's a database. Just mask sure you hash the password in the database, and hash the password in the app, and compare the hashes.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Can you please direct me to a tutorial or other resource for accomplishing the following:
Index page lists 50 states. Onlick of a state Y, the report page (report.aspx) will display info related to state Y, pulled from database.mdb, interspersed in HTML text.
I am not even sure what the terms and controls I need to be working with.
Thank you.
UncleJune
Do you know how to create the report? That is the first step. After that it is just a matter of passing the required parameter from one page to the next. Several methods can be used to do this: Response.Redirect/Request.QueryString, session variable, etc.
This tutorial might help you:
Using the ASP.NET 2.0 ReportViewer in Local Mode
Dynamic reports with Microsoft local report engine
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Let say that I have a website with some information that could be access externally. Those information need to be only change by the respected client. Example: Google Analytic or WordPress API key. How can I create a system that work like that (no matter the programming language)?
A number of smart people are working on a standard, and it's called OAuth. It already has a number of sample implementations, so it's pretty easy to get started.
Simple:
Generate a key for each user
Deny access for each request without this key
Currently, I use a concatenation of multiple MD5s with a salt. The MD5s are generated off of various concatenations of user data.
A good way of generating a key would be to store a GUID (Globally Unique Identifier) on each user record n the database. GUID is going to be unique and almost impossible to guess.
There are also infrastructure services that manage all this for you like http://www.3scale.net (disclosure I work there), http://www.mashery.com and http://www.apigee.com/.