Jump to content

gristoi

Members
  • Posts

    840
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by gristoi

  1. People are here to help you with problems that you may have WITH CODE THAT YOU HAVE TRIED TO WRITE YOURSELF. If you want someone to write it for you from scratch then you need to post this in the freelance section and expect to pay for the work. Other wise you will more than likely be out of luck.

  2. this is nothing to do with your localhost not being able to accept sessions. this error :

    Warning: Cannot modify header information - headers already sent by .....

    means that somewhere in your code you are trying to send a header AFTER something has been sent to the page. There are two basic rules for using headers :

    [*]Ensure thats there is no whitespace directly after the opening / closing tags

    [*]Ensure that nothing is printed to the page before any kind of header redirect etc.

     

    to help you further we need to see some code

  3. What have you tried so far? You cant just ask people to write the upload code for you. if you want someone to do it for you then you need to post this in the freelance section. With that said, look at using fgetcsv.

    There are examples on how to read csv's. you also need to lookk at how to upload and move files on the server and using functions like fopen

  4. No, you do however need to read up on managing access and permissions in linux. using 777 is a very bad option so dont go using that all of the time. It is basically granting all read and write permissions for that file, and as you can guess can lead to security problems.

     

    http://www.linuxforums.org/forum/linux-tutorials-howtos-reference-material/10862-linux-file-permissions.html

     

    a starting point

     

  5. sounds like your server is not in the same timezone as you :( . Is this your own server?

    you could try passing in the time on the php side:

    <?php
    $now = date('Y-m-d H:i:s', time())
    ?>

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.