Centralized install
Permalink 1 user found helpful
I did a centralized install. Strange thing is that the site is partly working.
It's not able to find the concrete folder
Also the dashboard is not working, the javascript and css for example is not found.
Any idea?
This a row from the log.
It's not able to find the concrete folder
Also the dashboard is not working, the javascript and css for example is not found.
Any idea?
This a row from the log.
File does not exist: /var/www/Nogepa/concrete, referer: http://dev.aardgas-update.nl/index.php/facts-and-figures/
I used option 2, with the alias setting in the virtual host settings.
like:
#
# aardgas-update.nl (/etc/apache2/sites-available/dev.aardgas-update.nl)
#
<VirtualHost *:80>
ServerName dev.aardgas-update.nl
ServerAlias aardgas-update.nl
DocumentRoot /var/www/Nogepa/
Alias ^/concrete /usr/share/concrete5/concrete-latest-stable/concrete
php_value include_path
".:/usr/share/pear:/usr/share/concrete5/concrete-latest-stable"
Strange thing is that the site works, except for loading of the concrete files, like jquery and css.
2011/2/11 Concrete5 Community <discussions@concretecms.com
like:
#
# aardgas-update.nl (/etc/apache2/sites-available/dev.aardgas-update.nl)
#
<VirtualHost *:80>
ServerName dev.aardgas-update.nl
ServerAlias aardgas-update.nl
DocumentRoot /var/www/Nogepa/
Alias ^/concrete /usr/share/concrete5/concrete-latest-stable/concrete
php_value include_path
".:/usr/share/pear:/usr/share/concrete5/concrete-latest-stable"
Strange thing is that the site works, except for loading of the concrete files, like jquery and css.
2011/2/11 Concrete5 Community <discussions@concretecms.com
Yeah, must confess, i ran into loads of problems using alias and found the symbolic link to work much better for me. If you wanna give it a try, the syntax from inside your web root is:
ln -s /usr/share/concrete5/concrete-latest-stable/concrete concrete
To get the alias to work, you may find it's a permission or apache directive issue. Could be a pain to track down tho!
Jon
ln -s /usr/share/concrete5/concrete-latest-stable/concrete concrete
To get the alias to work, you may find it's a permission or apache directive issue. Could be a pain to track down tho!
Jon
I thought let's try something else and changed
into
without the ^
That seems to be the trick, now it is working.
Alias ^/concrete /usr/share/concrete5/concrete-latest-stable/concrete
into
Alias /concrete /usr/share/concrete5/concrete-latest-stable/concrete
without the ^
That seems to be the trick, now it is working.
I thought let's try something else and changed
into
without the ^
That seems to be the trick, now it is working.
2011/2/11 Concrete5 Community <discussions@concretecms.com
Alias ^/concrete /usr/share/concrete5/concrete-latest-stable/concrete
into
Alias /concrete /usr/share/concrete5/concrete-latest-stable/concrete
without the ^
That seems to be the trick, now it is working.
2011/2/11 Concrete5 Community <discussions@concretecms.com
Jon