Re: [Dspace-tech] SRWU Setup failing

2009-10-30 Thread Mr Havercamp
Hi Ralph Please find attached the SRWU install and configuration documentation I have put together. The installation is very much targeted at my current system so the path naming is in no way generic. Cheers Hayden LeVan,Ralph wrote: I'd be happy to see it! Thanks to both of you! Ralph

[Dspace-tech] handle-server accessible

2009-10-30 Thread Lewatle Phaladi
Hi All Our institution handle-server is now globally accessible, thanks to those who tried to give their Ideas in this regard. Thanks, Lewatle htmlpfont face = verdana size = 0.8 color = navyThis communication is intended for the addressee only. It is confidential. If you have

Re: [Dspace-tech] Logged in user not consistent when using apache with tomcat

2009-10-30 Thread Mr Havercamp
Hi John Ran into exactly the same problem not long ago. The problem stems from the Reverse proxy (i.e. there are issues with authenticated sessions and reverse proxying from Apache). To resolve; Apache config; Keep your proxypass but remove proxypassreverse Tomcat config (Handle reverse

[Dspace-tech] Size Limit for Display in Web Browser JPEGs?

2009-10-30 Thread pennington
We have 2 collections in DSpace 1.5.2 that we are setting up with lots of objects that are just comprised of a single JPEG image per object. One collection has JPEGs that are about 5 MB in size, and the other collection has JPEGs that are about 30 MB in size. When you click on the 5 MB JPEG

[Dspace-tech] Moving items from one collection top another

2009-10-30 Thread John Preston
Can someone give me the sql to move an item from one collection to another. As I remeber it in an earlier DSpace incarnation it used to be possibl;e John -- Come build with us! The BlackBerry(R) Developer Conference in

Re: [Dspace-tech] Moving items from one collection top another

2009-10-30 Thread Claudia Juergen
Hello John, meanwhile there is a move item feature in DSpace. If you are using an older version, here is the sql with the usual warning (backup db etc. before manipulating it): update item set owning_collection=NewCollectionID where item_id=ItemID; update collection2item set

Re: [Dspace-tech] HTML5 and the future of DSpace

2009-10-30 Thread Mark Diggory
For DSpace XMLUI, this is simply a matter of creating an appropriate theme that will support HTML5 as the output format for generated html content. This would be an excellent project for those in the community who are working on DSpace Manakin XMLUI themes to provide as a contribution and would

[Dspace-tech] ant fresh_install fails

2009-10-30 Thread Rajshekhar Pandey
Hello to all, I am facing problem while installing dspace. The step ant fresh_install giving following error shek...@shekhar-laptop:~/java/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir$ ant fresh_install Buildfile: build.xml BUILD FAILED

Re: [Dspace-tech] ant fresh_install fails

2009-10-30 Thread Jeffrey Trimble
It looks like you are using JDK1.4? 1.5.2 requires JAVA JDK 5 or later (Standard SDK is fine, you don't really need J2EE). Upgrade to Java5 or higher and your problem should go away. (Java 6 is what is available on the Sun website: http://java.sun.com/javase/downloads/index.jsp) See if