|
red-members
|
 |
« on: October 07, 2008, 10:19:54 PM » |
|
hi there im after some advice on how can i create a register page , so people can register and sign in , eather in html for flash its just im relly stuck on this bit and i was dreading it, ive been told you can password it useing htaccess but that would just be for a basic password, what im after is a full log in for a members area, so if any one at all can help me id be very greatfull, i am relly looking for the easy option on this if possable as i dont fancy sitting here for another year editing html ect if somehow it could be created in a flash even better or even if someone has seen any register templates in flash i could use hovering round the net, im not shure how register part relly works , never know someone might have allready done this befor ,thanks for looking 
|
|
|
|
« Last Edit: October 11, 2008, 09:30:50 PM by Diemux »
|
Logged
|
|
|
|
|
codewhite
|
 |
« Reply #1 on: October 08, 2008, 01:59:38 AM » |
|
|
|
|
|
|
Logged
|
|
|
|
|
KsbjA
|
 |
« Reply #2 on: October 08, 2008, 03:53:25 AM » |
|
hi there im after some advice on how can i create a register page , so people can register and sign in , eather in html for flash its just im relly stuck on this bit and i was dreading it, ive been told you can password it useing htaccess but that would just be for a basic password, what im after is a full log in for a members area, so if any one at all can help me id be very greatfull, i am relly looking for the easy option on this if possable as i dont fancy sitting here for another year editing html ect if somehow it could be created in a flash even better or even if someone has seen any register templates in flash i could use hovering round the net, im not shure how register part relly works , never know someone might have allready done this befor ,thanks for looking  Welcome to 110mb! I would suggest using PHP or even a whole CMS/forum/blog script. This depends on how much code do you know. Also, check out the forum threads and Google search codewhite suggested. And by the way, it hurts my eyes to read your post.  Please, be nice, and don't make it all-bold and all-blue. 
|
|
|
|
|
Logged
|
|
|
|
|
red-members
|
 |
« Reply #3 on: October 08, 2008, 07:58:50 AM » |
|
thanks for the links so far ive managed to get to hotscripts for further help and to tell you the truth i think im going to have to get someone to do a custom script for me or just to do the whole job for me at a price,i have emailed hotscripts so im awaiting of them ,most scripts seem to be free ? but anyway if there is anyone here who might want to take this on your more than welcome but i think ill pass on scripts myself
|
|
|
|
|
Logged
|
|
|
|
|
Demonic
|
 |
« Reply #4 on: October 08, 2008, 10:53:03 AM » |
|
I recommend getting a CMS like Drupal or Xoomp. Joomla is also good but I' mnot sure if you're allowed to use it on 110mb.
|
|
|
|
|
Logged
|
|
|
|
|
bind
|
 |
« Reply #5 on: October 08, 2008, 01:59:27 PM » |
|
hi there im after some advice on how can i create a register page , so people can register and sign in , eather in html for flash its just im relly stuck on this bit and i was dreading it, ive been told you can password it useing htaccess but that would just be for a basic password, what im after is a full log in for a members area, so if any one at all can help me id be very greatfull, i am relly looking for the easy option on this if possable as i dont fancy sitting here for another year editing html ect if somehow it could be created in a flash even better or even if someone has seen any register templates in flash i could use hovering round the net, im not shure how register part relly works , never know someone might have allready done this befor ,thanks for looking  its not possible with html. there is no EASY way unlesss you use and open source content management system. a secure user administration, management, and authentication system is a daunting task that requires you to edit every protected resource that requires a user to be logged in to view, plus renaming the files extensions unless you use htaccess to parse html as php, and even then it still requires editing to insert the php code. do a google search for ' php user administration and authentication script'. and if you dont know the basics, and dont want to use a open source content management system, read below and start learning the basics, then post your code and we can help you troubleshoot any problems: | | V
|
|
|
|
« Last Edit: October 08, 2008, 02:15:22 PM by bind »
|
Logged
|
Learn the basics, create your code, then post source code to troublshoot if you have any problems Here is all you need to learn the basics HTMLJavascriptCSSPHPMySQL.
|
|
|
|
red-members
|
 |
« Reply #6 on: October 11, 2008, 10:34:31 AM » |
|
thanks for all the reply on this matter, as i havent got mutch time to lern this process , in the end ive just hired someone to take one this job so hopfuly in about 4 days it should be done ,but i think its somethink worth while looking into for future ,yet again thank you for your replys
|
|
|
|
|
Logged
|
|
|
|
|
primefalcon
|
 |
« Reply #7 on: October 11, 2008, 10:38:18 AM » |
|
red if you planning on managing a site it is worthwhile learning the stuff seriously yourself, if only so you know when your underlings are doing a good or bad job lol
|
|
|
|
|
Logged
|
|
|
|
inp o҉rtb
The Gangsta
Global Moderator
Official 110mb Guru
   
Online
Posts: 11977
experimental theologian
|
 |
« Reply #8 on: October 11, 2008, 10:44:29 AM » |
|
Then again, we all know that managers don't know how to code. The underlings are more interested in programming than management, and the managers have gotten so lazy from making other people do their work that they had long forgotten most of their coding skills 
|
|
|
|
|
Logged
|
|
|
|
|
bind
|
 |
« Reply #9 on: October 11, 2008, 01:56:25 PM » |
|
other than for performance and quality reasons, it also pays to know the code you are executing when developed by someone else, lest malicious individuals place plain or obfuscated malicious code that could: - adversely affect the stability of the server.
- piggyback and steal your server resources and bandwidth.
- give the developer backdoor access to your account root, all files/data, and any SQL data (customer, visitor, member, vendor, affiliate, advertiser, etc).
- violate the privacy rights of YOU, your visitors, and members.
- allow for identity theft of your visitors and members if commercial in nature (ecommerce).
- unlicensed tracking of visitor and member usage.
so yea it pays to know the language syntax and functions and proof all scripts to know what you're getting. Now if you are outsourcing to a legitimate, reputable, professional organization with a long standing reputation in the field, and paying a good amount of money to, you are probably safe.
|
|
|
|
|
Logged
|
Learn the basics, create your code, then post source code to troublshoot if you have any problems Here is all you need to learn the basics HTMLJavascriptCSSPHPMySQL.
|
|
|
|
primefalcon
|
 |
« Reply #10 on: October 11, 2008, 03:29:53 PM » |
|
well said bind
|
|
|
|
|
Logged
|
|
|
|
|