Braindump 0.2

Now it solidly works, and you can double click page descriptions to edit them right in the page, which is nice. I dropped revisioning—the extra complexity was weighing me down. Anyway, now I have a solid base to build on. So check out the working demo and stay tuned.

07:20 PM | 6 Comments

Comments

  1. Hi Pedro!

    This Application is awesome. Actually i have tried to test this application on my own desktop pc. I’m stuck on setup a database.sqlite file. Others requirement i have done on my machine. Can u guide me in brief explanation how to setup the sqlite database. Please..
    Thank you for your kindness.

    Delete junn on
  2. Hi! Wow, thanks for the interest, you’re like the first person I don’t know who’s installed this. Glad you like it.

    You don’t have to do anything to the sqlite database, actually. It already has the schema set up and everything, and the system knows where to find it. The entire database is in that file, it doesn’t have to connect to any server like MySQL would. In fact, the only thing you need to do to set up braindump is set the base_url in app/config.php. If you’ve done that, everything should work fine.

    Tell me if this works for you, if not, I’ll be glad to help you until it’s up and running. Thanks for the support and stay tuned for future releases! There’s a lot more in the works.

    Pedro Viltero on
  3. Pedro;

    My machine have xampp which it aready have php, mysql , apache but sqlite i’m not sure wheter xampp include it or not. What i did is

    1. i’ve put the braindumpv2 under directory c:\xampp\htdocs
    2. I opened confiq.php file and i put like this in that file ‘base_url’ => ‘http://localhost/braindumpv2’
    was it correct way?

    Do i have to install sqlite to my machine?

    Thank you for giving the response :)

    Delete junn on
  4. You did everything right and you don’t have to install anything else. The SQLite system is contained within PHP, so your current setup is good. The one thing you do need to do is put a slash at the end of your base url: http://localhost/braindumpv2/

    That should do it. Tell me if it works, I’ll be glad to hear.

    Pedro Viltero on
  5. Hi Pedro;

    Hurrah! at last it can appeared on my own machine. Thank you very much. You are so generous. One thing wanna ask you..what i should do if i wantt to browse this application table in sqlite. i’m only familiar with mysql. If at mysql i can go to phpmyadmin.

    Thanks

    Delete junn on
  6. Cool, I’m glad it worked.

    There are a number of options to browse the SQLite database file, but the one most similar to phpmyadmin is sqlite manager. Keep in mind that unlike MySQL, SQLite databases are contained in a file, so when you set it up, you won’t tell it a username and a password as you would with MySQL, you’ll just browse to the database file (c:\xampp\htdocs\braindumpv2\database.sqlite in your case). Again, tell me if it doesn’t work and I can help you out.

    Pedro Viltero on