Dnia 2011-10-20, o godz. 21:50:25
Roger Martín <[email protected]> napisał(a):
> Hi folk!
>
> I have some problem with bzr, so i tried to make a fresh aiki install
> and 1 hour after i do't get it.
>
> Problems i found:
> - INSTALL (file with instrucctions) don't describe use
> of ./autogen.sh first step.
There is this:
"If the configure script is missing, then execute `./autogen.sh'."
> - directory src/lib/classes is not copied ( i created this file)
If you add folder or a file you need to add it to Makefile.am. I will
add this folder.
> - htaccess.inc (template to create htaccess file) is in /etc/aiki.
>
> To correct the installation you need:
> - copy files in var/www/aiki
> - delete var/www/aiki/config/aiki-def.php
> - run index.php.. (now the installer is created..but can write
> config.php or .htaccess)
>
> Now, i want correct some bugs, but i can't: i haven't a working copy
> of aiki. I want finish the new render engine and new installer but
> with i will delay new development.
The only thing I did to use aiki (on Ubuntu) is to create
a file /etc/apache2/sites-enabled/001-aiki
Alias /aiki /usr/share/aiki
# The following directories require access over HTTP
<Directory /usr/share/aiki/>
Order Allow,Deny
Allow from All
Deny from None
AllowOverride All
Options +FollowSymLinks
RewriteEngine on
RewriteBase /aiki/
RewriteRule ^image/(.*)px/(.*)/(.*)
assets/apps/image_viewer.php?id=$3&size=$1&mode=$2
RewriteRule ^image/(.*)px/(.*) assets/apps/image_viewer.php?id=$2&size=$1
RewriteRule ^image/(.*) assets/apps/image_viewer.php?id=$1
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ index.php?pretty=$1 [L,QSA]
</Directory>
from AIKI wiki HowTo
http://aikiframework.org/wiki/HOWTO_Develop_Aiki_Framework#Example_Apache_conf_file
And every thing is working. But I didn't test Aiki from build directory.
Jakub
_______________________________________________
Mailing list: https://launchpad.net/~aikiframework-devel
Post to : [email protected]
Unsubscribe : https://launchpad.net/~aikiframework-devel
More help : https://help.launchpad.net/ListHelp