[dspace-tech] DSpace 7.6.1 timeouts in production

2024-02-24 Thread Gabriel Martins
Dear All,

I am experiencing timeout issues when trying to make the DSpace 7 platform 
available in production with HTTPS when the front end is served by 
dspace-ui-deploy. However, I am able to access it normally when served by 
'yarn start:dev'."

I tried following the documentation strictly and also looked into similar 
questions on this forum, but unfortunately, I haven't had any success yet. 
The issue seems to persist despite following the recommended steps. It's 
possible that there might be a specific configuration or setting that is 
causing the timeouts when using HTTPS with dspace prod build.

If anyone has encountered a similar issue, I would greatly appreciate any 
guidance or suggestions. Thank you in advance for your help!

-- 
All messages to this mailing list should adhere to the Code of Conduct: 
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
--- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dspace-tech/95858c64-7573-4760-9784-f29e426ae33dn%40googlegroups.com.


[dspace-tech] Inconsistency on Item Statistics

2017-09-27 Thread Gabriel Martins
Hello,


I am having trouble in understanding what the numbers mean in the 
statistics page of a item.
The number of total visits don't match with the visits per country and I 
don't understand what the "Views" number means on the file downloads block.

The numbers are updated, as the stats scrips are running on cron.
I ask for help to try understand these numbers and how to make them more 
reliable and readable.

Thank you very much.



-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Submission stuck on upload step

2016-12-01 Thread Gabriel Martins
I can make a normal submission until I reach the submission step. Clicking 
next will continue in the upload step. The logs do not point to error and I 
do not know what else to do.

Can someone help me? I would greatly appreciate it.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Select element not serializable?

2016-07-05 Thread Gabriel Martins
I got a strange error when I changed the text element in form of 
UploadStep.java for a select.

Here's the code:

Text description = upload.addItem().addText("description");
description.setLabel(T_description);
description.setHelp(T_description_help);

for:

Select description = upload.addItem().addSelect("description");
description.setLabel(T_description);
upload.addItem(T_description_help);
description.addOption("article", "Article");
description.addOption("book", "Book");
description.addOption("presentation", "Presentation");

It's works fine, but for some reason I get stuck in upload step while doing 
a submission.
Tomcat show this error:

Cannot serialize session attribute FOM JavaScript GLOBAL 
SCOPE/resource://aspects/Submission/sitemap.xmap for session 
046207AB32F258732CBDC5650510C39A
java.io.NotSerializableException: java.lang.Object
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at 
org.mozilla.javascript.ScriptableObject.writeObject(ScriptableObject.java:2361)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
at 
org.mozilla.javascript.ScriptableObject.writeObject(ScriptableObject.java:2348)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at 
org.apache.catalina.session.StandardSession.writeObject(StandardSession.java:1694)
at 
org.apache.catalina.session.StandardSession.writeObjectData(StandardSession.java:1092)
at 
org.apache.catalina.session.StandardManager.doUnload(StandardManager.java:405)
at 
org.apache.catalina.session.StandardManager.unload(StandardManager.java:323)
at 
org.apache.catalina.session.StandardManager.stopInternal(StandardManager.java:493)
at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:224)
at 
org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5806)
at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:224)
at 
org.apache.catalina.core.ContainerBase$StopChild.call(ContainerBase.java:1587)
at 
org.apache.catalina.core.ContainerBase$StopChild.call(ContainerBase.java:1576)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Can someone help me at this?
Thank you very much.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Stuck on upload step

2016-07-01 Thread Gabriel Martins
I got a strange error while doing a submission, it gets stucks on upload 
step and nothing happens after clicking the next button.
It appears that if I choose a archive and click in next afterwards it goes 
to the revision step, but if I upload another archive, I get stuck.

Don't have any idea of what is doing this and the logs don't show any 
errors.
Any help would be great, thank you very much.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Add metadata to bitstream

2016-06-07 Thread Gabriel Martins
In upload step of submission process there is a field do write the file 
description. My team want to add a second description field but we don't 
have any idea of how.
Can anyone share some idea? We would thank a lot.

Sorry for the bad english.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.