Jump to content
  • 0

Проблема с сессиями


bgraf
 Share

Question

Здравствуйте!

Помогите разобраться, у меня не работает сессия.

Вот код

test_1.php


<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<base href="http://www.test.ru">
<title>Test</title>
</head>
<body>
<form name="form" action="/test/test_2.php" enctype="multipart/form-data" method="post">
<?php
$_SESSION['test_1']="Привет со страницы test_1.php";
echo($_SESSION['test_1']);
?>
<input type="submit" name="sub_test_1" value="Поехали" >
</form>
</body>
</html>

echo($_SESSION['test_1']); на странице test_1.php выводит "Привет со страницы test_1.php"

а вот страница test_2.php


<?php
session_start();
ini_set('display_errors',1);
error_reporting(E_ALL);
header ("Content-type: text/plain; charset=utf-8");
if(isset($_POST['sub_test_1']))
{
echo('Я пришел');
echo($_SESSION['test_1']);
}
?>

получаю ошибку Notice: Undefined index: test_1 in /home/l/lbgraf/public_html/registration/test_2.php on line 10

в php.ini:

session.use_only_cookies = 1

session.use_trans_sid = 1 (пробовал и 0 - не работает)

помогите разобраться пожалуйста.

Edited by bgraf
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Все ответ найден.

Дело в том, что я вводил в адресную строку youre_domain.ru/test/test_1.php, тем самым пытался сделать сессии кросс-доменными, поэтому при вводе www.youre_domain.ru/test/test_1.php все заработало.

А если есть риск, что кто-то введет адрес без www, можно прописать в .htaccess


Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

Спасибо всем кто помогал!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy