Hi,
the error is "SQLSTATE[HY000]: General error: 1364 Field 'text' doesn't have a default value".
This mean that a column 'text' in table '#__jsnsocial_activities' does not have a default value. But as you can see from SQL installation file at /plugins/jsn/socialnetwork/sql/install.sql at line 7 there is a declaration of default value
`text` text COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
I have fixed this for you by adding a default value for columns 'text', 'items' and 'params' (basically all text type columns in table '#__jsnsocial_activities'). Have you imported the database from another server? if yes then maybe it's possible that during the export process the SQL server have not exported all columns definitions (at least the default value for text column type).