A 500 Internal Server Error after switching to RS 10.7 via SVN usually indicates a PHP error or incompatible server component (like an outdated PHP version or missing extension). Since it works fine when you switch back to 10.6, 10.7 likely introduced something that your current server environment can't support.
A few things you can check:
PHP Version
ResourceSpace 10.7 may require a newer PHP version than 10.6. Could you make sure your server is running at least PHP 8.1? See the composer.json "require": {
Error Logs
Check your Apache error logs. That’ll help confirm what exactly is failing.
Required Extensions
ResourceSpace sometimes adds new PHP extension dependencies (like intl, mbstring, etc.) between versions. See point 1.
File Permissions
SVN switch sometimes results in files with incorrect ownership or permissions. Running:
sudo chown -R www-data:www-data /path/to/resourcespace sudo find /path/to/resourcespace -type d -exec chmod 755 {} \; sudo find /path/to/resourcespace -type f -exec chmod 644 {} \;
(adjust user/group based on your server config) might help rule that out.
--
ResourceSpace: Open Source Digital Asset Management
http://www.resourcespace.com
---
You received this message because you are subscribed to the Google Groups "ResourceSpace" group.
To unsubscribe from this group and stop receiving emails from it, send an email to resourcespac...@googlegroups.com.
To view this discussion, visit https://groups.google.com/d/msgid/resourcespace/05c4f685-c92c-4e31-b877-1b8c456299f5n%40googlegroups.com.
Did you check file permissions? Perhaps the files are no longer readable by the web server after the switch.
--
ResourceSpace: Open Source Digital Asset Management
http://www.resourcespace.com
---
You received this message because you are subscribed to a topic in the Google Groups "ResourceSpace" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/resourcespace/Efv0P2an084/unsubscribe.
To unsubscribe from this group and all its topics, send an email to resourcespac...@googlegroups.com.
To view this discussion, visit https://groups.google.com/d/msgid/resourcespace/02636237-031c-4c4d-9e6d-06c39f465f3bn%40googlegroups.com.