1045Access denied for user 'petrol_petrolution'@'localhost' (using password: YES)
2054The server requested authentication method unknown to the client
2054The server requested authentication method unknown to the client
SELECT ID, Title, Summary FROM Items WHERE Type = 2 AND ID <> 0 AND ID <> 0 AND Trashed = FALSE AND Visible = TRUE ORDER BY RAND() LIMIT 0,1
2054The server requested authentication method unknown to the client
SELECT ID, Title, Summary FROM Items WHERE Type = 2 AND Trashed = FALSE AND Visible = TRUE ORDER BY RAND() LIMIT 0,1
Petrolution, Modding Resource Hub
Green Rollover Red Rollover Arrow Rollover Focused Userbar Register Button Rollover Red Button Rollover
Remember Me?
2054The server requested authentication method unknown to the client
SELECT *, UNIX_TIMESTAMP(LastActive) AS LastActiveU FROM Users WHERE Users.ID = 4;
No Avatar

Member (10,240 points)
Last active: January 1, 1970 - 1:00
Last action:

Show this user's contributions
Show this user's Revora profile

2054The server requested authentication method unknown to the client
					SELECT
						Items.Title AS Title,
						Items.Type AS Type,
						Ratings.Item AS ID,
						Ratings.Rating AS Rating,
						UNIX_TIMESTAMP(Ratings.RateDate) AS RateDate
					FROM
						Ratings
						LEFT JOIN Items
							ON (Ratings.Item = Items.ID)
					WHERE
						Ratings.User = 4 AND
						Items.Visible = TRUE AND
						Items.Trashed = FALSE
					ORDER BY
						Rating DESC,
						Ratings.RateDate DESC
					LIMIT 0,10;