Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Warning: eregi(): REG_EMPTY


fabriccut100

Recommended Posts

Posted

Does anyone know what this means? can I just comment this out or does it have to do with the SSL?

 

Warning: eregi(): REG_EMPTY application_top.php on line 45

 

line 45: $request_type=(eregi($HTTP_HOST,HTTPS_SERVER))?'SSL':'NONSSL';

 

Warning: session_start(): Cannot send session cookie - headers already sent by (output started at / // / // /application_top.php on line 45)

in in /home/includes/functions/sessions.php on line 97

 

line 97: return session_start();

Posted
Does anyone know what this means? can I just comment this out or does it have to do with the SSL?

 

Warning: eregi(): REG_EMPTY application_top.php on line 45

 

line 45: $request_type=(eregi($HTTP_HOST,HTTPS_SERVER))?'SSL':'NONSSL';

 

Warning: session_start(): Cannot send session cookie - headers already sent by (output started at / // / // /application_top.php on line 45)

in in /home/includes/functions/sessions.php on line 97

 

line 97: return session_start();

 

 

Is this an old oscommerce that i'm not familiar with?

 

Try changing that line (45) for ..

 

$request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';

Posted

THANK YOU SO MUCH that works now I think it is an older version, I'm not sure how to update it I guess I should but, anyway thank you for taking time to answer my post I really apprciate it

 

 

 

Is this an old oscommerce that i'm not familiar with?

 

Try changing that line (45) for ..

 

$request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...