Justin
Elite Poster
Pure Awesomeness[M:0]
In Memory of those killed in the 9/11 attacks
Posts: 277
|
Post by Justin on May 22, 2011 21:38:11 GMT
www.justinsherrard.info/usersystem/so this is what I've been working on for the past 4 months, (I've actually haven't touched it in 1 month due to personal reasons) but will hopefully have it finished soon after summer begins. Basically it can do what most usersystems can do View profiles profile avatars edit profiles etc.. still need to do the members page (seeing who's currently registered) and the PM system. then basically done. still don't know what I'll do with it when it's complete.
|
|
Cam
Administrator
[M:5000]
Posts: 6,381
|
Post by Cam on May 26, 2011 3:31:54 GMT
Good to see progress!
|
|
Nick
VIP
v5 Beta Tester[M:5000]
Philadelphia Eagles: 8-8
Posts: 2,239
|
Post by Nick on May 31, 2011 16:41:46 GMT
Cool. Are you going to merge it with another project once it is done?
|
|
Justin
Elite Poster
Pure Awesomeness[M:0]
In Memory of those killed in the 9/11 attacks
Posts: 277
|
Post by Justin on Jun 4, 2011 10:44:22 GMT
I'm hoping to merge it with something, I have noticed the lack of Photo Uploading sites (Photobucket sucks, tinypic is virus filled, and Imageshack sucks) so I might do something like that (making a private uploader for the people I like) :b
|
|
Cam
Administrator
[M:5000]
Posts: 6,381
|
Post by Cam on Jun 5, 2011 22:25:55 GMT
Who's on the list or likable people? ;D
|
|
|
Post by Obsidian² on Jun 5, 2011 22:57:29 GMT
I'm hoping to merge it with something, I have noticed the lack of Photo Uploading sites (Photobucket sucks, tinypic is virus filled, and Imageshack sucks) so I might do something like that (making a private uploader for the people I like) :b Try xdat.usor mirrorimg.net
|
|
Nick
VIP
v5 Beta Tester[M:5000]
Philadelphia Eagles: 8-8
Posts: 2,239
|
Post by Nick on Jun 6, 2011 15:03:00 GMT
Who's on the list or likable people? ;D Definitely me! Haha Are you going to release the source?
|
|
|
Post by Obsidian² on Jun 6, 2011 17:41:27 GMT
Who's on the list or likable people? ;D Definitely me! Haha Are you going to release the source? How about only people from cC? Like a private codersCommunity Uploader?
|
|
Nick
VIP
v5 Beta Tester[M:5000]
Philadelphia Eagles: 8-8
Posts: 2,239
|
Post by Nick on Jun 6, 2011 17:44:51 GMT
Definitely me! Haha Are you going to release the source? How about only people from cC? Like a private codersCommunity Uploader? You could just attach it. How big is the file?
|
|
Justin
Elite Poster
Pure Awesomeness[M:0]
In Memory of those killed in the 9/11 attacks
Posts: 277
|
Post by Justin on Jun 11, 2011 13:34:55 GMT
Definitely me! Haha Are you going to release the source? How about only people from cC? Like a private codersCommunity Uploader? hmmm.... maybe Who's on the list or likable people? ;D Definitely me! Haha Are you going to release the source? sometime since school is now out, I can start this project today, I will start with creating the file upload script, and so on, I will post back when I need beta testers
|
|
Nick
VIP
v5 Beta Tester[M:5000]
Philadelphia Eagles: 8-8
Posts: 2,239
|
Post by Nick on Jun 11, 2011 18:36:28 GMT
Cool! Keep me updated!
|
|
Cam
Administrator
[M:5000]
Posts: 6,381
|
Post by Cam on Jun 11, 2011 19:57:40 GMT
Me too.
|
|
Justin
Elite Poster
Pure Awesomeness[M:0]
In Memory of those killed in the 9/11 attacks
Posts: 277
|
Post by Justin on Jun 11, 2011 22:07:30 GMT
Will do right now I'm making the invite system (only people invited will be able to register)
|
|
Justin
Elite Poster
Pure Awesomeness[M:0]
In Memory of those killed in the 9/11 attacks
Posts: 277
|
Post by Justin on Jun 12, 2011 4:25:25 GMT
Uploading script almost done, just have a few bugs to fix, will release it soon. url will look something like this:
/1307852422.jpg
Just having issues with checking if the extension is right (it's being a bitch today) sure it's just a ; like usual, will look at it more tomorrow :b
|
|
|
Post by (/iPokemon/) on Jun 26, 2011 4:53:21 GMT
I'm hoping to merge it with something, I have noticed the lack of Photo Uploading sites (Photobucket sucks, tinypic is virus filled, and Imageshack sucks) so I might do something like that (making a private uploader for the people I like) :b Try xdat.usor mirrorimg.netor pImg.in! And justin, if you need me to check sql injections for ya, I can
|
|
Justin
Elite Poster
Pure Awesomeness[M:0]
In Memory of those killed in the 9/11 attacks
Posts: 277
|
Post by Justin on Jun 27, 2011 18:53:55 GMT
|
|
|
Post by (/iPokemon/) on Jun 27, 2011 22:23:49 GMT
Okay, do you have any GET variables at all?
Oh, and for your uploader, if you want to use this function to generate random strings of letters, numbers, and some acceptable special characters for renaming file names to, here's the function I use on pImg.
function randomAlphaNum($amount){ $numchars = $amount; $chars = explode(',','a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9'); $random=''; for($i=0; $i<$numchars;$i++) { $random.=$chars[rand(0,count($chars)-1)]; } return $random; }
You can edit the $chars second part with more characters, separated with commas. (no comma at end)
|
|