gelato cioccolato RC1

5 views
Skip to first unread message

pecesama

unread,
Oct 9, 2007, 2:31:59 AM10/9/07
to Gelato CMS
Hello members of this group,

We have good news for you, the first release candidate for gelato
cioccolato is now available for download, please test it and send us
bugs or any feedback.

http://gelatocms.googlecode.com/files/gelato0-95-RC1.zip

Among others you will find in this version:

* Bookmarklet.
* Import with only your username from Twitter, Youtube, Last.FM,
Tumblr, Wordpress.com, Blogger and VOX.
* Import from any RSS/ATOM feed.
* .htaccess support.
* Shorts URLs with abbrr.com for very large URLs.
* Ported to jQuery from MooTools.
* Security enhaced.
* Minor and mayor bug fixes.

Enjoy it!!

blogmama

unread,
Oct 9, 2007, 6:12:06 AM10/9/07
to Gelato CMS
Hi,

i updated my tumblelog like described in the readme file. everything
seems to work except two things:

1. after i uploaded all files, replaced the config.php with the
necessary db informations in it and started update.php i got this
error:

Fatal error: Cannot instantiate non-existent class: conexion_mysql in
http://xxx/xxx/xxx/xxx/update.php on line 28

so i replaced the config.php with the old one and after that the
update.php worked.

now my config looks like this:

<?php
/* ===========================

gelato CMS - A PHP based tumblelog CMS
0.90 version
http://www.gelatocms.com/

gelato CMS is a free software licensed under the GPL 2.0
Copyright (C) 2007 by Pedro Santana <pecesama at gmail dot com>

=========================== */
?>
<?php
// MySql configuration
define('DB_Server', 'xxx'); // Set the MySQL hostname (generally
"localhost")
define('DB_name', 'xxx'); // Set the MySQL database gelato should
use
define('DB_User', 'xxx'); // Set the MySQL username
define('DB_Password', 'xxx'); // Set the MySQL password
define('Table_prefix', 'xxx_'); // Set the MySQL tables prefixes
/* Do not edit below this line */

define('Absolute_Path', dirname(__FILE__).DIRECTORY_SEPARATOR);

session_start();
header("Expires: Mon, 26 Jul 1957 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s ") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
ini_set('pcre.backtrack_limit', '10000');

require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'mysql_connection.class.php');

require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'streams.class.php');

require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'gettext.class.php');

require_once(Absolute_Path.'classes'.DIRECTORY_SEPARATOR.'lang.functions.php');
?>

is that the right config.php after the upgrade?

2. the second issue is that the url friendly function do not work
while activated. i get an 404 page.

regards, stefan

Junae Lansu

unread,
Oct 9, 2007, 7:05:06 AM10/9/07
to gela...@googlegroups.com
Same problem here... fixed it the same way as Stefan did.

Regards,
Junae

Matt Heitzenroder

unread,
Oct 9, 2007, 9:55:31 AM10/9/07
to gela...@googlegroups.com
Add this line above line 28 (like 27) in update.php

require_once('classes/mysql_connection.class.php');

Please let me know if that helps.

ciao,
Matt

blogmama

unread,
Oct 9, 2007, 3:00:43 PM10/9/07
to Gelato CMS
it works for the update - thanx!

but friendly url still don't

On 9 Okt., 15:55, Matt Heitzenroder <mheitzenro...@gmail.com> wrote:
> Add this line above line 28 (like 27) in update.php
>
> require_once('classes/mysql_connection.class.php');
>
> Please let me know if that helps.
>
> ciao,
> Matt
>
> On Oct 9, 2007, at 7:05 AM, Junae Lansu wrote:
>
> > Same problem here... fixed it the same way as Stefan did.
>
> > Regards,
> > Junae
>

> > On 10/9/07, blogmama <blogm...@googlemail.com > wrote:
>
> > Hi,
>
> > i updated my tumblelog like described in the readme file. everything
> > seems to work except two things:
>
> > 1. after i uploaded all files, replaced the config.php with the
> > necessary db informations in it and started update.php i got this
> > error:
>
> > Fatal error: Cannot instantiate non-existent class: conexion_mysql in

> >http://xxx/xxx/xxx/xxx/update.phpon line 28

blogmama

unread,
Oct 9, 2007, 3:09:12 PM10/9/07
to Gelato CMS
because of the url friendly problem:

i added "RewriteBase /log/" to the .htaccess file because my site is
in a subdirectory named /log/. my .htaccess file now looks like this:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /log/
RewriteRule ^page/([0-9]+)/?$ index.php?page=$1 [L]
RewriteRule ^post/([0-9]+)/?$ index.php?post=$1 [L]
RewriteRule ^rss/?$ rss.php [L]
</IfModule>

On 9 Okt., 21:00, blogmama <blogm...@googlemail.com> wrote:
> it works for the update - thanx!
>
> but friendly url still don't
>
> On 9 Okt., 15:55, Matt Heitzenroder <mheitzenro...@gmail.com> wrote:
>
> > Add this line above line 28 (like 27) in update.php
>
> > require_once('classes/mysql_connection.class.php');
>
> > Please let me know if that helps.
>
> > ciao,
> > Matt
>
> > On Oct 9, 2007, at 7:05 AM, Junae Lansu wrote:
>
> > > Same problem here... fixed it the same way as Stefan did.
>
> > > Regards,
> > > Junae
>
> > > On 10/9/07, blogmama <blogm...@googlemail.com > wrote:
>
> > > Hi,
>
> > > i updated my tumblelog like described in the readme file. everything
> > > seems to work except two things:
>
> > > 1. after i uploaded all files, replaced the config.php with the
> > > necessary db informations in it and started update.php i got this
> > > error:
>
> > > Fatal error: Cannot instantiate non-existent class: conexion_mysql in

> > >http://xxx/xxx/xxx/xxx/update.phponline 28

peppeg

unread,
Oct 11, 2007, 5:49:16 AM10/11/07
to Gelato CMS

hi pecesama, this cioccolato is really HOT!

i like it very much...

i'm testing the bookmarklet and it's work fine but:

it would be great if after a post it will not display angain the
"entry" page but like tumblr a self-closing window...

if you use this for a photos, like this http://i187.photobucket.com/albums/x283/something2see/004.jpg,
the bookmarklet show the "upload from your pc" option... but if you
switch to "Use a URL instead" the url is correct and work fine... it
would be great if first appears this option...

quotation don't work, or i don't understand how to do quotations...

thanks you a looot!

pecesama

unread,
Oct 18, 2007, 9:56:19 AM10/18/07
to Gelato CMS
Thanks peppeg!!

I have taked note of your feedback and will be ready for the final
release of gelato cioccolato this week!!

On Oct 11, 4:49 am, peppeg <atom...@gmail.com> wrote:
> hi pecesama, this cioccolato is really HOT!
>
> i like it very much...
>
> i'm testing the bookmarklet and it's work fine but:
>
> it would be great if after a post it will not display angain the
> "entry" page but like tumblr a self-closing window...
>

> if you use this for a photos, like thishttp://i187.photobucket.com/albums/x283/something2see/004.jpg,

jonatha...@gmail.com

unread,
Oct 18, 2007, 10:00:11 AM10/18/07
to Gelato CMS
Thanks, I should have read this post before working on the source
files.

pecesama

unread,
Oct 26, 2007, 1:03:46 AM10/26/07
to Gelato CMS
Thank you all, for your feedback on this version, now the final gelato
cioccolato is online, to update from the RC1 only replace the old
files (remember do not use the v0.90 config.php file).
Reply all
Reply to author
Forward
0 new messages