-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
37 lines (32 loc) · 1.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Installation steps:
1. Rename all *.dist files so they are without the extension, eg.
file.php.dist => file.php
2. Set path to symfony in ProjectConfiguration.class.php
(it should be there as default, but keep watch on where you keep pear!)
3. Set database user in databases.yml(previously databases.yml.dist)
4. Open terminal and navigate to this project
5. Run 'mkdir cache' command
6. Run 'chmod 777 cache log web/uploads' command
7. Run 'rm -rf cache/*' command
8. Run 'php symfony doctrine:build-all-reload' command
9. Add following text in your vhosts config:
# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:80
# This is the configuration for coloni
Listen 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
ServerName coloni.localhost
DocumentRoot "/youcoloniinstall/web"
DirectoryIndex index.php
<Directory "/yourcoloniinstall/web">
AllowOverride All
Allow from All
</Directory>
Alias /sf "/pathtosymfony/web/sf"
<Directory "/pathtosymfony/web/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
10. Append to your /etc/hosts:
127.0.0.1 coloni.localhost