Suppose i am storing something that is not pickable why would it clear
all my other values at the same time too


On Nov 18, 6:00 am, mdipierro <[email protected]> wrote:
> Three possibilities:
> - you are storing in session something that is not pickable
> - file system permissions error
> - browser cookies disabled
>
> On Nov 18, 12:45 am, Crim <[email protected]> wrote:
>
>
>
>
>
>
>
> > so my website was working yesterday and now for some reason the
> > session variables arnt saving at certain points
>
> > namely when i try this
>
> > <form name="ex">
> > <table align="center" border="0"><tr><td>
> > <div style="background:#cccccc;border:solid 1px
> >  #000000">
> > <input type="text" name="nav" value=""
> > size="50" /><br />
> > <select name="s" size="1"
> > onchange="document.ex.nav.value =
> > document.ex.s.options[document.ex.s.selectedIndex]
> > .value;document.ex.s.value=''">
>
> > <option value=" " selected="selected"></option>
>
> > {{var =  db.executesql("""SELECT TOP 1000 [ID]
> >       ,[Price]
> >       ,[Airport-From-Name]
> >       ,[Airport-From-State]
> >       ,[Airport-From-City]
> >       ,[Airport-To-Name]
> >       ,[Airport-To-State]
> >       ,[Airport-To-City]
> >   FROM [master].[dbo].[Flight]
> >   WHERE [Airport-From-City] = ? AND [Airport-From-State]= ? AND
> > [Airport-From-Name]= ?;""", (a[1], a[2], a[0]), True)
> >   }}
> > <ul>
> > {{for row in var:}}
> > <option value="{{=row}}">{{=row}}</option>{{pass}}
> > </ul>
>
> > </select></div></td></tr></table>
>
> > <input type="submit" />
> > </form>
>
> > after i send something to the server the page refreshes and the
> > session is cleared
>
> > i dont know why this is happening now and it wasnt a day ago
>
> > ... it was all working fine xD
>
> > thanks a lot for any information ^ ^ ill be up at 7ish to respond but
> > i reeeealy have to sleep :( i have been trying to fix this for a while
> > now

Reply via email to