[campsite-dev] Happy Holidays with Campsite 3.3.4!
  • Dear All,I am pleased to announce Campsite 3.3.4, a maintenance release of the "Speedy" branch. The main enhancements it brings are:
    Improvements:
    New Issue and section constraints for article lists (a time-saving feature for Campsite web developers)Option to enable browser-based spell checking (Firefox) for all article fields
    Bug fixes include:
    Several issues when APC cache is on (updating of the blog plugin
    screen, article reordering, updating of the Article Edit screen,
    published articles not showing up immediately on the front end) URI options "next_items" and "previous_items" not working in plugins listsIMG inserted via TinyMCE editor wrapped in table tagsConflicting sections can be created in different issue translationsCyrillic characters are not displayed properly in TinyMCE Campsite image plugin popupSpecial chars do not work properly in image caption and alternative textsNotice message breaks image displaySlash character can not be used in the image description fieldsIP address authentication does not work
    For a full list of new features and bug fixes, please see this Trac report: http://trac.campware.org/campsite/query?status=closed&milestone=3.3.4Campsite
    is a community effort and any help is appreciated. If you like Campsite
    and would like to help it develop even faster, please find some time to
    read the How to Contribute to Campsite wiki (http://trac.campware.org/campsite/wiki/HowToContribute-Campsite)
    Follow Campsite and other Campware development more closely via Twitter and Identi.ca (@campware). For more deatails,
    read this article: http://campware.org/en/camp/campware_news/815/Happy Holidays!
    Sava
  • 2 Comments sorted by
  • Dear Sava et al,

    First of all - Happy New Year to you & all of our colleagues. And best
    wishes for the upcoming year!

    Second, I would like to say a BIG THANK YOU for this very much needed
    feature (which works as a charm):
    New Issue and section constraints for article lists (a time-saving feature
    for Campsite web developers)

    The last, but not least, is not very cheerful - we had to revert to previous
    3.3.3 release, as major connectivity problems arose on several sites
    upgraded to 3.3.4. But I hope Andrey will provide more info on that, as this
    is his part of job.

    Thank you & best regards,
    Alexei D.


    2009/12/29

    > Dear All,
    >
    > I am pleased to announce Campsite 3.3.4, a maintenance release of the
    > "Speedy" branch.
    > The main enhancements it brings are:
    >
    > Improvements:
    >
    > - New Issue and section constraints for article lists (a time-saving
    > feature for Campsite web developers)
    > - Option to enable browser-based spell checking (Firefox) for all
    > article fields
    >
    > Bug fixes include:
    >
    > - Several issues when APC cache is on (updating of the blog plugin
    > screen, article reordering, updating of the Article Edit screen, published
    > articles not showing up immediately on the front end)
    > - URI options "next_items" and "previous_items" not working in plugins
    > lists
    > - IMG inserted via TinyMCE editor wrapped in table tags
    > - Conflicting sections can be created in different issue translations
    > - Cyrillic characters are not displayed properly in TinyMCE Campsite
    > image plugin popup
    > - Special chars do not work properly in image caption and alternative
    > texts
    > - Notice message breaks image display
    > - Slash character can not be used in the image description fields
    > - IP address authentication does not work
    >
    > For a full list of new features and bug fixes, please see this Trac report:
    > http://trac.campware.org/campsite/query?status=closed&milestone=3.3.4
    >
    > Campsite is a community effort and any help is appreciated. If you like
    > Campsite and would like to help it develop even faster, please find some
    > time to read the **How
    > to Contribute to Campsite wiki (
    > http://trac.campware.org/campsite/wiki/HowToContribute-Campsite)
    >
    > Follow Campsite and other Campware development more closely via Twitter and
    > Identi.ca (@campware). For more deatails, read this article:
    > http://campware.org/en/camp/campware_news/815/
    >
    > Happy Holidays!
    >
    > Sava
    >
    >
    >
  • If you have your (camp)site hosted on shared hosting on a server
    located in different time zone you have to change it to fit in with
    your audience.

    Simply create php.ini file in your web root directory and add this
    record:

    date.timezone = "Europe/Belgrade"

    You can test date and time with:

    echo date('d-m-Y H:i:s');
    ?>

    Check the list of supported timezones at:
    http://php.net/manual/en/timezones.php

    Timezone also MUST be set in MySQL because when creating content
    Campsite usually reads date and time from the MySQL database engine.

    To do it just use this easy workaround. Add following line in
    [campsite_dir]/db_connect.php, line 17 (after line $g_ado_db-
    >Execute("SET NAMES 'utf8'"); ) :

    $g_ado_db->Execute("SET time_zone = '+1:00'");

    In example we used +1:00 for CET. Adjust it for your time zone.


    Best,
    zoran