I'm using Mambo Open Source CMS to run a site I'm building, and seem to have a
problem logging into the Administration Tool. It comes up with:
Fatal error: session_start(): Failed to initialize storage module. in
/home/hetbweb/public_html/administrator/index.php on line 64
I've looked at various
* Thus wrote Jeff McKeon ([EMAIL PROTECTED]):
Not related to your problem but:
> session_regisister("userid", "userpassword");
spelling ~~~^^
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
From: "Jeff McKeon" <[EMAIL PROTECTED]>
[snip]
> where do I set the default location for session data?
session.save_path in php.ini
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hey all, I'm working out of a book teaching myself PHP4 here and I've
got this code from a login web page...
[begin code]
session_start();
if(!isset($userid)) {
login_form();
exit;
}
else {
session_regisister("userid", "userpassword");
if(!$u
Did you make sure everything below is BEFORE the html tag?
Also you can just set the variable $sesionvar like this:
$sesionvar = "fulanito";
instead of
$HTTP_SESSION_VARS["sesionvar"] = "fulanito";
> lines in the acceso.php file:
>
> 27 session_name(primera);
> 28 session_start();
> 29 sess
lines in the acceso.php file:
27 session_name(primera);
28 session_start();
29 session_register("sesionvar");
30 $HTTP_SESSION_VARS["sesionvar"] = "fulanito";
what I get in the browser:
Warning: Cannot send session cookie - headers already sent by (output
started at /public_html/php/acceso.
On Fri, 19 Jan 2001, Markus H. Maussner wrote:
> hi...
>
> every time i do a session_start(); with php i get in the first two lines
> of the output this
>
> &PHPSESSID=ba606b5a90dbb4410417b4c612aaf1c9"">Your data Contact
> LOGOUT
> &PHPSESSID=ba606b5a90dbb4410417b4c612aaf1c9"">Contact
hi...
every time i do a session_start(); with php i get in the first two lines
of the output this
&PHPSESSID=ba606b5a90dbb4410417b4c612aaf1c9"">Your data Contact
LOGOUT
&PHPSESSID=ba606b5a90dbb4410417b4c612aaf1c9"">Contact LOGOUT
do i do something wrong ? can i put this message s
8 matches
Mail list logo