Database sessions and file sessions

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Database sessions and file sessions

    Can database sessions and file system sessions co-exist on the same
    server. I have 2 applications that use sessions. One uses the standard
    php sessions and the other uses sessions that are stored in the
    database. Neither of these can be changed.

    Can anyone offer any advice on this?

    Chris
    Cditty Guest

  2. Similar Questions and Discussions

    1. database sessions persists after and </cfquery>
      Quick question for all CF gurus. I 'm trying to alter user passwords in my db. To do this I call a stored proc that issues "Alter user" SQL. I...
    2. CGI::Sessions : Deleting expired sessions
      Hi, I use CGI::Sessions to save the sessions into MySQL. The problem is, if the user just close the browser windows without logging off, I can't...
    3. Database state maintenance and incomplete sessions
      This is a question with regards to using a database for maintaining state on a site. I'll use the Shopping Cart application from the ASPFAQ.com...
    4. best practice question regarding AspState database for sessions
      Quick question regarding best practices for using the AspState database for storing session variables in .NET web applications. I know I need to...
  3. #2

    Default Re: [PHP] Database sessions and file sessions

    --- CDitty <mail@redhotsweeps.com> wrote:
    > Can database sessions and file system sessions co-exist on the same
    > server.
    Sure, and it is trivial to do unless you are wanting to use the data from both
    sessions with the same application, though that is still possible.

    If you need to share data, you can just register your own session functions
    using session_register() and share the data however you want. In fact, it would
    be pretty easy to convert the sessions to use one way or the other in this
    manner. You can read the session from both sources and store in whichever
    source you are converting to.

    Hope that helps.

    Chris

    =====
    Become a better Web developer with the HTTP Developer's Handbook
    [url]http://httphandbook.org/[/url]
    Chris Shiflett Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139