WPMu Development for Education

Making WPMU work in education, one hack at a time

Archive for the 'Technology' Category

On Twitter 2010-03-10 :

Posted by Randy on 10th March 2010

  • Planning day at #nc 2010-Collab. Framework to share IT knowledge looks good-institute-wide help system at MIT at 8:30 #
  • Everyone be sure to stop by the WordPress roundtable at lunch today — I'm the host! #nc 2010 #
  • #nc 2010 web page should list sessions organized by speaker as well as the regular time-based schedule #
  • #nc 2010 Share IT knowledge framework session just getting underway #
  • #nc 2010 For IT shared knowledgebase which behavior is preferred – browsing or searching? MIT favors searching. #
  • Barriers to collab./self-imposed (not good enough)/unease with public info/ if I write about it I might have to support it /time #nc 2010 #
  • In workplace knowledge base less-than-perfect contributions need to be encouraged-they are good enough #nc 2010 #
  • Collab. knowledgebase presentation here: http://bit.ly/cMil4A #nc 2010 #
  • Knowledge Centered Support (KCS) methodology informed MIT's shared knowledgebase system – http://bit.ly/9J9BpX – #nc 2010 #
  • New usability book from guru Steve Krug — Rocket Surgery Made Easy – http://www.sensible.com/rocketsurgery – #nc 2010 #
  • U of Virginia working on Sakai function to pull in content from external web 2.0 like WordPress #yam #nc-2010 #
  • Vue is also open source vue.tufts.edu – and a flexible way to pull in things like tweets and represent data graphically #nc 2010 #
  • Vue.tufts.edu also integrates semantic web analysis w/OpenCalais #nc 2010 #
  • All you WordPress folks at #nc 2010 – come join me at the lunch roundtable #
  • Fellow #nc 2010 twitter team – can we all meet for a photo? How about at the afternoon refreshment break — 4pm at the back of the hall? #
  • At Email in the cloud #nc 2010 – Boston C. contrasted with UMass Boston #
  • Group votes staff-fac email mission critical – student email mostly nice but not essential #nc 2010 #
  • UMass Boston migrated student email to MS Outlook Live #nc 2010 over xmas break #
  • #nc 2010 Twitterers – we will meet for a photo at the reception tonight at 6 – look for @wedaman – you can't miss him – pass the word #
  • Last session of the day – all good but I'm ready for a nap! #nc 2010 #

Related Posts

Posted in Technology, Tweets | Comments Off

On Twitter 2010-03-09 :

Posted by Randy on 9th March 2010

  • Gotta get through a budget meeting this morning-boo-then its off to Providence for #NC2010 Yah! #
  • RT @DrupalEdu: http://bit.ly/aYXUBb has been launched! #yam #
  • Starting the travel east, towards sunny Providence and #nc 2010 #
  • Enjoying a fish dinner at the bar of Providence's historic Biltmore hotel. #
  • Restaurants should be required to feature local musicians in the background music-at least 1 in 4? Let's support local art-locamusicavore #
  • The blackberry browser sucks – but websites should still deliver mobile browser-specific versions-low on graphics high on readability. #

Related Posts

Posted in Technology, Tweets | Comments Off

On Twitter 2010-03-07 :

Posted by Randy on 7th March 2010

  • I won an Orchid from the CT Orchid Society booth at the Van Wilgrens Spring garden show. Nice too. Will post photos later. #
  • Here is the Odontoglossum that I won today — ain't it pretty! http://flic.kr/p/7HRRCL #

Related Posts

Posted in Technology, Tweets | Comments Off

On Twitter 2010-03-05 :

Posted by Randy on 5th March 2010

Related Posts

Posted in Technology, Tweets | Comments Off

On Twitter 2010-03-04 :

Posted by Randy on 4th March 2010

Related Posts

Posted in Technology, Tweets | Comments Off

A follow-up on use of WordPress Surveys plugin

Posted by Randy on 3rd March 2010

I wrote early last month on an employee workplace feedback tool we launched using our WordPress MU installation and the Survey plug-in.  Overall the plugin worked well.  Here is a screen shot of one of our forms:

