[Mahara-contributors] [Bug 918571] Re: Error message about multiple journals when none exist

2012-03-06 Thread Kristina Hoeppner
Hi Craig,

Pretty much what Mahara does at the moment is that once you enable
multiple journals you cannot go back to a single journal anymore to
avoid losing your journals (unless I guess you only have one journal
again). That's why you and I didn't see the "Enable multiple journals"
tick box because we had multiple journals. Those who have not still see
it.

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/918571

Title:
  Error message about multiple journals when none exist

Status in Mahara ePortfolio:
  Fix Committed

Bug description:
  Mahara 1.5 dev version

  When you have multiple journals allowed in your account settings and
  then delete all journals and want to switch back to a single journal,
  the error message "You cannot disable multiple journals unless you
  only have one journal" still comes up though no journal exists.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/918571/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 942239] Re: Allow multiple journals setting missing

2012-03-06 Thread François Marier
** Changed in: mahara
   Importance: High => Low

** Tags added: usability

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/942239

Title:
  Allow multiple journals setting missing

Status in Mahara ePortfolio:
  In Progress

Bug description:
  This used to be visible to users under Settings - I can't find it
  there now.

  This is on myportfolio.school.nz site using 1.5.0dev - it is on the
  myportfolio.ac.nz site using the same version

  Craig

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/942239/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 922057] Re: Wth php 5.3 starts to have a lot of warnings It is not safe to rely on the system's time in apache logs

2012-03-06 Thread François Marier
We haven't really been able to reproduce this on our normal development
or production machines.

Could it be a configuration problem on your server?

If so, I guess having the warnings in the error log until you fix it in
your php.ini is a good thing that we shouldn't silently work-around.

If not, then we'd need more information as to when this configuration
can occur.

** Changed in: mahara
   Status: Triaged => Incomplete

** Changed in: mahara
 Assignee: Christopher Tombleson (christopher-k) => (unassigned)

** Changed in: mahara
Milestone: 1.5.0 => None

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/922057

Title:
  Wth php 5.3 starts to have a lot of warnings  It is not safe to rely
  on the system's time in apache logs

Status in Mahara ePortfolio:
  Incomplete

Bug description:
  mahara 1.5 dev master
  php version :
  PHP 5.3.3 (cli) (built: Nov  3 2011 12:00:26)
  Copyright (c) 1997-2010 The PHP Group
  Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies

  With php set in full error reporting mode , my apache errors logs get
  filled with warnings about 'It is not safe to rely on the system's
  timezone settings'

  [Mon Jan 23 14:51:49 2012] [error] [client 134.214.152.108] [WAR] 6a 
(lib/mahara.php:2884) date(): It is not safe to rely on the system's timezone 
settings. You are *required* to use the date.timezone setting or the 
date_default_timezone_set() function. In case you used any of those methods and 
you are still getting this warning, you most likely misspelled the timezone 
identifier. We selected 'Europe/Berlin' for 'CET/1,0/no DST' instead, referer: 
http:///mahara/user/find.php?limit=99
  ...

  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * 
log_message("date(): It is not safe to rely on the system's tim...", 8, true, 
true, "/var/www/html/mahara.git/htdocs/lib/mahara.php", 2884) at 
/var/www/html/mahara.git/htdocs/lib/errors.php:446, referer: 
http:///mahara/
  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * error(2, 
"date(): It is not safe to rely on the system's tim...", 
"/var/www/html/mahara.git/htdocs/lib/mahara.php", 2884, array(size 2)) at 
Unknown:0, referer: http://xxx/mahara/
  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * date("Y-m-d 
h:i:s") at /var/www/html/mahara.git/htdocs/lib/mahara.php:2884, referer: 
http://xxx/mahara/
  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * 
mahara_log("views", "6") at /var/www/html/mahara.git/htdocs/user/view.php:289, 
referer: http://x/mahara/

  I did fixed it by adding at the end of config.php

  // quick fix on my place
  //date_default_timezone_set("Europe/Berlin");

  //a better fix
  if(function_exists("date_default_timezone_set") and 
function_exists("date_default_timezone_get")) {
   @date_default_timezone_set(@date_default_timezone_get());
  }

  But I guess it might be time to add to Mahara's site configuration a
  setting about 'server timezone' and use it 'a la Moodle'

  Cheers.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/922057/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 922057] Re: Wth php 5.3 starts to have a lot of warnings It is not safe to rely on the system's time in apache logs

