Is there something really new/different in the V1.1.1 version?
I have been banging on it for 4 hours trying to get it to work in the same environment where V1.00RC3 is working!
Per my last post, trying to get the 'per user' login thing going, here is what I have done:
- I couldn't get the current working 1.0.0RC3 to work with the suggested setup for multiple user logins and setup.
- Made a new folder in my Web folder and called it cops111. Copied over the contents of the new calibre-master.zip, v1.1.1 in to the new folder.
- Set up very basic vhost in the QTS control panel for that new folder and port 8164.
- When I enter 192.168.x.xxx:8164/checkconfig.php, I get the COPS Configuration Check screen. All items say "OK" except the last 3, but they seem to be just reminders of things that are already installed and work under the 1.0.0.RC3 version.
But when I try to pull up the COPS program itself, it simply does not seem to be there. Here are my Apache vhost settings:
Code:
NameVirtualHost *:8162
NameVirtualHost *:8163
NameVirtualHost *:8164
Listen 8162
Listen 8163
Listen 8164
<VirtualHost _default_:80>
DocumentRoot "/share/Web"
</VirtualHost>
<VirtualHost *:8162>
<Directory "/share/Web/COPS">
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ServerName Cops
DocumentRoot "/share/Web/COPS"
</VirtualHost>
<VirtualHost *:8163>
<Directory "/share/Web/CalibreWeb">
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ServerName Calibre-Web
DocumentRoot "/share/Web/CalibreWeb"
</VirtualHost>
<VirtualHost *:8164>
<Directory "/share/Web/cops111">
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ServerName COPS111
DocumentRoot "/share/Web/cops111"
</VirtualHost>
The first two work normally, but the new cops111 is simply not showing up. I have done the apache restart thing after every change, probably unnecessarily.
I am stumped. Any ideas out there?