Make sure that people can't make accounts with a name that someone has already registered with. I just tried and succeeded.
Offline
transparent wrote:
Make sure that people can't make accounts with a name that someone has already registered with. I just tried and succeeded.
Nicknames are not unique, but usernames are. 2 users CAN share a nickname, but CANNOT share a username
Zeusking19 wrote:
It looks a lot like bluetetra
I helped develop BlueTetra, but Servine changed it to look like this after my site came out
Offline
SeptimusHeap wrote:
transparent wrote:
Make sure that people can't make accounts with a name that someone has already registered with. I just tried and succeeded.
Nicknames are not unique, but usernames are. 2 users CAN share a nickname, but CANNOT share a username
Interesting, but won't that make it confusing?
Offline
transparent wrote:
SeptimusHeap wrote:
transparent wrote:
Make sure that people can't make accounts with a name that someone has already registered with. I just tried and succeeded.
Nicknames are not unique, but usernames are. 2 users CAN share a nickname, but CANNOT share a username
Interesting, but won't that make it confusing?
It's sort of like Steam. You can check someone's username by going to their profile and looking at the URL.
News and commenting added! Try it out, people! Handcoded it in a couple hours. Huge pain
Offline
Alright tested out the commenting.
Offline
ob6160 wrote:
Septimus! Great site:O Remember me? I made one as well check out diminu.tk
Hey ob! Nice site! The graphics are amazing.
Last edited by SeptimusHeap (2012-10-18 18:21:55)
Offline
Is the UI to hard for new users to understand? The whole click-on-username for settings thing might be too hard to figure out. What do you think?
Offline
Amazing, and simple. I registered as SpicyChorizo for no discernable reason.
Offline
NeilWest wrote:
Amazing, and simple. I registered as SpicyChorizo for no discernable reason.
Thanks! I like your avatar!
Offline
SeptimusHeap wrote:
NeilWest wrote:
Amazing, and simple. I registered as SpicyChorizo for no discernable reason.
Thanks! I like your avatar!
It's my Scratch icon. :3
Last edited by NeilWest (2012-10-23 05:39:15)
Offline
Wooooooow.
Also, I'm working on something similar and I need a login/register user system. Any tips? Right now my biggest problem is password security.
Offline
Gravitation wrote:
Wooooooow.
Also, I'm working on something similar and I need a login/register user system. Any tips? Right now my biggest problem is password security.
It depends on what length you're willing to go for. Encryption is the most basic and least secure, but should be fine for a private site. Hashing should be enough for sites needing a little more, but if you want the most secure method, google "hashing with a salt", this method is more difficult to use but is what my site uses and is almost impossible to crack.
Offline
sr-15314 wrote:
>
http://www.mywot.com/en/scorecard/flaxbeard.site90.net?utm_source=addon&utm_content=contextmenu
WOT says your site is dangerous.
Because it's a site90 domain which isn't trusted since there are no rules for it.
Offline
Gravitation wrote:
sr-15314 wrote:
>
http://www.mywot.com/en/scorecard/flaxbeard.site90.net?utm_source=addon&utm_content=contextmenu
WOT says your site is dangerous.Because it's a site90 domain which isn't trusted since there are no rules for it.
Requesting a WOT evaluation...
Offline
XenoK wrote:
I like everything but the profile urls, no offence, but it's really ugly like that. (I can't stand the scratch forum ones, either) use .htaccess to rewrite those urls.
Hmm... I tried this in my htaccess but it didn't work...
# Do not remove this line, otherwise mod_rewrite rules will stop working RewriteBase / <IfModule mod_rewrite.c> RewriteEngine On ErrorDocument 404 /404.html RewriteRule ^([a-zA-Z0-9_-]+)$ profile.html?username=$1 RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.html?username=$1 </IfModule>
Offline
SeptimusHeap wrote:
XenoK wrote:
I like everything but the profile urls, no offence, but it's really ugly like that. (I can't stand the scratch forum ones, either) use .htaccess to rewrite those urls.
Hmm... I tried this in my htaccess but it didn't work...
Code:
# Do not remove this line, otherwise mod_rewrite rules will stop working RewriteBase / <IfModule mod_rewrite.c> RewriteEngine On ErrorDocument 404 /404.html RewriteRule ^([a-zA-Z0-9_-]+)$ profile.html?username=$1 RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.html?username=$1 </IfModule>
rewrite rules should be
RewriteRule ^users/(.*)$ profile.html?username=$1
and you only need one of them.
Offline
First reaction: Hey, that looks like Win8 Metro
Forums reaction: Hey, people agreed with me
As for a suggestion, I think that if it causes a highlight, it should be clickable. I recommend putting the <a href> outside the div, it will make everything, even background within the div clickable like the buttons on my site (needs redesign work, I've made changes but not fixed bugs, really needs an overhaul anyway). I've noticed this on the home buttons in the settings menu and the user icon.
Offline