0.11beta3 Released!

Project Announcements. This is read-only, as in... not for problems/bugs/feature request.
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

0.11beta3 Released!

Post by Ted »

Have at it folks!  It's getting pretty close to being ready for release.

Please let me know if anything is weird.  Thanks!
Hans
Forum Members
Forum Members
Posts: 61
Joined: Sun Oct 09, 2005 10:49 am

Re: 0.11beta3 Released!

Post by Hans »

Don't know if this is the place to make comments on the new release so if not, please put me in some other topic.

I have installed the beta 3 in a subdirectory (/cmsms) and I can't get FCKX to work correctly when trying to insert an image. It points to a directory Image, which isn't there and I have no idea where to put that directory. I made one under /uploads and chmodded it to 777 but that doesn't work. Also I get an error when choosing "Browse server" (it's in Dutch so I cannot tell what the message in English is)
With TinyMC I have no problems.
Thanks
Hans
Hans
Forum Members
Forum Members
Posts: 61
Joined: Sun Oct 09, 2005 10:49 am

Re: 0.11beta3 Released!

Post by Hans »

Sorry, I can't edit my post. TinyMC also fails when trying to insert an image.
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

Re: 0.11beta3 Released!

Post by Ted »

Ok, I'll look into it.
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

Re: 0.11beta3 Released!

Post by Ted »

2 bugs have come in and have been fixed.  Both related to using another prefix besides cms_ when setting up a new site.  They're fixed in svn, and I'm not sure they deserve a beta4.  We'll see what else comes in.
redkevin11
Forum Members
Forum Members
Posts: 29
Joined: Fri May 20, 2005 6:21 pm

Re: 0.11beta3 Released!

Post by redkevin11 »

I'm quite impressed with beta3!

I'm having one major issue though.

None of my stylesheet associations are working.  If I look at the stylesheets, they exist and are attached to the template, but they aren't appending to stylesheet.php?templateid=X.  The template-specific css is there but nothing else (the css you add when adding/editing the template itself).

I have cleared the cache.

As a workaround, I'm of course simply copying and pasting the stylesheet to an external location and linking them individually per template.

Anyone else have this problem?
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

Re: 0.11beta3 Released!

Post by Ted »

I'll look into it.  It's a very good possibility I messed something up with the moving of the {stylesheet} tag.
redkevin11
Forum Members
Forum Members
Posts: 29
Joined: Fri May 20, 2005 6:21 pm

Re: 0.11beta3 Released!

Post by redkevin11 »

sorry to add more possible bugs.  it's a great product none-the-less!

EllNav appears to be completely broken now.  On my home page http://dev.esbc.com (obviously at development phase) it is correct, but if you look at http://dev.esbc.com/welcome it's wrong, although it's the same page.

On all other pages, the left nav doesn't work at all.  Left nav sytax is {cms_module module='EllNav' cssid='secondaryNav'}.  Also, the top nav sometimes doesn't get the "active" class.

I have turned off urlrewriting and have the same issues.  I have systematically turned off all modules to see if there's some sort of conflict.  Nothing.

The logic of the site is very reliant on EllNav!

Thanks.
redkevin11
Forum Members
Forum Members
Posts: 29
Joined: Fri May 20, 2005 6:21 pm

Re: 0.11beta3 Released!

Post by redkevin11 »

Problem is solved by fixing a single line in EllNav. 
I assume 0.6 is the latest version right?

lines 191 - 193

Code: Select all

            // which page are we viewing?
            //$curPageID = $this->cms->variables['page'];
            $curPageID = $this->cms->variables['content_id'];
Hope this helps someone.
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

Re: 0.11beta3 Released!

Post by Ted »

I'm going to throw page in there for backwards compatibility anyways.  Better safe than sorry.  Thanks for finding that.
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

Re: 0.11beta3 Released!

Post by Ted »

Actually, looking at the code, 'page' is set to the alias or id given in the url.  content_id, obviously, is the content id only.  So, actually going to suggest to sjg to change it so it's more consistent.


Thanks again!
redkevin11
Forum Members
Forum Members
Posts: 29
Joined: Fri May 20, 2005 6:21 pm

Re: 0.11beta3 Released!

Post by redkevin11 »

I was about to let you know that.  You beat me to it!

I had this typed out already, but I'll paste it here anyway, maybe just for sjg.

on http://site.com (root - EllNav works):

Code: Select all

    [content-type] => text/html
    [modulenum] => 2
    [user_id] => 
    [username] => 
    [pluginnum] => 1
    [pageinfo] => pageinfo Object
        (
            [content_id] => 29
            [content_title] => Welcome to ESBC.com!
            [content_alias] => Welcome
            [content_menutext] => Welcome
            [content_hierarchy] => 00001.00001
            [content_type] => 
            [content_modified_date] => 1129158439
            [template_id] => 10
            [template_modified_date] => 1129659626
            [content_cachable] => 1
        )

    [content_id] => 29
    [page] => 29
    [page_id] => 29
    [page_name] => Welcome
    [position] => 00001.00001
on http://site.com/Welcome (same as root - EllNav doesn't work)

Code: Select all

    [content-type] => text/html
    [modulenum] => 2
    [user_id] => 
    [username] => 
    [pluginnum] => 1
    [page] => Welcome
    [pageinfo] => pageinfo Object
        (
            [content_id] => 29
            [content_title] => Welcome to ESBC.com!
            [content_alias] => Welcome
            [content_menutext] => Welcome
            [content_hierarchy] => 00001.00001
            [content_type] => 
            [content_modified_date] => 1129158439
            [template_id] => 10
            [template_modified_date] => 1129659626
            [content_cachable] => 1
        )

    [content_id] => 29
    [page_id] => Welcome
    [page_name] => Welcome
    [position] => 00001.00001
estring
Forum Members
Forum Members
Posts: 22
Joined: Tue Sep 06, 2005 2:55 am

Re: 0.11beta3 Released!

Post by estring »

I experienced the same type of problem as Hans when using FCKeditor with IE6. When you attempt to add a new image and select "browse server" no images or subdirectories display. Also, the create new folder and upload functions don't work in IE6.  However, these same functions work great in Firefox 1.06.  I love the ability to create custom templates when creating new content (this is a great feature to provide customers).

I've been doing web design for over 5 years, but I'm still somewhat new to CMS for site building. I've auditioned about 20 different CMS systems trying to find something I can hand off to a customer without overwhelming them with complexity and by far CMSMS is the perfect solution.

Other than the one issue above with FCKeditor in IE, 0.11beta3 looks fantastic!!!  Great work! :)
Hans
Forum Members
Forum Members
Posts: 61
Joined: Sun Oct 09, 2005 10:49 am

Re: 0.11beta3 Released!

Post by Hans »

Hi estring,
rather unexpected everything worked in IE some time after my first attempt. I have no idea what I did in the meantime but the only thing I can think of as being worth mentioning is that I emptied the cache and deleted cookies for some other reasons. After that CMSMS and FCK worked fine together. Maybe you could do the same, who knowns....
Hans
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm
Location: Fairless Hills, Pa USA

Re: 0.11beta3 Released!

Post by Ted »

I haven't really tested it in IE, as I'm a Mac user.  I'll see if I can try and recreate it, but it's definitely a strange thing. 

@estring: Would you mind if I used your second paragraph for our quotes page on the new site?  Thanks
Post Reply

Return to “Announcements”