DNN Forums

Ask questions about your website to get help learning DNN and help resolve issues.

Help deciphering error in admin log

 15 Replies
 4 Subscribed to this topic
 40 Subscribed to this forum
Sort:
Page 2 of 2 << < 12
Author
Messages
Veteran Member
Posts: 349
Veteran Member
3 Helpful Replier
Helpful Replier
Thanks for being such a helpful replier!
MVP
MVP
You're an MVP!
Engaged Reader
Engaged Reader
You are an engaged reader!
Avid Reader
Avid Reader
Avid Reader art thou!
Posted By Agency3 on 05 Jul 2019 03:55 PM

Thanks for the help. I'm still not sure how I fixed this. All I did was install a new theme and now the new version of 40FINGERS Style Helper Skin Object works.

There is a lot of 'residual' javavscript code and objects left in the custom skin because I upgraded from DNN 6 straight to 9 so perhaps that has something to do with it. There are also permission problems with my account that won't let me rename directories or use the Digital Assets module so it not exactly a fresh install of a site!

 

If it is still possible, I would restore a backup and follow the recommended upgrade path https://www.dnnsoftware.c...ggested-upgrade-path

 

New Around Here
Posts: 26
New Around Here

Thanks! The last 2 seem to okay but the first query does say the size is huge: 3097.06 MB. with only about 10MB left

Senior Member
Posts: 1322
Senior Member
3 Helpful Replier
Helpful Replier
Thanks for being such a helpful replier!
Lifesaver
Lifesaver
You're Life Saver!
New Poster
New Poster
Congrats on posting!
3 Engaged Reader
Engaged Reader
You are an engaged reader!
Posted By Agency3 on 07 Jul 2019 04:30 PM

Thanks! The last 2 seem to okay but the first query does say the size is huge: 3097.06 MB. with only about 10MB left

That looks like you are running into some kind of hosting limit.

Try this SQL to find what table is causing the DB to be this large.

<code>SELECT<br />     t.NAME AS TableName,<br />     i.name as indexName,<br />     sum(p.rows) as RowCounts,<br />     sum(a.total_pages) as TotalPages,<br />     sum(a.used_pages) as UsedPages,<br />     sum(a.data_pages) as DataPages,<br />     (sum(a.total_pages) * 8) / 1024 as TotalSpaceMB,<br />     (sum(a.used_pages) * 8) / 1024 as UsedSpaceMB,<br />     (sum(a.data_pages) * 8) / 1024 as DataSpaceMB<br /> FROM<br />     sys.tables t<br /> INNER JOIN      <br />     sys.indexes i ON t.OBJECT_ID = i.object_id<br /> INNER JOIN<br />     sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id<br /> INNER JOIN<br />     sys.allocation_units a ON p.partition_id = a.container_id<br /> WHERE<br />     t.NAME NOT LIKE 'dt%' AND<br />     i.OBJECT_ID > 255 AND   <br />     i.index_id <= 1<br /> GROUP BY<br />     t.NAME, i.object_id, i.index_id, i.name<br /> ORDER BY<br />      (sum(a.used_pages) * 8) / 1024  DESC</code>

 

 

 

New Around Here
Posts: 26
New Around Here

Yea the log is huge!

Table name: SiteLog

2675 MB total space
2675 MB Used space
2665 Dataspace

 

 

 

Senior Member
Posts: 1322
Senior Member
3 Helpful Replier
Helpful Replier
Thanks for being such a helpful replier!
Lifesaver
Lifesaver
You're Life Saver!
New Poster
New Poster
Congrats on posting!
3 Engaged Reader
Engaged Reader
You are an engaged reader!
Posted By Agency3 on 08 Jul 2019 10:27 AM

Yea the log is huge!

Table name: SiteLog

2675 MB total space
2675 MB Used space
2665 Dataspace

First backup your database.
Then run this SQL command:

<code>TRUNCATE TABLE SiteLog </code>

 

 

New Around Here
Posts: 26
New Around Here

Okay that shrank it down quite a bit. I haven't had any problems since switching to a new theme so I don't know if it was your module or not. I'll keep you posted if I have any more trouble. Thanks for the help

(update: Almost everything wrong with my site turned out to be a corrupted web.config. See this thread https://dnncommunity.org/forums/aft/128 )

Page 2 of 2 << < 12

These Forums are for the discussion of the open source CMS DNN platform and ecosystem.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. If you have (suspected) security issues, please DO NOT post them in the forums but instead follow the official DNN security policy
  2. No Advertising. This includes the promotion of commercial and non-commercial products or services which are not directly related to DNN.
  3. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  4. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  5. No Flaming or Trolling.
  6. No Profanity, Racism, or Prejudice.
  7. Site Moderators have the final word on approving / removing a thread or post or comment.
  8. English language posting only, please.

Would you like to help us?

Awesome! Simply post in the forums using the link below and we'll get you started.

Get Involved