fatmcgav Posted April 7, 2005 Posted April 7, 2005 Hey there, I just switched my site from my testing server to the production server in prep of going live, and on testing found that the login is no longer working. The login box just refreshes the page, and the login.php page just goes back to the index page. I've had a quick search, but have found no definitive answers. On changing the files over, i ran the config part of the install again, to make sure everything was config'd correctly. My Config file now looks like this: // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', http://'www.mickie.fatmcgav.co.uk'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', 'false'); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'mickie.fatmcgav.co.uk'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', ''); 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/fatmcgav/public_html/mickie/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); You can find my site here. This is very strange, and also very annoying, so any help is appreicated. Cheers Fatmcgav
WiseWombat Posted April 7, 2005 Posted April 7, 2005 Anybody got any ideas??? <{POST_SNAPBACK}> I have found that I must disable the firewall and log in on localhost before I can access the admin thus taking the server of line as well as ( PS CLOSING NETWORK CONNECTION ) :D I am unable to log in the the admin with the firewall active try disabling you firewall if you one. ( WARNING ) I think I know what Im talking about. BACK UP BACK UP BACK UP BACK UP
fatmcgav Posted April 8, 2005 Author Posted April 8, 2005 I have found that I must disable the firewall and log in on localhost before I can access the admin thus taking the server of line as well as ( PS CLOSING NETWORK CONNECTION ) :D I am unable to log in the the admin with the firewall active try disabling you firewall if you one. <{POST_SNAPBACK}> This is the customer login that isnt working, on a remote webserver, so i dont see wat diff my firewall is guna make. Anybody else?
fatmcgav Posted April 11, 2005 Author Posted April 11, 2005 This is the customer login that isnt working, on a remote webserver, so i dont see wat diff my firewall is guna make. Anybody else? <{POST_SNAPBACK}> Hi there, This problem is still here, i've tried everything i can think of, and nothing seems to work. Any ideas are greatly appreicated. Cheers Fatmcgav
cjohnson_uk Posted April 11, 2005 Posted April 11, 2005 Hi there, This problem is still here, i've tried everything i can think of, and nothing seems to work. Any ideas are greatly appreicated. Cheers Fatmcgav <{POST_SNAPBACK}> If you copied the files across could it be a file/directory permissions issue? I've got the same thing happening! If you find a soln can you let me know please? Chris
Simplyeasier Posted April 11, 2005 Posted April 11, 2005 Hey there, I just switched my site from my testing server to the production server in prep of going live, and on testing found that the login is no longer working. The login box just refreshes the page, and the login.php page just goes back to the index page. I've had a quick search, but have found no definitive answers. On changing the files over, i ran the config part of the install again, to make sure everything was config'd correctly. My Config file now looks like this: // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) ?define('HTTP_SERVER', http://'www.mickie.fatmcgav.co.uk'); // eg, http://localhost - should not be empty for productive servers ?define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers ?define('ENABLE_SSL', 'false'); // secure webserver for checkout procedure? ?define('HTTP_COOKIE_DOMAIN', 'mickie.fatmcgav.co.uk'); ?define('HTTPS_COOKIE_DOMAIN', ''); ?define('HTTP_COOKIE_PATH', '/'); ?define('HTTPS_COOKIE_PATH', ''); ?define('DIR_WS_HTTP_CATALOG', '/'); ?define('DIR_WS_HTTPS_CATALOG', ''); ?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/fatmcgav/public_html/mickie/'); ?define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); ?define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); You can find my site here. This is very strange, and also very annoying, so any help is appreicated. Cheers Fatmcgav <{POST_SNAPBACK}> This does not look right define('HTTP_SERVER', http://'www.mickie.fatmcgav.co.uk'); Quotes in the wrong place should be around http Charles A kite flies highest AGAINST the wind ! "Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well preserved body, but rather to skid in sideways, a lover in one hand, martini in the other, body thoroughly used up, totally worn out and screaming ~ WOO HOO!! What a ride!"
cjohnson_uk Posted April 11, 2005 Posted April 11, 2005 If you copied the files across could it be a file/directory permissions issue? I've got the same thing happening! If you find a soln can you let me know please? Chris <{POST_SNAPBACK}> Update: I've disabled https by removing all references to it from the /includes/configure.php file and it all works fine! Now I need to find out why! Chris
fatmcgav Posted April 11, 2005 Author Posted April 11, 2005 This does not look right define('HTTP_SERVER', http://'www.mickie.fatmcgav.co.uk'); Quotes in the wrong place should be around http Charles <{POST_SNAPBACK}> Yeh, i noticed and corrected that aswell, and it doesnt work. From me playing arround, it appears that it's almost like the login function has dissapeared - if i enter no email, incorrect email, correct email but no pass, and correct email and pass, they all forward to the index.php page without validating or anything. Any ideas ppl? Cheers Fatmcgav
♥Vger Posted April 11, 2005 Posted April 11, 2005 This is a double post - you already have the same thread running in Installation & Configuration. It is against forum rules and wastes other people's time. Vger
fatmcgav Posted April 11, 2005 Author Posted April 11, 2005 This is a double post - you already have the same thread running in Installation & Configuration. It is against forum rules and wastes other people's time. Vger <{POST_SNAPBACK}> Yeh, but i posted the other one when this one was dead, and i was getting desperate. I'll delete this one, and keep using the other - got more support from that un anyways :) Cheers Fatmcgav
Recommended Posts
Archived
This topic is now archived and is closed to further replies.