I am trying to install with no success.
I using Windows Vista 64-bit and wamp2 as my local server.
Is there anyone who could help me?
This is a discussion on How can I install osCMAX on my windows vista 64-bit and with my wamp2? within the osCommerce 2.2 Installation Help forums, part of the osCommerce 2.2 Forums category; I am trying to install with no success. I using Windows Vista 64-bit and wamp2 as my local server. Is ...
I am trying to install with no success.
I using Windows Vista 64-bit and wamp2 as my local server.
Is there anyone who could help me?
Have you read the wiki?
http://wiki.oscdox.com/local_installation
regards,
pgmarshall
_______________________________
Yes I 've read the wiki, follow all steps, view the succesfully install and configure message, but when I try to login using the admin button it does not recognize any username and password. Error message: wrong username or password, when I click "forgot password" it does not recognize the email or the username. It seems that username and passwords were not saved during installation/configuration phase. Is there any solution for this problem?
Try this ... http://wiki.oscdox.com/reset_password
Regards,
pgmarshall
_______________________________
Great, it works for the admin page,THANK YOU.
But for the catalog page I cannot open and I have this message:
1364 - Field 'country_code' doesn't have a default value
insert into whos_online (customer_id, full_name, session_id, ip_address, hostname, time_entry, time_last_click, last_page_url, http_referer, user_agent) values ('0', 'Guest', '9mo7hq72sgv3empnao04tqat75', '127.0.0.1', 'pdacruz-PC', '1282645712', '1282645712', '/MinhaLojaVirtual/catalog/index.php', 'http://localhost/MinhaLojaVirtual/catalog/install/install.php?step=4', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.Gecko/20100722 Firefox/3.6.8 GTB7.1 (.NET CLR 3.5.30729) FBSMTWB')
[TEP STOP]
Can you help me?
Hmmm! Sounds like an odd one!
Can't think why this would be failing but given you had issues with the password going into the dbase correctly might I suggest a quick rebuild of the whos_online table.
Open phpMyAdmin by clicking on the WAMP2 icon in your system tray ...
Select your database
Select SQL from the top tabs
Run the following script from the install.php which should drop and recreate the whos_online table.
Regards,DROP TABLE IF EXISTS whos_online;
CREATE TABLE whos_online (
customer_id int,
full_name varchar(64) NOT NULL,
session_id varchar(128) NOT NULL,
ip_address varchar(15) NOT NULL,
hostname VARCHAR(255) NOT NULL,
country_code varchar(2) NOT NULL,
country_name VARCHAR(64) NOT NULL,
region_name VARCHAR(64) NOT NULL,
city VARCHAR(64) NOT NULL,
latitude FLOAT NOT NULL,
longitude FLOAT NOT NULL,
time_entry varchar(14) NOT NULL,
time_last_click varchar(14) NOT NULL,
last_page_url text NOT NULL,
http_referer VARCHAR(255) NOT NULL,
user_agent VARCHAR(255) NOT NULL,
KEY idx_ip_address (ip_address),
KEY idx_country_code (country_code)
);
pgmarshall
_______________________________
Bookmarks