categories/product save error

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 年 前
when i try to add save category or product, the error will happens, like below:

"We're sorry, an internal error occurred.

Our supporting staff has been notified of this error and will address the issue shortly.

We apologize for the inconvenience........."


checked froum, added below in wef.config
<appSettings>
  <add key="aspnet:MaxHttpCollectionKeys" value="5000" />
</appSettings>


But did not work, anybody has ideas about this?

also checked system > log, try to find a error log, but there is nothing generated.

Thanks!
7 年 前
Check the very first FAQ
7 年 前
New York wrote:
Check the very first FAQ


thanks, did changes in web.config, got the error message as below;

Could not allocate space for object 'dbo.ActivityLog'.'PK__Activity__3214EC07946EB245' in database 'iuser001' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.
7 年 前
As the error says - your disk space is full. :)
7 年 前
wooncherk wrote:
As the error says - your disk space is full. :)


but disk is not full, that is why i dont understand it says space is full.
7 年 前
Or rather, your database has grown pass it's allowed space. Check your database size, and check the max size allowed. As a temporary option, go to SSMS, and truncate all Logs.

TRUNCATE TABLE [Log]
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.