Drupal 7 OpenID module [closed] - drupal

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to as how can we have the login similar to the stackoverflow openid using drupal 7? In stackoverflow, we have various login options like facebook, google, etc, the image is show to choose various accounts. But I tried for drupal 7, only the 'Log in using OpenID' is shown beneath the login options. How do I show the multiple account options besides 'Log in using OpenID'.

Use the Janrain/RPX Module.

Create some HTML that shows the OpenID providers that you want to mention explicitly.
Create some JavaScript that fills in the text input field when clicking on the OpenID provider in the HTML.
Wrap it into a Drupal module.

Related

Adding Google Analytics to website [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
just wondering if it is possible to instead of using google analytics on google can you add the graphs to your own custom CMS panel instead of using the google service? Just like the iframe widgets you have with piwik? and if you can, can someone direct to where as i can find out how to do this?
Google does offer an API for retrieving data, but the catch is that the person going to your web page has to be able to login to GA to see the data. There's no official way to write a script to authenticate and retrieve GA data to show to anonymous visitors.

Ajax technique used by popular sites such as facebook [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm interested in using a similar ajax technique that facebook uses. For instance, at your home page when you click on a group on the side it loads the content in the main section but does not have to re-render the top dash or side components. I've messed around with partial views and loading them at request but it's still not the same because it does not seem like an "action" and thus it doesn't change the url and the back button will only take you back from your previous action, not from the partial view.
I was wondering if anyone could point me to a tutorial or reference that goes over this technique for ASP.NET MVC 4.
Thanks in advance!
To build a web UI that is facebook similar you need a powerful JavaScript client GUI library , the server side technologies like MVC3/4 ASP.NET will not help here.
check the sencha extjs library here:http://www.sencha.com/products/extjs/examples/
for an overview of most popular JS GUI libraries check this: http://javascriptlibraries.com/

symfony2: pseudo locale (auto-)detection [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have googling this for weeks now and i can't find a nice answer and uique way to do this.
I have a symfony2 application that is using FOSUserBundle. The app is available in different languages.
What i would like is to have an unique way to handle the locale detection. Since it has been moved from the session to the request i don't see a clear way to achieve that.
step a) user is not logged, maybe 1st time we saw it. Take the locale from the request header Accept-Language:en-US,en;q=0.8,fr;q=0.6 (for instance). Serve the user a localized version of login page
step b) user is now loggued in. of course we still serve him is prefered language based on the same header
So far i have done this using ResponseListner but it seems it won't work for the 1st request and have troubles with the FOSuser login page.
Any help with samples would be very appreciated.
LuneticsLocaleBundle is great for that: https://github.com/lunetics/LocaleBundle
It allows you to create a custom Locale Guesser:
https://github.com/lunetics/LocaleBundle/blob/master/Resources/doc/guesser.md

ASP.net - Static site search [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
We have a static website in asp.net with about 50 pages and need to implement a site search. Any suggestions/links will be appreciated.
Thanks,
K
If you're looking for a quick way to get search functionality into your pre-existing, static, site, google site search would be a very simple route to go.
This link might help you.http://www.codeproject.com/KB/applications/SearchDotnet.aspx or you can can use sitesearch component for asp.net sites
http://www.sitesearchasp.net/
http://www.asp.net/community/control-gallery/browse.aspx?category=45
I add one more suggestion here.
The UltimateSearch from Karamasoft, that is a commercial product, but you avoid the advertise and have more control over.
http://www.karamasoft.com/UltimateSearch/Features.aspx

when we will use user control? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
when and where we will use user control ? actually i want to ask it's best practices.
i have read on msdn about user control there it was written .
At times, you might need functionality in a control that is not provided by the built-in ASP.NET Web server controls. In those cases, you can create your own controls. You have two options. You can create:
"User controls= User controls are containers into which you can put markup and Web server controls. You can then treat the user control as a unit and define properties and methods for it."
i confused from first statement ? what he want to say ?
When we want to reuse code.

Resources