Search:

Type: Posts; User: erikjacobsen; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    7,913

    Back in 2005 there were som suggestions in...

    Back in 2005 there were som suggestions in http://www.antionline.com/archive/index.php/t-265015.html
  2. Replies
    6
    Views
    6,734

    Great! You still got some Warning:...

    Great! You still got some

    Warning: mysql_error(): supplied argument is not a valid MySQL.....

    errors to fix though. One thing to do is always to (just a sketch):

    ...
  3. Replies
    6
    Views
    6,734

    It's probably as Striek says just a question of...

    It's probably as Striek says just a question of setting it up right.

    I could do it for you - if you would grant me access. You would of course have to trust me ;)
  4. Thread: Asp

    by erikjacobsen
    Replies
    4
    Views
    3,918

    "I want to create a file in the client " you say....

    "I want to create a file in the client " you say. But that is impossible.
    The reason you got it to work on your PWS is just that your client
    is also your server.
  5. Replies
    3
    Views
    2,808

    What's your C++ code? You might put a byte...

    What's your C++ code?

    You might put a byte into a 16 or 32 bit word, and print the entire word. But
    hard to tell without your code.
  6. Replies
    12
    Views
    7,817

    Just my 3 cents: 1) Turing "invented" Turing...

    Just my 3 cents:

    1) Turing "invented" Turing machines to discuss and prove things about
    computability: which functions can (and connot) be computed by any machine.
    A Turing machine can't really...
  7. Replies
    2
    Views
    2,661

    If your /etc/shadow looks like ...

    If your /etc/shadow looks like

    username:ssccccccccccc:....

    Then the "ss" stands for the 2 character salt, and the "ccccccccccc" is your
    encrypted password - just as the theory goes.

    But the...
  8. Replies
    10
    Views
    5,556

    Great - saves me from explaining why

    Great - saves me from explaining why
  9. Replies
    6
    Views
    3,724

    In the short run you can add a check for a...

    In the short run you can add a check for a cookie, or check for the same IP-number.

    But who knows what smyn31337 actually wants to use it for?
  10. Replies
    6
    Views
    3,724

    Depends very much on what level of security you...

    Depends very much on what level of security you want to accomplish.

    A simple way is to put it through md5() - this produces 32 randomly looking
    characters. When you read this off the URL, you can...
  11. Replies
    10
    Views
    5,556

    You should try to replace fp = fopen(argv[1],...

    You should try to replace
    fp = fopen(argv[1], "r");
    by
    fp = fopen(argv[1], "rb");
    when compiling on windows

    If this works, I'll tell you why...
Results 1 to 11 of 11