problems after installation

3 replies [Last post]
Joined: 12/08/2009
Points: 15

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

Joined: 06/29/2009
Points: 93

enable mod_rewrite:

 sudo a2enmod rewrite

change your sites .htaccess settings:

 sudo vim /etc/apache2/sites-enabled/000-default

edit to match your setup:

<VirtualHost *:80>
        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

Joined: 12/08/2009
Points: 15

Thank you Jeff!! Worked great!!

Marco

Joined: 06/29/2009
Points: 93

Glad it worked for you!

happy to help ,
---Jeff