For awhile I have been running yetishare 4.0
on march 7th i finally upgraded yetishare 4.0 to 4.2 - im still on 4.2 now
I don't have a log of what I did to upgrade to 4.2, but i do have the instructions that I followed
but anyway since ive been on 4.2, anyone who logs in to the site, their information does not post to login_success
Example: I registered a brand new account on a seperate browser/incognito, i log in, and that user does not show up in login_success at all
The login_success table does show entries, but its the same 4/5 logins.. the same 4/5 people.. and they all seem to be from germany, italy or france..
when I run
select distinct country_code from mydb.login_success where date_Added like '2016-03-2%';"
I get
+--------------+
| country_code |
+--------------+
| DE |
| IT |
| FR |
+--------------+
select distinct country_code from mydb.login_success where date_Added like '2016-03-1%';
+--------------+
| country_code |
+--------------+
| DE |
| FR |
| IT |
select distinct user_id country_code from mydb.login_success where date_Added like '2016-03-1%';
+--------------+
| country_code |
+--------------+
| 4249 |
| 14081 |
| 11754 |
| 13249 |
| 13640 |
| 12323 |
+--------------+
select distinct user_id country_code from mydb.login_success where date_Added like '2016-03-2%';
+--------------+
| country_code |
+--------------+
| 4249 |
| 12890 |
| 11754 |
| 13249 |
| 14081 |
| 12323 |
+--------------+
I upgraded 2016-03-07 so ever since then, its like the same people that are showing up in login_success thats it
Does anyone have any ideas on why or what i could try to figure it out? Maybe some way to debug or, get the value or info ?
on march 7th i finally upgraded yetishare 4.0 to 4.2 - im still on 4.2 now
I don't have a log of what I did to upgrade to 4.2, but i do have the instructions that I followed
and then i upgraded the pluginsi had went into
cd 4.0.1/install/resources/upgrade_sql_statements
mysql mydb < v4.0\ -\ v4.0.1.sql
so the 4.0 to 4.0.1 sql i ran was from a 4.0.1. zip
then i did
cd zips/4.1.1/install/resources/upgrade_sql_statements
mysql mydb < v4.0.1\ -\ v4.1.sql
mysql mydb < "v4.1 - v4.1.1.sql"
then i did
cd 4.2/install/resources/upgrade_sql_statements
mysql mydb < "v4.1.1 - v4.2.sql"
but anyway since ive been on 4.2, anyone who logs in to the site, their information does not post to login_success
Example: I registered a brand new account on a seperate browser/incognito, i log in, and that user does not show up in login_success at all
The login_success table does show entries, but its the same 4/5 logins.. the same 4/5 people.. and they all seem to be from germany, italy or france..
when I run
select distinct country_code from mydb.login_success where date_Added like '2016-03-2%';"
I get
+--------------+
| country_code |
+--------------+
| DE |
| IT |
| FR |
+--------------+
select distinct country_code from mydb.login_success where date_Added like '2016-03-1%';
+--------------+
| country_code |
+--------------+
| DE |
| FR |
| IT |
select distinct user_id country_code from mydb.login_success where date_Added like '2016-03-1%';
+--------------+
| country_code |
+--------------+
| 4249 |
| 14081 |
| 11754 |
| 13249 |
| 13640 |
| 12323 |
+--------------+
select distinct user_id country_code from mydb.login_success where date_Added like '2016-03-2%';
+--------------+
| country_code |
+--------------+
| 4249 |
| 12890 |
| 11754 |
| 13249 |
| 14081 |
| 12323 |
+--------------+
I upgraded 2016-03-07 so ever since then, its like the same people that are showing up in login_success thats it
Does anyone have any ideas on why or what i could try to figure it out? Maybe some way to debug or, get the value or info ?