Guest Posted June 23, 2006 Share Posted June 23, 2006 Hi all I am new to OSC and need a little help. I installed the contribution Secure Admin Login - Logout 1.4 by irfanmoosani 27 May 2006. I followed all the instructions and now when I try to go to my admin page I get the Login page and I enter my username and password hit Login and then it just redirects me back to LoginAction.php. I have read most of the previous post but none have helped. I hope some one can shed some light. Link to comment Share on other sites More sharing options...
Guest Posted June 24, 2006 Share Posted June 24, 2006 Hi all I have re installed the contrib. but i still get the same results. Can anyone help.... In some of the other post it asked about Register Globals and i have checked and it is on on my server. Link to comment Share on other sites More sharing options...
MJP Posted June 24, 2006 Share Posted June 24, 2006 Hi all I have re installed the contrib. but i still get the same results. Can anyone help.... In some of the other post it asked about Register Globals and i have checked and it is on on my server. I have the same problem as you with this contrib. Glad it's not just me! Link to comment Share on other sites More sharing options...
Guest Posted June 25, 2006 Share Posted June 25, 2006 I have the same problem as you with this contrib. Glad it's not just me! Anybody else have this problem and found a fix for it Link to comment Share on other sites More sharing options...
usernamenone Posted June 25, 2006 Share Posted June 25, 2006 Anybody else have this problem and found a fix for it the contrib works flawlessly, I installed it. I guess the reason you aren't getting any answers is we don't know what you have done with the install as you have not said. If you are getting redirected back that means you have not answered your login information correctly. did you add you user name and password before you installed to your data base? If you are still having problems you will need to reread the instructions and reinstall Link to comment Share on other sites More sharing options...
Guest Posted June 26, 2006 Share Posted June 26, 2006 the contrib works flawlessly, I installed it. I guess the reason you aren't getting any answers is we don't know what you have done with the install as you have not said. If you are getting redirected back that means you have not answered your login information correctly. did you add you user name and password before you installed to your data base? If you are still having problems you will need to reread the instructions and reinstall Ok just to make sure I did not miss a step i went a head and reinstalled OSC and started from scratch. I went ahead and followed the following instructions below for the Secure Login. I followed them exactly and I am still having the same issue were once i put my username and password i get returned back to the login screen. Can anyone shed some light. Installation instructions: 1. Edit the "secure_administrator.sql" file with the usernames and passwords you want to make available The instructions for editing the file are at the bottom of the page. 2. Login to you PHPMyAdmin and paste the code into your SQL window to install the table structure and data. 3. Add these 4 files into your admin folder, you may want to add a company logo to the login and logoff pages before doing so. /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php -------------------------------------------------------------------------- // suggested by Irfan Moosani 4. Edit the following file: /admin/LoginAction.php At Around line 6 you will find the following code: // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); just after that paste the following code $psName=$_POST['psName']; $psPassword=$_POST['psPassword']; ---------------------------------------------------------------- 5. Edit the following file: /admin/includes/application_top.php Around line 60 you will find the following code: // include the database functions require(DIR_WS_FUNCTIONS . 'database.php'); // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); Now add in these 2 lines just below that: // Define the admin login module require('incSession.php'); 6. I added the log off link in the upper right corner of the Admin Panel. There are 2 Administration links in the gray bar across the top, one on the left side and another on the right. Since it is typical to have Log Off in the upper right, I put it there. Edit the following file: /admin/includes/header.php Around linke 24 you will find the code for the links on the right side of the gray bar. Mine now looks like this: <td class="headerBarContent" align="right"><?php echo '<a href="http://www.oscommerce.com" class="headerLink">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_catalog_href_link() . '" class="headerLink">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '" class="headerLink">' . HEADER_LOGOFF . '</a>'; ?> </td> -------------------------------------------------------------------- // suggested by Irfan Moosani //If you want to place the logoff button on the index page as well then 7. In the file admin/index.php Around line 101 you will find the following code: <td align="right" class="text" nowrap><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . HEADER_TITLE_ADMINISTRATION . '</a> | <a href="' . tep_catalog_href_link() . '">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="http://www.oscommerce.com" target="_blank">' . HEADER_TITLE_SUPPORT_SITE . '</a>'; ?> </td> replace the code with <td align="right" class="text" nowrap><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . HEADER_TITLE_ADMINISTRATION . '</a> | <a href="' . tep_catalog_href_link() . '">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="http://www.oscommerce.com" target="_blank">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '" class="headerLink">' . HEADER_LOGOFF . '</a>'; ?> </td> this will dispaly the log off link on the index page as well ------------------------------------------------------------------ 8. Add the define filename fields used for the login and logoff files. Edit: /admin/includes/filenames.php Add these 2 lines to the code define('FILENAME_LOGIN', 'login.php'); define('FILENAME_LOGOFF', 'logoff.php'); 9. Add the define text fields used for the login and logoff files. Edit: /admin/includes/languages/english.php Around line 50 add this line define('HEADER_LOGOFF', 'Log Off'); -------------------------------------------------------------- This will add all the security you want and need for your control panel. I took out my .htaccess files once I had all of this in place and working. Link to comment Share on other sites More sharing options...
usernamenone Posted June 26, 2006 Share Posted June 26, 2006 you also need to change the sql file -- phpMyAdmin SQL Dump -- version 2.6.0-pl3 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Mar 22, 2006 at 08:27 PM -- Server version: 3.23.56 -- PHP Version: 4.3.10 -- -- Database: `oscommerce` -- -- -------------------------------------------------------- -- -- Table structure for table `administrator` -- CREATE TABLE `administrator` ( `ID` int(10) unsigned NOT NULL auto_increment, `sName` varchar(255) NOT NULL default '', `sPassword` varchar(255) NOT NULL default '', `sGUID` varchar(32) default NULL, `sData` text, PRIMARY KEY (`ID`) ) TYPE=MyISAM AUTO_INCREMENT=3 ; -- -- Dumping data for table `administrator` -- INSERT INTO `administrator` VALUES (1, 'username1', password('your_password1'), NULL, NULL); INSERT INTO `administrator` VALUES (2, 'username2', password('your_password2'), NULL, NULL); -- NOTE: Please make changes in the INSERT INTO lines above before loading into PHPMyAdmin -- Replace username1 and username2 with your usernames. Leave the single quotes around 'username'. -- Replace your_password1 and your_password2 with your passwords. Leave the single quotes around 'your_password'. -- Note the use of MySql's password() function. This is a one-way function so -- you will not be able to "retrieve" the user's password. ~~~~~~~~~~~~~~~~~ and then install it in your database. Link to comment Share on other sites More sharing options...
usernamenone Posted June 26, 2006 Share Posted June 26, 2006 this is all that needs changed. INSERT INTO `administrator` VALUES (1, 'username1', password('your_password1'), NULL, NULL); INSERT INTO `administrator` VALUES (2, 'username2', password('your_password2'), NULL, NULL); If you don't know how to install in your database let me know and I will send you the instructions. Link to comment Share on other sites More sharing options...
Guest Posted June 27, 2006 Share Posted June 27, 2006 this is all that needs changed. INSERT INTO `administrator` VALUES (1, 'username1', password('your_password1'), NULL, NULL); INSERT INTO `administrator` VALUES (2, 'username2', password('your_password2'), NULL, NULL); If you don't know how to install in your database let me know and I will send you the instructions. I went a head and ran the SQL code on PHPAdmin and table was created and user account created but I am still receiving the same thing. It still goes back into the LoginAction.php. Link to comment Share on other sites More sharing options...
Guest Posted June 27, 2006 Share Posted June 27, 2006 I went a head and ran the SQL code on PHPAdmin and table was created and user account created but I am still receiving the same thing. It still goes back into the LoginAction.php. Just to make sure that everything was ok in phpadmin i went in and checked the administrator table and the sName is fine but sPassword looks like its encrypted. Should i go in and change it or leave it as is thanks ahead of time for all your help Link to comment Share on other sites More sharing options...
usernamenone Posted June 27, 2006 Share Posted June 27, 2006 Just to make sure that everything was ok in phpadmin i went in and checked the administrator table and the sName is fine but sPassword looks like its encrypted. Should i go in and change it or leave it as is thanks ahead of time for all your help Did you change the password in the sql file before you installed into phpmyadmin? You can try username1 for the user name and your_password1 for the password to get into your admin if you did not. If you have changed the user name and password and you still can not get into admin you have either messed around with catalog/admin/includes/configure.php file or you have the wrong information. around line 21 you need to specify where your admin is define('DIR_WS_ADMIN', '/catalog/admin/'); or where ever your admin is. Did you access the admin area before you installed the contrib? Let me know how it goes. Link to comment Share on other sites More sharing options...
usernamenone Posted June 27, 2006 Share Posted June 27, 2006 Did you change the password in the sql file before you installed into phpmyadmin? You can try username1 for the user name and your_password1 for the password to get into your admin if you did not. If you have changed the user name and password and you still can not get into admin you have either messed around with catalog/admin/includes/configure.php file or you have the wrong information.around line 21 you need to specify where your admin is define('DIR_WS_ADMIN', '/catalog/admin/'); or where ever your admin is. Did you access the admin area before you installed the contrib? Let me know how it goes. Link to comment Share on other sites More sharing options...
usernamenone Posted June 27, 2006 Share Posted June 27, 2006 sorry don't know what I did to add twice, one more thing are you trying to use the user name and password that you created in the new sql file and installed in phpmyadmin? Link to comment Share on other sites More sharing options...
Guest Posted June 27, 2006 Share Posted June 27, 2006 sorry don't know what I did to add twice, one more thing are you trying to use the user name and password that you created in the new sql file and installed in phpmyadmin? I was able to get into my admin folder prior to installing the contrib. and yes i am using the new username/password that i setup in my sql file Link to comment Share on other sites More sharing options...
usernamenone Posted June 27, 2006 Share Posted June 27, 2006 I was able to get into my admin folder prior to installing the contrib. and yes i am using the new username/password that i setup in my sql file Did you check both your configure files to make sure there are correctly pointing to your admin? Link to comment Share on other sites More sharing options...
Guest Posted June 27, 2006 Share Posted June 27, 2006 Did you check both your configure files to make sure there are correctly pointing to your admin? I checked on both /admin/includes/configure.php which contains define('DIR_WS_ADMIN', '/admin/'); // absolute path required and /includes/configure.php which does not contain define('DIR_WS_ADMIN', '/admin/'); // absolute path required thanks in advance FYI I have installed OSC on www.websitename.com I do not have www.websitename.com/catalog/admin Link to comment Share on other sites More sharing options...
usernamenone Posted June 28, 2006 Share Posted June 28, 2006 you uploaded these files, all 4 right? /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php then you Edited : /admin/includes/application_top.php Around line 60 you will find the following code: // include the database functions require(DIR_WS_FUNCTIONS . 'database.php'); // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); and under that you added these 2 lines just below that: // Define the admin login module require('incSession.php'); Right? Edit: /admin/includes/filenames.php Add these 2 lines to the code define('FILENAME_LOGIN', 'login.php'); define('FILENAME_LOGOFF', 'logoff.php'); Right? Then Edit: /admin/includes/languages/english.php Around line 50 add this line define('HEADER_LOGOFF', 'Log Off'); Right? If you have done all this and you still can not get into admin you will need to delete the 4 php files and reverse the changes in the other files and see if you can get into admin unsecured. There is only one other option that I can think of, your ssl. How is it set for your site? Link to comment Share on other sites More sharing options...
Guest Posted June 28, 2006 Share Posted June 28, 2006 you uploaded these files, all 4 right? /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php then you Edited : /admin/includes/application_top.php Around line 60 you will find the following code: // include the database functions require(DIR_WS_FUNCTIONS . 'database.php'); // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); and under that you added these 2 lines just below that: // Define the admin login module require('incSession.php'); Right? Edit: /admin/includes/filenames.php Add these 2 lines to the code define('FILENAME_LOGIN', 'login.php'); define('FILENAME_LOGOFF', 'logoff.php'); Right? Then Edit: /admin/includes/languages/english.php Around line 50 add this line define('HEADER_LOGOFF', 'Log Off'); Right? If you have done all this and you still can not get into admin you will need to delete the 4 php files and reverse the changes in the other files and see if you can get into admin unsecured. There is only one other option that I can think of, your ssl. How is it set for your site? Ok these are the steps i had taken before. And after all these steps i had to revert all the changes and i was able to get into the admin screen. As far as ssl i have not set it up yet. i edited the "secure_administrator.sql" CREATE TABLE `administrator` ( `ID` int(10) unsigned NOT NULL auto_increment, `sName` varchar(255) NOT NULL default '', `sPassword` varchar(255) NOT NULL default '', `sGUID` varchar(32) default NULL, `sData` text, PRIMARY KEY (`ID`) ) TYPE=MyISAM AUTO_INCREMENT=3 ; INSERT INTO `administrator` VALUES (1, 'myusernamehere1', password('mypwhere1'), NULL, NULL); INSERT INTO `administrator` VALUES (2, 'myusernamehere2', password('mypwhere2'), NULL, NULL); then I pasted it all into SQL window to install and had no errors. ok I uploaded these files /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php Edited the following file: /admin/LoginAction.php At Around line 6 you will found the following code: // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); just after that i pasted the following code $psName=$_POST['psName']; $psPassword=$_POST['psPassword']; ok then I Edited : /admin/includes/application_top.php Around line 60 you will find the following code: // include the database functions require(DIR_WS_FUNCTIONS . 'database.php'); // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); and under that you added these 2 lines just below that: I added these 2 lines on lines 62 and 63 // Define the admin login module require('incSession.php'); OK then i edited: /admin/includes/header.php around line 24 i replaced my code from <td class="headerBarContent" align="right"><?php echo '<a href="http://www.oscommerce.com" class="headerLink">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_catalog_href_link() . '" class="headerLink">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="' . tep_href_link(FILENAME_DEFAULT, '', 'NONSSL') . '" class="headerLink">' . HEADER_TITLE_ADMINISTRATION . '</a>'; ?> </td> to this <td class="headerBarContent" align="right"><?php echo '<a href="http://www.oscommerce.com" class="headerLink">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_catalog_href_link() . '" class="headerLink">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '" class="headerLink">' . HEADER_LOGOFF . '</a>'; ?> </td> ok then i edited: admin/index.php Around line 101 i found the following code: <td align="right" class="text" nowrap><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . HEADER_TITLE_ADMINISTRATION . '</a> | <a href="' . tep_catalog_href_link() . '">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="http://www.oscommerce.com" target="_blank">' . HEADER_TITLE_SUPPORT_SITE . '</a>'; ?> </td> and replaced the code with <td align="right" class="text" nowrap><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . HEADER_TITLE_ADMINISTRATION . '</a> | <a href="' . tep_catalog_href_link() . '">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="http://www.oscommerce.com" target="_blank">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '" class="headerLink">' . HEADER_LOGOFF . '</a>'; ?> </td> ok then i Edited: /admin/includes/filenames.php and added these 2 lines to the code at the begining on lines 14 and 15 define('FILENAME_LOGIN', 'login.php'); define('FILENAME_LOGOFF', 'logoff.php'); ok Then i edited: /admin/includes/languages/english.php then at line 51 and 52 add this line // added for security define('HEADER_LOGOFF', 'Log Off'); ok If i have missed a step please let me know but after doing all these changes i was still unable to login. Like i said above i was unable to login it would kick me back to LoginAction.php. I removed everything and I am able to get to my admin module. thanks again Link to comment Share on other sites More sharing options...
usernamenone Posted June 29, 2006 Share Posted June 29, 2006 Try the next contrib down from the one you used http://www.oscommerce.com/community/contri...ch,secure+admin I thought I installed to top one but it isn't, anyway the codes below, You just need to add your passwords and usernames in the sql and install in the phpmyadmin unless you did not delete them. add the sql into phpmyadmin. Add these 4 files /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php Edit the following file: /admin/includes/application_top.php /admin/includes/header.php /admin/includes/filenames.php /admin/includes/languages/english.php ________________________________________________________________________________ ______ ---------------------------------------------------------- Installation instructions: 1. Edit the "secure_administrator.sql" file with the usernames and passwords you want to make available The instructions for editing the file are at the bottom of the page. 2. Login to you PHPMyAdmin and paste the code into your SQL window to install the table structure and data. 3. Add these 4 files into your admin folder, you may want to add a company logo to the login and logoff pages before doing so. /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php 4. Edit the following file: /admin/includes/application_top.php Around line 60 you will find the following code: // include the database functions require(DIR_WS_FUNCTIONS . 'database.php'); // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); Now add in these 2 lines just below that: // Define the admin login module require('incSession.php'); 5. I added the log off link in the upper right corner of the Admin Panel. There are 2 Administration links in the gray bar across the top, one on the left side and another on the right. Since it is typical to have Log Off in the upper right, I put it there. Edit the following file: /admin/includes/header.php Around linke 24 you will find the code for the links on the right side of the gray bar. Mine now looks like this: <td class="headerBarContent" align="right"><?php echo '<a href="http://www.oscommerce.com" class="headerLink">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_catalog_href_link() . '" class="headerLink">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '" class="headerLink">' . HEADER_LOGOFF . '</a>'; ?> </td> 6. Add the define filename fields used for the login and logoff files. Edit: /admin/includes/filenames.php Add these 2 lines to the code define('FILENAME_LOGIN', 'login.php'); define('FILENAME_LOGOFF', 'logoff.php'); 7. Add the define text fields used for the login and logoff files. Edit: /admin/includes/languages/english.php Around line 50 add this line define('HEADER_LOGOFF', 'Log Off'); -------------------------------------------------------------- This will add all the security you want and need for your control panel. I took out my .htaccess files once I had all of this in place and working. Link to comment Share on other sites More sharing options...
Guest Posted June 29, 2006 Share Posted June 29, 2006 Try the next contrib down from the one you used http://www.oscommerce.com/community/contri...ch,secure+admin I thought I installed to top one but it isn't, anyway the codes below, You just need to add your passwords and usernames in the sql and install in the phpmyadmin unless you did not delete them. add the sql into phpmyadmin. Add these 4 files /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php Edit the following file: /admin/includes/application_top.php /admin/includes/header.php /admin/includes/filenames.php /admin/includes/languages/english.php ________________________________________________________________________________ ______ ---------------------------------------------------------- Installation instructions: 1. Edit the "secure_administrator.sql" file with the usernames and passwords you want to make available The instructions for editing the file are at the bottom of the page. 2. Login to you PHPMyAdmin and paste the code into your SQL window to install the table structure and data. 3. Add these 4 files into your admin folder, you may want to add a company logo to the login and logoff pages before doing so. /admin/incSession.php /admin/login.php /admin/LoginAction.php /admin/logoff.php 4. Edit the following file: /admin/includes/application_top.php Around line 60 you will find the following code: // include the database functions require(DIR_WS_FUNCTIONS . 'database.php'); // make a connection to the database... now tep_db_connect() or die('Unable to connect to database server!'); Now add in these 2 lines just below that: // Define the admin login module require('incSession.php'); 5. I added the log off link in the upper right corner of the Admin Panel. There are 2 Administration links in the gray bar across the top, one on the left side and another on the right. Since it is typical to have Log Off in the upper right, I put it there. Edit the following file: /admin/includes/header.php Around linke 24 you will find the code for the links on the right side of the gray bar. Mine now looks like this: <td class="headerBarContent" align="right"><?php echo '<a href="http://www.oscommerce.com" class="headerLink">' . HEADER_TITLE_SUPPORT_SITE . '</a> | <a href="' . tep_catalog_href_link() . '" class="headerLink">' . HEADER_TITLE_ONLINE_CATALOG . '</a> | <a href="' . tep_href_link(FILENAME_LOGOFF, '', 'SSL') . '" class="headerLink">' . HEADER_LOGOFF . '</a>'; ?> </td> 6. Add the define filename fields used for the login and logoff files. Edit: /admin/includes/filenames.php Add these 2 lines to the code define('FILENAME_LOGIN', 'login.php'); define('FILENAME_LOGOFF', 'logoff.php'); 7. Add the define text fields used for the login and logoff files. Edit: /admin/includes/languages/english.php Around line 50 add this line define('HEADER_LOGOFF', 'Log Off'); -------------------------------------------------------------- This will add all the security you want and need for your control panel. I took out my .htaccess files once I had all of this in place and working. usernameone i must be doing something wrong because it is still giving me the same problem. now just to clarify do i need the register_globals_v1.4a. I dont believe so since on my server i have register globals enabled Link to comment Share on other sites More sharing options...
usernamenone Posted June 29, 2006 Share Posted June 29, 2006 I just don't know. When you get redirected back look in the address bar and see what file it tries to hook up to before going back. If you use the one below you will need to delete the sql folder you installed for the earlier install. You could also post in the contrib forum maybe the authors are hanging out in there. http://www.oscommerce.com/forums/index.php?showforum=7 If that fails try the other contrib. there is instructions for unix and windows users do you know which your server has you on? If not find out. http://www.oscommerce.com/community/contri...ch,secure+admin good luck and let me know how it works out for you. Link to comment Share on other sites More sharing options...
Guest Posted June 29, 2006 Share Posted June 29, 2006 I just don't know. When you get redirected back look in the address bar and see what file it tries to hook up to before going back. If you use the one below you will need to delete the sql folder you installed for the earlier install. You could also post in the contrib forum maybe the authors are hanging out in there. http://www.oscommerce.com/forums/index.php?showforum=7If that fails try the other contrib. there is instructions for unix and windows users do you know which your server has you on? If not find out. http://www.oscommerce.com/community/contri...ch,secure+admin good luck and let me know how it works out for you. I am on a windows server but for the contrib. what date did you use. i have used 27 May 2006 which is the first one i tried then i used the one directly below that 20 Apr 2006 version 1.3. I will try the contrib forums and see what i find out there . Thanks for all your help Link to comment Share on other sites More sharing options...
ws2sc Posted June 30, 2006 Share Posted June 30, 2006 wesellgoods, read my post here. http://www.oscommerce.com/forums/index.php?showtopic=216392 Are you using Opera browser to "login & get no where"? If not, then we don't have exactly the same problem. Link to comment Share on other sites More sharing options...
usernamenone Posted June 30, 2006 Share Posted June 30, 2006 Are you not with Godaddy? You should have Godaddy switch you to Linux. You are apt to come up against more problems on A Windows operating system. Link to comment Share on other sites More sharing options...
ws2sc Posted June 30, 2006 Share Posted June 30, 2006 Are you not with Godaddy? You should have Godaddy switch you to Linux. You are apt to come up against more problems on A Windows operating system. wesellgoods has stated they are on Windows. I, myself, though are on Godaddy Linux server & still couldn't get anything. I would get directed to a blank index page after login. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.