Greetings,
Dear dynodins,
I was having the same problem which you have from a few days ago, casue I develop by PHP WAP projects on mobil.
The problem had been solved, Thanks GOD and Thanks NogDog for his kindly message which was the key for me.
I would like to tell you few comments which were helpfull for me and I hopfully being helpfull to you too:
- Must edit two lines in the php.ini file which are below :
session.use_only_cookies = 0 (ofcourse you know that to effect this line should remove the semi colum before the line)
session.use_trans_sid = 1
By this it must the new added parameter 'PHPSESSID' appears now when passing from page to another in case of blocking the cookie from the privacy from the internet options.
But the problem sir that there are some commands that you can't use in case of blocking the cookie like :
Session_Register() , Session_Isregister(), bla bla bla
so you must use only the common commands for the two cases (blocking and unblocking)
like :
IsSet(session....)
May be I repeated some words and some ideas which were said before from the kindly members but sorry that what I have and I would like to say it, who knows that may be I will be helpfull π
Good Luck π
dynodins wrote:I have tried all these solutions, but still no luck with my current client. Again, they are behind a proxy server. I have tried all the ini_set solutions with no luck. Here are the other solutions I have tried...
Header Info: I added the following code to the header of my scripst - header('Cache-control: private, must-revalidate');
This was recomended that it work around the proxy server, but this doesn't work.
Passing session ID through a hidden form field through a post: I built a version that passed the session ID throught a hidden field on every page. This would allow the site to avoid using cookies or any temporary files stored on the users computer. I tested this on our side with cookies dissabled and it worked. With cookies dissabled I could not log in to yahoo mail or other popular websites. I think it is a standard practice that if you can't store cookies site's won't work. I want to still be functional with or without cookies, but this is still not working on the proxy server.
I know it is common practice to use cookies and if the user doesn't have cookies enabled then tough luck, but that just won't fly when the guy approving the project can't even see the website correctly. If anyone has any other solutions for me I would greatly appriciate it.
Thanks in advance!