Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Log off when trying to access my account/basket


MaTrIx_

Recommended Posts

Ok, it seems that my research has not returned any results so I'm going to ask and maybe get an answer or be redirected to a section that I've missed.

 

Ok, my problem, I've fixed everything with the login problem that could not be made by changing the https to http (fair enough). But it seems that now, although I can login, when I press the "My account" (supposingly I will see my details and possible be able to change them) it disconnects automatically (asks again password) and even if I provide it again, it won't do anything, just returns me to the main index (Welcome Guest and blah blah blah). The excactly same thing happens when I'm actually "buying" and then going to "My Basket". It does the excactly something as above. (Although I have noticed that sometimes it shows items in my basket but still when I'm trying to see them, it asks to log in and when doing so, nothing happens again)

 

I'm providing the file configure.php as it was and as I made it in order to make it work until here::

Was:

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://rcmodellingshop.gr'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://rcmodellingshop.gr'); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'rcmodellingshop.gr');

define('HTTPS_COOKIE_DOMAIN', rcmodellingshop.gr');

define('HTTP_COOKIE_PATH', '/e-shop/');

define('HTTPS_COOKIE_PATH', '/e-shop/');

define('DIR_WS_HTTP_CATALOG', '/e-shop/');

define('DIR_WS_HTTPS_CATALOG', '/e-shop/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', '/home/kostas/public_html/e-shop/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Is:

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.rcmodellingshop.gr'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.rcmodellingshop.gr'); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', false); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.rcmodellingshop.gr');

define('HTTPS_COOKIE_DOMAIN', 'www.rcmodellingshop.gr');

define('HTTP_COOKIE_PATH', '/e-shop/');

define('HTTPS_COOKIE_PATH', '/e-shop/');

define('DIR_WS_HTTP_CATALOG', '/e-shop/');

define('DIR_WS_HTTPS_CATALOG', '/e-shop/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', '/home/kostas/public_html/e-shop/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

I hope these help and someone will be able to help me so my problm will be resolved and fortunatelly if another one is found it will be a minor one as the others :'(

Link to comment
Share on other sites

Ok, it seems that my research has not returned any results so I'm going to ask and maybe get an answer or be redirected to a section that I've missed.

 

Ok, my problem, I've fixed everything with the login problem that could not be made by changing the https to http (fair enough). But it seems that now, although I can login, when I press the "My account" (supposingly I will see my details and possible be able to change them) it disconnects automatically (asks again password) and even if I provide it again, it won't do anything, just returns me to the main index (Welcome Guest and blah blah blah). The excactly same thing happens when I'm actually "buying" and then going to "My Basket". It does the excactly something as above. (Although I have noticed that sometimes it shows items in my basket but still when I'm trying to see them, it asks to log in and when doing so, nothing happens again)

 

I'm providing the file configure.php as it was and as I made it in order to make it work until here::

Was:

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

  define('HTTP_SERVER', 'http://rcmodellingshop.gr'); // eg, http://localhost - should not be empty for productive servers

  define('HTTPS_SERVER', 'https://rcmodellingshop.gr'); // eg, https://localhost - should not be empty for productive servers

  define('ENABLE_SSL', true); // secure webserver for checkout procedure?

  define('HTTP_COOKIE_DOMAIN', 'rcmodellingshop.gr');

  define('HTTPS_COOKIE_DOMAIN', rcmodellingshop.gr');

  define('HTTP_COOKIE_PATH', '/e-shop/');

  define('HTTPS_COOKIE_PATH', '/e-shop/');

  define('DIR_WS_HTTP_CATALOG', '/e-shop/');

  define('DIR_WS_HTTPS_CATALOG', '/e-shop/');

  define('DIR_WS_IMAGES', 'images/');

  define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

  define('DIR_WS_INCLUDES', 'includes/');

  define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

  define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

  define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

  define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

  define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

  define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

  define('DIR_FS_CATALOG', '/home/kostas/public_html/e-shop/');

  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Is:

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

  define('HTTP_SERVER', 'http://www.rcmodellingshop.gr'); // eg, http://localhost - should not be empty for productive servers

  define('HTTPS_SERVER', 'https://www.rcmodellingshop.gr'); // eg, https://localhost - should not be empty for productive servers

  define('ENABLE_SSL', false); // secure webserver for checkout procedure?

  define('HTTP_COOKIE_DOMAIN', 'www.rcmodellingshop.gr');

  define('HTTPS_COOKIE_DOMAIN', 'www.rcmodellingshop.gr');

  define('HTTP_COOKIE_PATH', '/e-shop/');

  define('HTTPS_COOKIE_PATH', '/e-shop/');

  define('DIR_WS_HTTP_CATALOG', '/e-shop/');

  define('DIR_WS_HTTPS_CATALOG', '/e-shop/');

  define('DIR_WS_IMAGES', 'images/');

  define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

  define('DIR_WS_INCLUDES', 'includes/');

  define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

  define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

  define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

  define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

  define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

  define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

  define('DIR_FS_CATALOG', '/home/kostas/public_html/e-shop/');

  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

I hope these help and someone will be able to help me so my problm will be resolved and fortunatelly if another one is found it will be a minor one as the others  :'(

 

 

In the admin panel look under Configuration/Sessions and make sure that

'Check IP Address' is set to False....

 

That should help...

 

Mike

Link to comment
Share on other sites

In the admin panel look under    Configuration/Sessions  and make sure that

'Check IP Address' is set to False....

 

That should help...

 

Mike

 

 

Mike thks for even suggesting but this does not work (had already tried it and tried it again). I haven't mentioned that I have also installed Greek language and I do not know if when installing a new language something may be meessed up and needs to be changed. If I remember correclty it used to connect without any problem but I had never tried to buy anything before so as to confirm if the problem existed or not.

I don't know if the new information may help or not but... I would really appreciate it if someone can suggests or even give the solution :)

Thanks guys and gils in advance :)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...