2012-03-06 Thread François Marier
https://reviews.mahara.org/#/c/1089

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/922057

Title:
  Wth php 5.3 starts to have a lot of warnings  It is not safe to rely
  on the system's time in apache logs

Status in Mahara ePortfolio:
  Incomplete

Bug description:
  mahara 1.5 dev master
  php version :
  PHP 5.3.3 (cli) (built: Nov  3 2011 12:00:26)
  Copyright (c) 1997-2010 The PHP Group
  Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies

  With php set in full error reporting mode , my apache errors logs get
  filled with warnings about 'It is not safe to rely on the system's
  timezone settings'

  [Mon Jan 23 14:51:49 2012] [error] [client 134.214.152.108] [WAR] 6a 
(lib/mahara.php:2884) date(): It is not safe to rely on the system's timezone 
settings. You are *required* to use the date.timezone setting or the 
date_default_timezone_set() function. In case you used any of those methods and 
you are still getting this warning, you most likely misspelled the timezone 
identifier. We selected 'Europe/Berlin' for 'CET/1,0/no DST' instead, referer: 
http:///mahara/user/find.php?limit=99
  ...

  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * 
log_message("date(): It is not safe to rely on the system's tim...", 8, true, 
true, "/var/www/html/mahara.git/htdocs/lib/mahara.php", 2884) at 
/var/www/html/mahara.git/htdocs/lib/errors.php:446, referer: 
http:///mahara/
  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * error(2, 
"date(): It is not safe to rely on the system's tim...", 
"/var/www/html/mahara.git/htdocs/lib/mahara.php", 2884, array(size 2)) at 
Unknown:0, referer: http://xxx/mahara/
  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * date("Y-m-d 
h:i:s") at /var/www/html/mahara.git/htdocs/lib/mahara.php:2884, referer: 
http://xxx/mahara/
  [Thu Jan 26 13:24:05 2012] [error] [client 134.214.152.108]   * 
mahara_log("views", "6") at /var/www/html/mahara.git/htdocs/user/view.php:289, 
referer: http://x/mahara/

  I did fixed it by adding at the end of config.php

  // quick fix on my place
  //date_default_timezone_set("Europe/Berlin");

  //a better fix
  if(function_exists("date_default_timezone_set") and 
function_exists("date_default_timezone_get")) {
   @date_default_timezone_set(@date_default_timezone_get());
  }

  But I guess it might be time to add to Mahara's site configuration a
  setting about 'server timezone' and use it 'a la Moodle'

  Cheers.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/922057/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 932494] Re: Mahara needs to be tested on PHP 5.4

2012-03-06 Thread François Marier
** Changed in: mahara
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/932494

Title:
  Mahara needs to be tested on PHP 5.4

Status in Mahara ePortfolio:
  In Progress

Bug description:
  Since PHP 5.4 will be released before we release Mahara 1.5, we need
  to make sure it works on there.

  It's scheduled to be in Debian wheezy
  (http://wiki.debian.org/PHP/54Transition) and Ubuntu Precise
  (https://blueprints.launchpad.net/ubuntu/+spec/servercloud-p-php54).

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/932494/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 942239] Re: Allow multiple journals setting missing

2012-03-06 Thread Melissa Draper
** Changed in: mahara
 Assignee: (unassigned) => Melissa Draper (melissa)

** Changed in: mahara
   Status: Triaged => In Progress

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/942239

Title:
  Allow multiple journals setting missing

Status in Mahara ePortfolio:
  In Progress

Bug description:
  This used to be visible to users under Settings - I can't find it
  there now.

  This is on myportfolio.school.nz site using 1.5.0dev - it is on the
  myportfolio.ac.nz site using the same version

  Craig

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/942239/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 942239] Re: Allow multiple journals setting missing

