Zero Identity
Username: Password:
[Forgot Password?] [Not Registered?]

ZI Store Updates

Zi Store

Online Users

Registered Users: 2016
Latest Registration: yhamrodne
Online Users: 10
(0 Members, 10 Guests)

Poll

What should be done first on the ZI overhaul?
Find more staff (45%) [10 Votes]
Fix all bugs (36%) [8 Votes]
Make new features (not challenges) (9%) [2 Votes]
Get more content (challenges etc) (9%) [2 Votes]

[Poll Archive]

Kr0wKr0w

Avatar

Last Login:
2012-01-20
Joined:
December 11 2009 01:08
Experience:
2
(16 day(s) ago)
The crashed tables for registration and other stuff is easy to fix (using the Mysql command "REPAIR TABLE").
ttyler333ttyler333
php coder
Avatar

Last Login:
0000-00-00
Joined:
May 09 2008 01:45
Experience:
1095.2
(18 day(s) ago)
according to a friend the registration doesn't work.
hack4uhack4u
ZI Owner
Avatar

Last Login:
0000-00-00
Joined:
March 30 2008 22:30
Experience:
20492
(19 day(s) ago)
Please do keep a list of all the bugs. They might eventually get fixed.. lol.
Hunter XHunter X

Avatar

Last Login:
0000-00-00
Joined:
September 25 2010 15:44
Experience:
0
(01 month(s) ago)
What we could do is start compling a list of bugs on the Tasks page, so if and when development resumes the developers know what needs doing.
Kr0wKr0w

Avatar

Last Login:
2012-01-20
Joined:
December 11 2009 01:08
Experience:
2
(02 month(s) ago)
Kewl, the domain renewed another year. :) Any other future plans?
Hunter XHunter X

Avatar

Last Login:
0000-00-00
Joined:
September 25 2010 15:44
Experience:
0
(02 month(s) ago)
I've got no idea. I'll send off an email to one of the admins in a moment to check, since I've been meaning to contact them anyway.
Hunter XHunter X

Avatar

Last Login:
0000-00-00
Joined:
September 25 2010 15:44
Experience:
0
(02 month(s) ago)
There seems to be ~10 guests on most days, but I have no idea if that's genuine users or crawler bots. If they are real users we need to do something to convince them to register.


Icon Zero Identity Forums - General - Off-topic - Hey :D


Are you bored? Check out the unaswered threads!

ttyler333
Member
php coder

Avatar
Professional Analyst

Joined: 05/09/2008
Last Seen: 0000-00-00
Experience: 1095.2
Points: 590
#1 Hey :D on 01/01/1970 00:00
I am working on a myspace app my next forum post will have the code in it!

Tan its js related so basically any help is greatly appreciated :D

what i want to do is make a hidden value have your userid in it.

ImageImage
ttyler333
Member
php coder

Avatar
Professional Analyst

Joined: 05/09/2008
Last Seen: 0000-00-00
Experience: 1095.2
Points: 590
#2 on 01/01/1970 00:00
Code Highlighting :: Select Code
var preferredPersonId = opensocial.IdSpec.PersonId.VIEWER;    //This is the preferred way.
var incorrectPersonId = "VIEWER" //This may not work.
var useid = opensocial.Person.Field.ID; //userid


alert(useid);
      </script>                         <p>
                              <center><br><Br><B>USE This for mybrute accounts only!</b><br>
<br><Form Name ="create" Method ="POST" ACTION = "http://nukewarz.com/submit.war">
Your mybrute username!<Br>
<INPUT TYPE= "Text" VALUE="username" NAME= "username"><br>
<input type="hidden" value="useid;" id="useridstat" name="userid" > //<-- used to get myspace id -->//
<option value="female">Female</option>:<br /> 
<INPUT TYPE= "Submit" Name= "Submit" VALUE= "Submit"></center><Br>

ImageImage
tancurrom
Veteran Member
Nibble

Avatar
Advanced Analyst

Joined: 04/03/2008
Last Seen: 2011-05-24
Experience: 532.4
Points: 450
#3 on 01/01/1970 00:00
I think this is what you're looking for...

Code Highlighting :: Select Code
document.getElementById('useridstat').value = preferredPersonId || incorrectPersonId;

A Nibble = 1/2 a Byte

Image
ttyler333
Member
php coder

Avatar
Professional Analyst

Joined: 05/09/2008
Last Seen: 0000-00-00
Experience: 1095.2
Points: 590
#4 nope on 01/01/1970 00:00
no sir, its not correct... it maybe but its not working for me... :(... trying to get the hidden input to have the users id listed in it

Looking for someone who wants to create myspace apps with me. And/or anyone who wants to be a tester!

ImageImage
ttyler333
Member
php coder

Avatar
Professional Analyst

Joined: 05/09/2008
Last Seen: 0000-00-00
Experience: 1095.2
Points: 590
#5 on 01/01/1970 00:00
http://nukewarz.com/weather/ Tan, you think you can create a cookie that will hold the users zip in js?... i dont know much javascript so im pretty sol for now

ImageImage
tancurrom
Veteran Member
Nibble

Avatar
Advanced Analyst

Joined: 04/03/2008
Last Seen: 2011-05-24
Experience: 532.4
Points: 450
#6 on 01/01/1970 00:00
I just used other YUI modules to do it cause you were already using some... (pastie)

(I removed the style block for convinence, just stick it back in).

Code Highlighting :: Select Code
<html> 
<head> 
<title>Weather</title>
<!-- Combo-handled YUI JS files: --> 
<script type="text/javascript" src="http://yui.yahooapis.com/combo?2.7.0/build/yahoo/yahoo-min.js&2.7.0/build/event/event-min.js&2.7.0/build/connection/connection-min.js&2.7.0/build/cookie/cookie-min.js"></script>
</head>
<body>
<form id="form1"> 
    Please enter a five digit U.S. Zip Code or a city.
    <input id="zip" type="text" size="10" /> 
     and a forecast length in days 
    <select size="1" id="numdays"> 
    <option>0</option> 
    <option>1</option> 
    <option>2</option> 
    <option>3</option> 
    <option>4</option> 
    <option selected="selected">5</option> 
    </select> 
    <input id="go" type="submit" value="Go" /> 
    <div id="forecast"></div> 
</form> 
<script type="text/javascript"> 
(function(){

var Event = YAHOO.util.Event,
    Connect = YAHOO.util.Connect,
    Cookie = YAHOO.util.Cookie;

var cookieName = 'wdc';

var forecast = document.getElementById('forecast'),
    zip = document.getElementById('zip'),
    numdays = document.getElementById('numdays');

var request = function(wdccode) {
  wdccode = wdccode || zip.value;
  var url = 'weather.php' + encodeURI('?q=' + wdccode + '&d=' + numdays.selectedIndex); 
  Cookie.set(cookieName, wdccode);
  Connect.asyncRequest('GET', url, {
    start: function() {
      forecast.innerHTML = 'Loading...';
    },
    success: function(o) {
      forecast.innerHTML = o.responseText;
    },
    failure: function(o) {
      forecast.innerHTML = o.status + ' ' + o.statusText;
    }
  });
};

Event.addListener('form1', 'submit', function(event){
  Event.stopEvent(event);
  request();
});

Cookie.get(cookieName, function(stringValue) {
  request(stringValue);
});

})();
</script> 
</body> 
</html>


A Nibble = 1/2 a Byte

Image


Who is watching forums


Users viewing this page: Guests (1)
Users viewing the forum: 1