Copyright © 2012 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
Hallo, I am a Kaltura newbie, but really interested in using it for my application.
I have installed on a LAMP box (Ubuntu 9.10 server) and I get the 'Your KalturaCE Server Is Up And Running' message when I go to /KalturaCE/index.php page.
But when I point to ANY of the links contained in that page (Player Gallery, Playlist gallery, UGC site, KMC etc... ) I get an error page (Not found: The requested URL /kalturaCE/api_v3/sample/players/ was not found on this server.) OR a new page with the same text but without formatting (e.g. http://xxx.xxx.xxx.xxx/kalturaCE/index.php/kmc).
I followed all the instructions in KCE installation guide page, in fact I got all green checks during the wizard.
What's going on?
Any help is appreciated.
Marco
enable mod_rewrite:
change your sites .htaccess settings:
edit to match your setup:
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
#important stuff here
<Directory /var/www/>
Options Indexes FollowSymLinks ExecCGI Includes
AllowOverride All
Order allow,deny
allow from all
</Directory>
#important stuff here
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
[\code]
Hope that helps?
---Jeff