The main issue was a problem in the table that holds the responses.  The field that stores the user answer is limited to 255 characters, but no limit is enforced on the form.  And when users are invited to submit free form comments they quickly exceed the 255 limit.  The result is that a number of the responses were cut off in the database, and some of the user response was lost.  Not the nicest thing to realize after the fact, but luckily the fix is easy.

To make the alteration change open the plugin’s surveys.php  file and find the create table section.  Right around line 101 you’ll see the code that creates the surveys_result_answer table.  Alter the ‘user_answer’ column to use the blob data type — you’ll see it is set to a text(255) type, which is too short for many users.

CREATE TABLE {$wpdb->prefix}surveys_result_answer ((
`ID` int(11) unsigned NOT NULL auto_increment,
`result_ID` int(11) unsigned NOT NULL,
`answer_ID` int(11) unsigned NOT NULL,
`question_ID` int(11) unsigned NOT NULL,
`user_answer` blob NOT NULL,
PRIMARY KEY  (`ID`),
KEY `question_ID` (`question_ID`),
KEY `answer_ID` (`answer_ID`),
KEY `result_ID` (`result_ID`)
) ;

This small change fixes that problem.  The only other note is we used this tool on a members-only site.  I’d want to give it a thorough security check before using this on a public site.  I did note the user-text was escaped, so it looks like some protections are in place.  But these days you can never be too security conscious.

Surveys < Plugins < WordPress < Tools < Bin-Co

Surveys WordPress plugin lets you add surveys to your blog. You can let the visitors take surveys and see the result from the admin side. The user who take the survey can enter their details at the end of the survey – or leave it as an anonymous result.

Related Posts

Posted in Data, PHP, Plug-in, Technology, WordPress, blog, content, plugin, plugins | Comments Off

On Twitter 2010-03-03 :

Posted by Randy on 3rd March 2010

  • Social networking helps the creative process for knowledge workers-not a time waster after all http://bit.ly/cCk8cS #
  • Getting serious with Drupal – working through Drupal 6 Social Networking from Packt – going pretty well so far – powerful stuff! #

Related Posts

Posted in Technology, Tweets | Comments Off

On Twitter 2010-03-02 :

Posted by Randy on 2nd March 2010

Related Posts

Posted in Technology, Tweets | Comments Off

Backup WordPress sites to Amazon S3

Posted by Randy on 1st March 2010

A new plugin allows automatic backup of a WordPress site to an Amazon S3 store.  This functionality seems most useful to me for a multi-user installation, where the amount of data AND the risk of loss is much greater.  At the moment there doesn’t seem to be support for MU, but with the coming merger of the single and MU WordPress versions that exclusion should be short-lived.

Backing Up a Wordpress Blog to the Cloud Using Amazon S3 – ReadWriteCloud

The plugin makes it pretty simple to back up your blog. All you need to do is provide an Amazon S3 account key.

Automatic Wordpress Backup

Captures your ENTIRE site (Wordpress database, themes, plugins, uploaded files and settings files), which means minimal downtime if you need to restore.

WordPress MU compatible?

We haven’t tested it yet but the answer is probably “No” because of how MU stores files. Since Mu will be getting merged into regular Wordpress in the near future, we probably won’t be spending time on adding compatibility for mu. Sorry.

5

Posted in Technology | Comments Off

Feedly Mobile

Posted by Randy on 1st March 2010

My latest favorite tool for reading newsfeeds is feedly.  And since FeedDemon dropped their mobile version I haven’t found anything I like in the mobile space — but now feedly is making a mobile move.  The biggest mobile piece I miss is the save-for-later feature.  I often use items from the newsfeeds as fodder for a blog post (kind of like this post!)  The save-for-later functionality let me read on the mobile, save it, and then follow-up with it later on the desktop in writing a blog post. The feedly demo looks great, but with mentions of iPhone, Palm Pre and Android, I don’t see any BlackBerry mention.  I might have to switch — and Verizon is now supporting Palm Pre….

Feedly iPhone – Prototype 7 – Quick Tour « Building Feedly

We have been working on feedly mobile for a few months now. After a few iterations, we have reached a design which we felt had an interesting mix of fun, simplicity and speed in it. It is now time to open the door and let the community in.

f | Cover

…letting us in on a few more details of what to expect, such as a “Save for Later” function, releases for both Android and Palm Pre, and transparent syncing with Feedly Desktop.

5

Posted in Technology | Comments Off