[Help] Registering For Sub-Site With Just One Registration
My title didn't really explain much of what I wanted but I know there is a way to do this I just don't know how. When someone signs up for let say you main website it automatically registers them for all other games you have within the site. Examples are ijji, nexon, etc . . is there a way for me to do this without it being on the same host?
Re: [Help] Registering For Sub-Site With Just One Registration
Re: [Help] Registering For Sub-Site With Just One Registration
Quote:
Originally Posted by
viroware
Remote mysql.
Okay so that to do it without it being on the same host but how can I make everything register to just one account? Instead of having a user register here and there.
Re: [Help] Registering For Sub-Site With Just One Registration
I'm sure there is a way to do it not on the same host, but wouldn't you want it all on the same host? I know what you're talking about, and to have 2 separate hosts with the Data it requires the transmition of data to server would be really slow.
Re: [Help] Registering For Sub-Site With Just One Registration
Quote:
Originally Posted by
Subject N4XYZ
I'm sure there is a way to do it not on the same host, but wouldn't you want it all on the same host? I know what you're talking about, and to have 2 separate hosts with the Data it requires the transmition of data to server would be really slow.
I know I am currently experimenting on a little project but even if it on the same host how would I be able to hook up the accounts? This is what I've been trying to figure out for quite some time.
Re: [Help] Registering For Sub-Site With Just One Registration
Modify the subsystems to utilize the same database and table for users.
Re: [Help] Registering For Sub-Site With Just One Registration
Quote:
Originally Posted by
spikensbror
Modify the subsystems to utilize the same database and table for users.
Now such a smart question which is why I'm posting this up. How? Are there any guide you can direct me to? I can learn from basic and I can apply it to my current databases.
Re: [Help] Registering For Sub-Site With Just One Registration
Same thing I've been wondering.... but to no avail :(
Re: [Help] Registering For Sub-Site With Just One Registration
I coded an account panel using this exact method for a client not too long ago. You're wanting someone to register an account on your site, then use the same credentials for all other sites/games.
If you're willing to pay, I can make this for you in 3 hours tops. Pm me and let me know.
Posted via Mobile Device
Re: [Help] Registering For Sub-Site With Just One Registration
Quote:
Originally Posted by
Ron
I coded an account panel using this exact method for a client not too long ago. You're wanting someone to register an account on your site, then use the same credentials for all other sites/games.
If you're willing to pay, I can make this for you in 3 hours tops. Pm me and let me know.
Posted via Mobile Device
I want to find a way I'll be able to learn this without paying if possible. I can't afford much at all that why I posted up this topic.
Re: [Help] Registering For Sub-Site With Just One Registration
You can't post here and expect everything to be handed to you on a silver platter. If you have an idea, or a started project (from your previous posts you don't seem to..) then you can post here and require additional help, or suggestions regarding the matter.
Seeing as you have no experience, and don't know where to exactly start you should look into Remote SQL Connecting. Furthermore, if you don't know what that is, look into PHP and MySQL tutorials as those are the two 'languages' you'll need to know to help you with your issue.
Re: [Help] Registering For Sub-Site With Just One Registration
I didn't really expect much that why I posed a question and asked. The only way for me to start is by asking. But since you answered my question on where to look in to thank you.
Re: [Help] Registering For Sub-Site With Just One Registration
This has already been answered, but just to clarify:
Option A:
-----------------------
One form.
Many MySQL databases & queries (for registration).
Option B:
----------------------
One Form.
One MySQL Database and query (for registration).
Sync all games to one MySQL database.
Option A is less efficient but easier.
Option B requires an understanding of each database and application, in such a way you can modify them each to suit your needs. If done correctly can be very efficient.
Re: [Help] Registering For Sub-Site With Just One Registration
Quote:
Originally Posted by
s-p-n
This has already been answered, but just to clarify:
Option A:
-----------------------
One form.
Many MySQL databases & queries (for registration).
Option B:
----------------------
One Form.
One MySQL Database and query (for registration).
Sync all games to one MySQL database.
Option A is less efficient but easier.
Option B requires an understanding of each database and application, in such a way you can modify them each to suit your needs. If done correctly can be very efficient.
Like this: http://forum.ragezone.com/f457/regis...source-781879/