I can't seem to find a beta-grade combination of Drupal 9, Feeds, and Feeds Tamper that can be installed as things stand in January 2023. After digging into the history a little bit I am not sure there *is* a beta-grade combination that works for Drupal 9, or even 8.
Have I understood that correctly or have I just missed another dependency completely?
I can install a standard drupal website without complicated dependencies, see method1, on my local Ubuntu 22.04 server but I have a question about the composer installation for a drupal website with complicated dependencies, see method2.
Method1 (Tested and working method for standard websites)
Download the drupal tarball in your home directory.
I install a clean version of Drupal 10 using Composer, `./composer.phar create-project drupal/recommended-project drupal`
The installation script runs fine but comes with this warning: "Your server is capable of using clean URLs, but it is not enabled. Using clean URLs gives an improved user experience and is recommended. Enable clean URLs"
I complete the installation script and I see my site. As soon as I click a link, ie. "Reports" I get this error: "The requested URL was not found on this server." The requested URL is https://..../admin/reports
I have a D7 site in which my images (for years) have been installed in a separate directory ('filestore') at the base for the drupal installation. The group for that directory is http, and the configuration of the file system points to that location. The site renders properly (theme, images) except for the images under posts. For some reason, the image html is rendering as <img src="/filestore/<user>/filename", but while the file is under the filestore directory (under a user there) and permissions are all as required, the image does not render.