I'm running a local site with alfresco community share 5c. I m trying to upload files (photos, text, zip) and it stucks at 100%. Also when i try to to create a simple folder i choose name, title and description but when i hit save nothing happens… what's the problem?
Look for any errors in your alfresco.log/share.log files at the time you do one of these actions and also check your browser console for any errors that might be happening in Javascript (press F12 in most browsers). Without providing information on what's going on, you won't be able to get your problem solved easily.
It seems that you have some issues at the database level.
org.springframework.jdbc.UncategorizedSQLException: ### Error updating database. Cause: org.postgresql.util.PSQLException: ERROR: could not read block 13 in file "base/16386/16559": read only 0 of 8192 bytes ### The error may exist in alfresco/ibatis/#resource.dialect#/node-insert-SqlMap.xml ### The error may involve alfresco.node.insert.insert_Transaction-Inline ### The error occurred while setting parameters ### SQL: insert into alf_transaction (id, version, server_id, change_txn_id, commit_time_ms) values (?, ?, ?, ?, ?) ### Cause: org.postgresql.util.PSQLException: ERROR: could not read block 13 in file "base/16386/16559": read only 0 of 8192 bytes
This may be a physical corruption issue (http://wiki.postgresql.org/wiki/Corruption) or it may have been caused if you've been doing any modifications at the database level yourself. Somewhere postgres internally has a pointer that points a particular block where it expects there to be some data, but either there's nothing there, or it can't read it.
I don't know anything about postgres so I can't tell you what to do next on this.