Search results

  1. A

    hash algorithms - best method db sec

    i'm likely going to be redoing the way i encrypt passwords in my database. this is in general, hiding data keeping it safe in your database. more of web programming, but could be applied elsewhere using other functions - general cryptography. hash algorithms md5, sha1, haval128 are weak alone...
  2. A

    sdl & ogl graphics archive

    im using sdl & open gl, im still fairly new to them and thier funcs. I understand some things, but still struggling and having probloems on how to create an interface with text/images/buttons/sounds. i am using devcpp, afaik the only msvcpp i can find is 30day trial... For my project i know I...
  3. A

    Modifying PHP files on the fly?

    are you meaning an interface to edit files? fopen input some file name.php save submit fwrite 'w' to that file
  4. A

    chat management

    thanks, and for the diagram. i didnt expect it to be easy to implement, but for my situation i guess it is ok and best i keep it simple. it is more of a simple chatroom, with 1 room. i will have to put more boundaries and limits on it. but if my situation demanded a very active user base then...
  5. A

    chat management

    what i have is 2 divs 1 for users 1 for content. within the content of user div i add new divs with ids of the users. so dynamically when users leave it removes that user from all clients in the parent user div. ^^^ that is what i was hoping to do..... //client idle afk w/e kick using ajax in...
  6. A

    chat management

    i have developed a chatroom running with js/ajax on client, and php for server side storing data in mysql. My only real issue is the method i use in having registered (site members) being logged in right as they enter the page -- And being logged out when they leave; thus being added/removed...
  7. A

    generating cliffs

    k, thanks then what is the definition of Environment - Change terrain type at (Random point in storymode <gen>) to Outland - Abyss Cliff using variation (Random integer number between 1 and 2) in an area of size (Random integer number between 1 and 8) and shape Circle Outland -abyss cliff...
  8. A

    generating cliffs

    i was playing around with changing terrain which i use in my map with doodads and it works quite well every game is unique. im not sure why this does not work: Environment - Change terrain type at (Position of (Casting unit)) to (Terrain type at (Position of (Casting unit))) using variation 0...
  9. A

    ajax and creating elements

    hhello, how can i accomplish this: I am using ajax communicating with my server with the output code i wish to \ use it to create an element div or even just text and stick it into a parent element as 'data' but i want the data to be as text/html from its output. the only node i can find for...
  10. A

    i keep getting pop-ups

    not quite sure what the problem could be, did you install a toolbar?? zango is nasty IE, id also advise that you get a host file to stop a good majority of those malicious sites. try running msconfig via run > msconfig possibly you can halt the process of the popups, with this go to the tab that...
  11. A

    web applications

    ehhh i have linux. i dont understand how i could have the ventrilo webserver running without most these php funcs, since it is linux.id still like to figure out how to get a vent webserver running somehow but i dont know which direction to go to. And i dont know if there even is a workaround...
  12. A

    web applications

    hello, ive been spending the last longg while trying to add some webapplications exe files i'd like the server to run. what ways can I run applications on the serve r? really im trying to specifically create a ventrillo server off a site. 'online server' im not quite sure where to go in having...
  13. A

    weather effects don't work

    i think it is true that some weather effects just don't seem to work via trigger. The random does work, it shows the text 'fog' but doesnt do squat otherwise. Its the weathereffect that doesnt work, i have a periodic event. the trigger is just as it is above, with every120 seconds event...
  14. A

    weather effects don't work

    I have a question about weather effects, how do they actually work by trigger? I've never successfully had them work via trigger, ive looked for threads nothing seems to help? exactly how do i get below to work? :) it would be very nice to know how to have it rain randomly with fog etc.. If...
  15. A

    math decis dont coope with the editor?

    which variable type is precise i only see real and integer for variables? is there another math function that can compute larger numbers exactly?;) i do have proof: i have tried it with 12345 a five digit number and it seems to work, i just think large values come out not to compute to the...
  16. A

    math decis dont coope with the editor?

    i have a simple problem with we when i want to convert numbers with large decimal places, i simply cannot. for example 123456789/24 =ans*24 should equal 123456789 but it ends up just being 12345678 in the editor. i am using real number variable, but it seems to me that it only goes to 2 or 3...
  17. A

    spell triggering loops

    my problem is, and i dont know why it is happening but here it is: when i loop for example a thunderclap or some other sfx or doodad for say to circle around a unit from a specific radius and i dont want it instantly but gradually in time to encircled around the hero. but when i add wait 'small...
  18. A

    mysql designing a forum

    -the latest v & shared. -problem is that i like doing everything myself heheh. -going off someone else's code defeats my whole purpose lol, since im learning. because i know well enough there are many exploits that might be my only problem. I'm fine with input exploits. I could just 'look' for...
  19. A

    mysql designing a forum

    im now switching to near pure mysql on my forum almost all the smaller things such as topics are stored in txt files. Threads everything else including users and passwords are stored in mysql tables. my question is for the forum, what would be the best method and or structure for displaying...
  20. A

    Can't get z-index to work :/

    z-index works clearly if you stack things on-top of each other <style> #Background { z-index: 1; background-color:red; display:block; } #Background img{ z-index: 2; background-color:green; padding:5; display:block; } </style> <div id="Background"> <img src="Background.gif" alt="BG" /> </div>...
Top