2012-03-06 Thread Melissa Draper
Seems to have been introduced by this.
https://bugs.launchpad.net/mahara/+bug/918571

I will change it to be a disabled setting rather than an ignored one.

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/942239

Title:
  Allow multiple journals setting missing

Status in Mahara ePortfolio:
  Triaged

Bug description:
  This used to be visible to users under Settings - I can't find it
  there now.

  This is on myportfolio.school.nz site using 1.5.0dev - it is on the
  myportfolio.ac.nz site using the same version

  Craig

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/942239/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 884438] Re: Youtube embed links with dashes or underscores do not work

2012-03-06 Thread Melissa Draper
** Changed in: mahara
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/884438

Title:
  Youtube embed links with dashes or underscores do not work

Status in Mahara ePortfolio:
  Fix Released

Bug description:
  The YouTube custom html filter will not parse YouTube embed tags with
  dashes in them.

  For example this embed code will not be parsed: http://www.youtube.com/embed/3ciFi-1YYdM";
  frameborder="0" allowfullscreen>

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/884438/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 885588] Re: user/view.php PHP Fatal error in non-auth access

2012-03-06 Thread Melissa Draper
** Changed in: mahara
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/885588

Title:
  user/view.php PHP Fatal error in non-auth access

Status in Mahara ePortfolio:
  Fix Released

Bug description:
  This is Mahara 1.4.0:

  Each 4 minutes or so, I was getting the following error on PHP error
  log:

  PHP Fatal error:  Call to a member function get() on a non-object in
  [MAHARA_DIRROOT]/user/view.php on line 67

  To reproduce just access /user/view.php without being authenticated.
  The access log shows GoogleBot trying to access user's profile page.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/885588/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 886581] Re: Blog block pagination bug prevents images from being displayed

2012-03-06 Thread Melissa Draper
** Changed in: mahara
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/886581

Title:
  Blog block pagination bug prevents images from being displayed

Status in Mahara ePortfolio:
  Fix Released

Bug description:
  As the viewid is not added to the URL for the images, images are considered 
not published and we don't have permission to see them. In fact, if we right 
click on the image place holder and click on 'Display image' (or equivalent 
browser option), we are presented with a login screen, even if we are logged in.
  
  Just make sure the viewid is passed to ArtefactTypeBlogpost::get_posts() too 
as part of the configdata, to include it in the image access URL.

  This bug is present in 1.4 and master (and 1.3 too, but that's out of
  supprt)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/886581/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 932909] Re: auth/saml default remoteuser

2012-03-06 Thread Melissa Draper
** Changed in: mahara
   Status: Fix Committed => Fix Released

** Changed in: mahara/1.4
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/932909

Title:
  auth/saml default remoteuser

Status in Mahara ePortfolio:
  Fix Released
Status in Mahara 1.4 series:
  Fix Released

Bug description:
  The auth/saml plugin should have the option "Match username attribute
  to Remote username" defaulted to true, as this presents a risk in
  multi-tenanted Mahara instances (different institutions may clash on
  usernames so the default behaviour should be to match on the external
  one).

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/932909/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 943772] Re: Site registration broke when mahara.org moved to HTTPS

2012-03-06 Thread Melissa Draper
** Changed in: mahara
   Status: Fix Committed => Fix Released

** Changed in: mahara/1.4
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
https://bugs.launchpad.net/bugs/943772

Title:
  Site registration broke when mahara.org moved to HTTPS

Status in Mahara ePortfolio:
  Fix Released
Status in Mahara 1.4 series:
  Fix Released

Bug description:
  The problem seems to be that the URL for site registration is
  hardcoded in Mahara as:

http://mahara.org/api/registration.php

  and curl doesn't appear to be following the 301 redirect to:

https://mahara.org/api/registration.php

  We should therefore update the URL in the code as well as find a way
  to still get data sent over HTTP.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/943772/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp