The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I have a small lingering problem on my forum.
I merged from mybb a couple of years ago. All went ok however i have some users who registered and did not fill in there date of birth details. Now when i go to one of those user profiles i get a small error. Not a real big problem however i was wondering if i could just run a query to change everyone that has no DOB to a generic type one so the errors would stop? Specifically could someone help me create the query? Thanks. |
#2
|
|||
|
|||
![]()
Bump?
|
#3
|
||||
|
||||
![]()
Not tested (so do so on your test site first), but something like:
UPDATE user SET birthday = '' , birthday_search='0000-00-00' WHERE birthday = *** *** is whatever is actually in the field currently which you have not told us It kinda depends on what is actually in the database instead of the birthday. I have users on my vB4 site with no birthday (it's blank) and the birthday_search just equal to '0000-00-00' and I have no issues editing them. So, perhaps you can be more specific about the exact error and about what *exactly* is in the database for these users. |
#4
|
|||
|
|||
![]()
Thankyou for the reply Lynne.
Im sorry about the lack of information. The error i receive is as below. This error is at the top of the page when loading there profiles. Code:
Warning: mktime() expects parameter 4 to be long, string given in [path]/includes/class_userprofile.php on line 260 ![]() So would it be something like this? UPDATE user SET birthday = '' , birthday_search='1970-01-01' WHERE birthday = == Or would it be like below UPDATE user SET birthday = '' , birthday_search='1970-01-01' WHERE birthday = 2012-01-01 lol i really have no idea to be honest. --------------- Added [DATE]1330222800[/DATE] at [TIME]1330222800[/TIME] --------------- Update. I got it to work... Not sure if it was the correct way or anything lol but did this. UPDATE user SET birthday = '' , birthday='1970-01-01' WHERE birthday = '--' Now everyone that had no birthday atleast has one. Not an ideal fix but works for me none the less. Thanks again Lynne. |
#5
|
||||
|
||||
![]()
The query you finally ran is the one I would have suggested based on what you posted. So, good job!
![]() |
#6
|
|||
|
|||
![]() ![]() I did try learning querys but was very worried i would do something wrong. But now i feel a little more comfortable with querys. I did a slight variation of that to suit my prefix but other than that it was a perfect fix ![]() Again thankyou x100. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|