How do I get a list of all IRegistrations/ComponentRegistrations in my WindsorContainer or its kernel? I can see a way of doing this by wiring to the ComponentRegistered event and tracking there, but is there an eaiser way?
Thanks.
...
Django 1.2 allows usernames to take the form of an email address.
Changed in Django 1.2: Usernames may
now contain @, +, . and - characters
I know that's a much-requested feature, but what if you don't want the new behavior? It makes for messy usernames in profile URLs and seems to break django-registration (if a user registers a...
I'm looking into integrating with some external APIs that will improve website sign-in experience. RPX seems to be highly functional. The one issue that I have with it is that you can't link accounts unless you purchase the premium. With that said...
Are there currently any viable alternatives to RPX? Strengths/weaknesses?
...
How can I use my Windsor container to check if an instance (not just a component) has been registered?
ie. container.ContainsInstance(typeof(MyType))
[EDIT]
Another way of writing this might be
Kernel.GetAssignableHandlers(typeof(object))
.Where(handler => handler.Service == typeof(MyType) || handler.ComponentModel.Implementa...
Why there is difference in registering COM component for 32-bit and 64-bit?
I mean at one point you have to use like this,
RegSvr32 COM.exe
or
RegSvr32 COM.dll
On 64-bit OS you have to use like,
COM.exe /RegServer
COM.exe /RegSvr
Does /RegServer and /RegSvr are same or different. If different then what is the difference.
Thanks in ...
Hello.
I am working on an MVC 2 application where I need users to add custom fields when they register, for example age, phone number, full name, etc.
Investigating I found this blog entry where they use ASP.NET Profiles and customize the CreateUserWizard control. My problem has been that I cannot get this to work since in MVC I have ...
I'm using django-regitration in my application
Now I want to create different kind of users, with different profile.
for example a user is a techer and another user is a student.
How can I modify registration to set the user_type and create the right profile?
...
I already have a simple registration system in place using php and mysql. It operates well enough. However, when people visit my site and register, I would like for them to register as part of a particular group. So, I was thinking that registration would happen like this:
Visitor lands on index.php, clicks on "Group Registration" li...
i have written validation class. now, is it ok to extend a form class from the validation class? or even extending the validation class from the request class?
i'm just not sure how to implement the registration process for a new user in a mvc. totally confuse.
Edit: i have found this zend tut here:
// application/controllers/Guestboo...
I just started studying Drupal 7 and learned how powerful CCK and Views are. But it still confuses me a bit because it behaves so differently compared to Wordpress. Now I want to build registration form, is it appropriate to build it using CCK? If so, how do I make it so it would make the login system aware that a new user has registered...
I am building an asp.net mvc web application.
Do I need to use captcha while user registration.
Because we make the user verify the email, by the standard way, like sending a link in the email and when the user clicks on the link, the email is verified.
Do you think bots can actually open an email and verify? And moreover the bots will...
Hi All
I am using WinHost.com (.NET Framework Support) for my hosting and need to be able to allow my users to login to their desktop application using their credentials that will be stored on the server.
The users will register through the desktop application itself and the details will be sent to the server, and then I need a way to ...
I have an application that will accept both Facebook and Yahoo registrations as well as normal registration (providing username, email, password).
I'm confused on the Facebook and Yahoo side of the registration. The scenario is, upon clicking the Facebook/Yahoo registration links, users will be redirected to the provider's site for logi...
I've seen this problem come up a lot, but never adequately handled, and I haven't seen it on Stack Overflow, so here goes. I wish there were a way to put this shortly and succinctly without lacking clarity, but I can't seem to shorten it, so bear with me...
A good case-study (my current case, of course) to illustrate the problem follow...
AT the moment, the site I look over sends an activation email to new members which have a link they must click to activate their account. While this seems like a good idea, it has many faults such as occasionally the email lands in their spam/junk folder and its yet another step the user has to do.
I was try to make it easier for users ...
Summary:
u = self.instance.user
in
def save(self, *args, **kwargs):
u = self.instance.user
u.first_name = self.cleaned_data['first_name']
u.last_name = self.cleaned_data['last_name']
u.save()
return super(ProfileForm, self).save(*args, **kwargs)
is causing a problem because self.instance doesn't exist. But yet this is how...
I can add an extra field to the registration. What I need to know is what step do I need to take to then grab that input and insert it into the user table of drupal. The code below is in my module this adds just a field to the form, but when its submitted it doesnt do anything with the data.
function perscriptions_user($op, &$edit, &$ac...
I have a class library that I have written in C#.net. I want to register it with COM on my 64 bit windows machine so that I can create instances of it using CreateObject() in scripts (javascript, vbscript, whatever). So I created a setup project. I set the Target Platform of the setup project to x64. The class library project's Target pl...
Hello
I am writing a wordpress module that will need to re-direct the registration process to a checkout. I have the checkout working, and I have added the extra options I need to the normal Wordpress registration screen.
I need some pointers on how to intercept the registration process before anything is committed to the database. Af...
hey all,
so i've scrapped all the crappy tutorials that have never worked for one reason or another, and decided to roll out my own registration/login feature on my own, and to my surprise it actually works!
But what i don't get is how the logic behind keeping somebody logged in works! Like, once they've logged in, do i just $_POST the...