Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
SimplePress database problem causes error log file to balloon in size - Help!
Avatar
ebiznet
Member
sp_UserOfflineSmall Offline
Sep 11, 2014 - 3:10 am

My server error_log file keeps ballooning in size over time due to some problem with the SimplePress set up. I need help to fix this.

Here's a small portion of what the log file contains, and it repeats itself over and over again and the file gets bigger every hour. Being a non-techie, I cannot make any sense of it, but I am sure you chaps here do, and so I hope you can help me resolve this issue once and for all so I don't have to keep going into my server to delete this errorlog file.

[10-Sep-2014 08:35:19 UTC] eHangar.com database error Unknown column 'device' in 'field list' for query INSERT INTO wp_sftrack
(trackuserid, trackname, forum_id, topic_id, trackdate, pageview, device, display) VALUES
(0, '66.249.64.64', 24, 3873, '2014-09-10 08:35:19', 'topic', 'M', 'spType-Guest spRank-guest spUsergroup-guests') made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, sp_populate_query_vars, sp_track_online, spdb_query
[10-Sep-2014 08:35:29 UTC] eHangar.com database error Unknown column 'device' in 'field list' for query INSERT INTO wp_sftrack
(trackuserid, trackname, forum_id, topic_id, trackdate, pageview, device, display) VALUES
(0, '180.76.5.65', 0, 4829, '2014-09-10 08:35:29', 'topic', 'D', 'spType-Guest spRank-guest spUsergroup-guests') made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, sp_populate_query_vars, sp_track_online, spdb_query
[10-Sep-2014 08:35:32 UTC] eHangar.com database error Unknown column 'device' in 'field list' for query INSERT INTO wp_sftrack
(trackuserid, trackname, forum_id, topic_id, trackdate, pageview, device, display) VALUES
(0, '180.76.5.25', 0, 4829, '2014-09-10 08:35:32', 'topic', 'D', 'spType-Guest spRank-guest spUsergroup-guests') made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, sp_populate_query_vars, sp_track_online, spdb_query
[10-Sep-2014 08:35:32 UTC] eHangar.com database error Unknown column 'device' in 'field list' for query INSERT INTO wp_sftrack
(trackuserid, trackname, forum_id, topic_id, trackdate, pageview, device, display) VALUES

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Sep 11, 2014 - 4:20 am

Wow. This column was added, via the upgrade process, in version 5.3.0 and we are now at 5.5.1...

Firstly - may I assume you ARE using a version more recent than 5.3.0?  And secondly - do you know how to access phpMyAdmin via your hosting control panel?

andy-signature.png
YELLOW
SWORDFISH
Avatar
ebiznet
Member
sp_UserOfflineSmall Offline
Sep 11, 2014 - 4:35 am

Thank you for your response.

I am now using Version 5.5.0.1. I have been upgrading it whenever the WP upgrade notification tells me to do so.

How do I upgrade it to 5.5.1?

Yes, I know how to access phpMyAdmin via the hosting control panel. What would you like me to do?

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Sep 11, 2014 - 4:57 am

You are going to need to add that missing column to the database table. Are you comfortable doing that? There are basically two ways... manually creating the column (probably the easiest) or running an update query. Which would you prefer me to give instructions for?

andy-signature.png
YELLOW
SWORDFISH
Avatar
ebiznet
Member
sp_UserOfflineSmall Offline
Sep 11, 2014 - 5:03 am

I'll try the easier option first and see if I can manage this :)

So let's go with manually creating the column - how do I do this please?

Avatar
ebiznet
Member
sp_UserOfflineSmall Offline
Sep 11, 2014 - 5:08 am

By the way, I just saw the notification to upgrade to v5.5.1 which I have done so, plus upgrading the database and plugins.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Sep 11, 2014 - 5:17 am

OK - I will do my best to make it simple! 

  1. Access phpMyAdmin on your server and load up your WordPress database so you get the list of tables.
  2. Locate the table (your wp prefix) 'sftrack' - and along the row you will find the icon to load the 'structure' - click on that to load.
  3. This should provide a view of the columns in the table above, and the indexes for the table below.
  4. Between the two sections there should be an 'Add 1 Column' input with 'At end of table' pre-selected. Click on the 'Go' button at the end of that line.
  5. This should bring up a form that allows you to add a new column.
  6. The name of the new column is device
  7. The type is CHAR and the length is 1
  8. For default click on 'as defined' from the list and in the input box that opens beneath it enter D
  9. Click the save button for the form.

On some versions of phpMyAdmin it says at the top that the update has been made but it does not show up in the listing immediately. If you want to double check all is well then click on the database name in the breadcrumbs at the very top of the screen. Go back to the database table listing and click on the structure of the table once again to redisplay it and you should see your new column.

Now - while there - does this table have a column named 'display' or os that missing as well?

andy-signature.png
YELLOW
SWORDFISH
Avatar
ebiznet
Member
sp_UserOfflineSmall Offline
Sep 11, 2014 - 5:38 am

Thank you for the very clear instructions - I have added the column successfully.

Yes, I can see that it has a column named 'display'.

eh-phpadmin.JPGImage Enlarger

So would doing this stop the error_log file from filling up?

Avatar
ebiznet
Member
sp_UserOfflineSmall Offline
Sep 11, 2014 - 5:48 am

To answer my own question, the answer is Yes!

I deleted the error_log file and have been checking the server - the file has not reappeared since.

Thanks mucho for your help here, Yellow Swordfish!

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Sep 11, 2014 - 5:57 am

It does beg the question however, on why that column was not created at the time of the upgrade. I believe this is the only case we had reported of this particular failure which makes it most odd and quite unique. I just hope there was nothing else in that upgrade that failed... :)

andy-signature.png
YELLOW
SWORDFISH
Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 619
Members: 17361
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10127
Posts: 79625