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
How does Wordpress store it's options? By calling for each function when it's required or other way. Is it a good practice to use session to store site options? Thanks.
Here is the options API for WordPress, the best practice to storing options would be to use the add_option() function, not using sessions as they can be temporary.
WordPress stores it's options in a table called wp_options (or whatever prefix you used during installation).
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 8 years ago.
Improve this question
I want to make my website remember variables for each user and display them, something like local storage that I can use in c#. What is the best way to achieve this concept?
ASP.NET Session State is what you are looking for.
http://msdn.microsoft.com/en-us/library/ms972429.aspx
Or if you want permanent storage (ie they leave and come back another day)
Connecting to a SQL Server database.
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 8 years ago.
Improve this question
I want to use the password recovery control of asp.net, but with my own database, I dont want to use the membership table that is already provided. Is there a way to do this? I have searched on google but did not get a single one that is relevant to what I want to do. Please Help. Thanks
The general approach to this would be to implement your own MembershipProvider, this would allow you to override the default behaviour. However, you would need to implement all the behaviour, not just the stuff you want to change (see this example).
You can implement the GetPassword / ResetPassword methods and have them work from your own database rather than the membership 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 8 years ago.
Improve this question
friends
I want to add three languages to my ASP.NET website to give users language options.How could I do this.If possible, could you explain it me in details?Thanks...
You can do it by using the Resources.
And for setting/detecting current language in the views you can use cookies or the routing (which is more preferable due to it's SEO and cache friendly behavior). Here is a tutorial.
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 want to create plugin for WordPress that save two text field's information in database.
is there any possible way to save data in database without creating new table.
WordPress has API for you to do this.
See what is prepared for you
Example to copy
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 7 years ago.
Improve this question
Does anybody know a way to make wordpress act like stack exchange?
reader accounts
thumbing up and down posts
ability to edit posts
ability to add or remove keywords
SE markdown
etc.
Yes you can make it. There might not be exact plugin to fulfill your requirement so you need to customize plugin or need to build custom plugin or theme to fulfill your requirement.
Furthermore, bbPress plugin nearly meets of your requirement (about 50 to 60 % ). You can customize it to enhance other features.