[Snowy] Unable to connect to my snowy server via Tomboy but OK from web



I have installed Snowy from the latest git files using the wsgi method on Debian Squeeze.
I believe I have all dependencies properly installed.

All looks good as far as the web interface but when I try to set up syncing of notes, I get the "sever not responding Try again later." message and 
my (OS X) Client returns the log error:

[ERROR]: Failed to get Root resource snowy.my.domain/api/1.0. Exception was: System.UriFormatException: Invalid URI: The format of the URI could not be determined: snowy.mydomain.org/api/1.0

apache2 also returns a couple of errors but they look minor (and strange):
-----
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626+lfs/fileinfo.so' - /usr/lib/php5/20090626+lfs/fileinfo.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626+lfs/lzf.so' - /usr/lib/php5/20090626+lfs/lzf.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626+lfs/memcache.so' - /usr/lib/php5/20090626+lfs/memcache.so: cannot open shared object file: No such file or directory in Unknown on line 0
[error] python_init: Python version mismatch, expected '2.6.5+', found '2.6.6'.
-----

looks like the api/1.0 is not getting served, do I have to install this specifically, I have an api directory but no 1.0 in there?

Below is my site file for reference:
----
<VirtualHost *:80>
        ServerName snowy.mydomain.org

WSGIPassAuthorization On
WSGIApplicationGroup %{GLOBAL}
Alias /media /var/lib/python-support/python2.6/django/contrib/admin/media/
WSGIDaemonProcess snowy user=www-data home=/home/www/django/snowy
WSGIProcessGroup snowy
WSGIScriptAlias / /home/www/django/snowy/snowy.wsgi

</Virtualhost>
----

and snowy.wsgi:
----
import os
import sys
sys.stderr = sys.stdout
sys.path.insert(0, '/home/www/django/snowy')
sys.path.insert(1, '/home/www/django')

os.environ['DJANGO_SETTINGS_MODULE'] = 'snowy.settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
----

Any suggestions?


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]