View Single Post
Posts: 22 | Thanked: 3 times | Joined on Jun 2010
#65
Originally Posted by ajalkane View Post
Umm... I think that's exactly what I said.

I'm sorry if I wrote it unclearly.
Indeed, it was me that misread it - sorry!

Anyway, this is what I've done so far:
- Recover my root password for mysql
- Create a new database for easylist:
Code:
# mysql -u root -p
    create database easylistdb;
    create user 'easylist'@'%' identified by 'easylist';
    create user 'easylist'@'localhost' identified by 'easylist';
    set password for 'easylist'@'%' = password('easylist');
    set password for 'easylist'@'localhost' = password('easylist');
    connect easylistdb;
    grant all privileges on *.* to 'easylist'@'%' with grant option;
    grant all privileges on *.* to 'easylist'@'localhost' with grant option;
    flush privileges;
    exit;
- Create tables for easylist ('willemliu_ezlist.sql' was included in the .zip file, outside the easylist/ directory):
Code:
# mysql -u root -p
mysql> connect easylistdb;
mysql> source /tmp/willemliu_ezlist.sql;
- Successfully sign up and log in, create a persistent list from the web interface.

PROBLEM: I have setup up my server to do https only (http will be redirected to https) with authentication, and the app itself doesn't seem to cope with this. Is this a "missing feature" or should it in fact work? (I am am able to authenticate and log in using the web app of my Nokia N9).