+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12

Thread: Cannot find save handler /tmp

  1. #1
    Join Date
    Jul 2007
    Posts
    7

    Default Cannot find save handler /tmp

    Hello guy's, i have a problem installing a shop cart...
    The installation part going ok and tell me installed complete OK, whene i'll go to index page i see the Warning: session_start error.

    Can you tell me what problem is this please? (someone is tell me the problem is in PHP.ini file, but i don't know how to fixed!)

    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/stamosne/public_html/stam/admin/config.php:1) in /home/stamosne/public_html/stam/include/class.sessions.php on line 28

    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/stamosne/public_html/stam/admin/config.php:1) in /home/stamosne/public_html/stam/include/class.sessions.php on line 28

    Warning: Cannot modify header information - headers already sent by (output started at /home/stamosne/public_html/stam/admin/config.php:1) in /home/stamosne/public_html/stam/global.php on line 169
    Last edited by Stamser; 07-23-2007 at 02:56 AM.

  2. #2
    Join Date
    Feb 2007
    Location
    http://www.bluehostreview.org
    Posts
    1,104

    Default

    php write session data into cookies.. do you make sure your browser can accept cookies??
    Charles Gan
    Bluehost Reviews : Bluehost reviews hosted at bluehost
    Bluehost Speed Test : bluehost hosting speed Test!
    Bluehost Uptime : Bluehost uptime monthly reports

  3. #3
    Join Date
    Jul 2007
    Posts
    7

    Default

    Yes, i accept cookies my browser!

  4. #4
    Join Date
    Feb 2007
    Location
    http://www.bluehostreview.org
    Posts
    1,104

    Default

    how about the
    register_globals = ON ???
    Charles Gan
    Bluehost Reviews : Bluehost reviews hosted at bluehost
    Bluehost Speed Test : bluehost hosting speed Test!
    Bluehost Uptime : Bluehost uptime monthly reports

  5. #5
    Join Date
    Jul 2007
    Posts
    7

    Default

    I have it off now, but befor 2 hours i have it on and i have same problem again!
    Last edited by Stamser; 07-23-2007 at 02:57 AM.

  6. #6
    Join Date
    Jul 2007
    Posts
    7

    Default

    It is posible to give the PHP.ini file from my server to take a look if you can?

    PS: I can paste here in post the code from PHP.ini!!!
    Last edited by Stamser; 07-22-2007 at 12:59 PM.

  7. #7
    Join Date
    Jul 2007
    Posts
    7

    Default

    Anyone to help please with this problem ?

  8. #8
    Join Date
    Jul 2007
    Posts
    7

    Default

    No one knows any solution for this problem???? No one?

  9. #9

    Default

    Limited knowledge in php so..ya..

    Only time I've seen this is if have a php page that sends the headers, then includes another php page that tries to send the headers again. The server doesn't know what to do about this second set of headers so it chokes and dies.

  10. #10
    Join Date
    Jun 2007
    Posts
    314

    Default output buffering

    You can try output buffering. Start your code like so;
    <?php
    ob_start();
    session_start;
    Then the rest of your code
    at the end of your code add
    ob_flush();

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts