Activity Log

Posted in Dspace, Projects, Systems and Servers, Video and Audio | Leave a comment

Dspace and Geology

Spent a lot of time today mucking around in Dspace, trying to get it
ready for a big influx of images from Geology department…

  • upgraded to Dspace 1.2.1Beta4
  • added new collection
  • tried various combinations of authorization settings

    Think I’ve got it all figured out. Now gotta delete old collection, and
    remember how to run my import script

  • Posted in Dspace, Projects | Leave a comment

    Activity Log

    • advised a hendrickson on DVD burners and macintosh applications
    • advised William McDowell on file shares and directed him to TSG for same
    • long conversation with t streeter and s cavrak about file transfer options for mac and web publishing
    • safari bookmark questions from m starrett
    Posted in MacOS Support, Projects, Video and Audio, Web Publishing Support | Leave a comment

    Activity Log

    • advised t streeter on possible purchase of final cut express
    • advised Aaron.Rakow@uvm.edu on file shares, sent him to TSG for some
    • met with Gabriela Mora-Klepeis to dicsuss using dspace for geology collection
    Posted in Dspace, MacOS Support, Projects, Video and Audio | Leave a comment

    Fixed this, fixed that

    Paul Bierman asked,

    "Don’t mean to be a pest, but I am wondering if you can add the ability to search by LS# to our advanced search text string? I am teaching an on-line course these next 10 days and the students have been asking to be able to do this?"

    fixed it.

    Rob Rohr noted "Great article for the newsletter. I suspect this summary doesn’t include downloads initiated by employees in the School of Business Administration. Our abbreviation in LDAP/PH/Registrar databases is "Sch Business Administr’n" and the apostrophe is causing havoc in the SQL INSERT that occurs after I download a file. I get my file, then I get an error message in the SQL statement. Perhaps you might wish to escape the apostrophes beforecommitting the data to your tracking database."

    fixed

    Posted in Landscape Change, Projects, Scripts - Programming | Leave a comment

    WordPress Update 1.2.2

    WordPress Update 1.2.2 broke my login again, but it seems to be a
    result of one my database value substitutions. I replaced home value with http://www.uvm.edu/~waw/wordpress/?Page=. . When
    wordpress tried to define constant COOKIEPATH, it used the above
    in a regular expression that stripped off the http:// , but not the
    ?Page=. , yielding /~waw/wordpress/?Page=. Neither
    Firefox nor Safari accepted that as a cookie path. The fix was

    /Volumes/homes/public_html/wordpress/wp-includes/vars.php, line 176

    # waw/uvm mods 2004-01-05
    # 2005-01-04 define('COOKIEPATH', preg_replace('|http://[^/]+|i', '',
    get_settings('home') . '/' ) );
    $patterns=array('|http://[^/]+|i','|?.*$|');
    define('COOKIEPATH', preg_replace($patterns, '', get_settings('home') .
    '/' ) );
    #print "get_settings('home') ".get_settings('home')." COOKIEPATH
    ".COOKIEPATH;
    # waw/uvm mods 2004-01-05

    ------------------------------------------------------------------------
    ------------

    That fixed, login’s “lost password” function was broken in what appears
    to be a wordpress error. $wpdb->users is undefined.

    /Volumes/homes/public_html/wordpress/wp-login.php, line 115

    # waw/uvm mode 2005-01-05
    # 2005-01-04 $wpdb->query("UPDATE $wpdb->users SET user_pass =
    MD5('$user_pass') WHERE user_login = '$user_login'");
    $wpdb->query("UPDATE $tableusers SET user_pass = MD5('$user_pass')
    WHERE user_login = '$user_login'");
    # waw/uvm mode 2005-01-05

    and also in
    /Volumes/homes/public_html/wordpress/wp-includes/functions.php, line
    1384: SAFE MODE doesn’t allow 5th param to mail function

    # waw/uvm mod 2005-01-05
    # 2005-01-04 return mail($to, $subject, $message, $headers, $more);
    return mail($to, $subject, $message, $headers);
    # waw/uvm mods 2004-01-05
    ------------------------------------------------------------------------
    ------------

    Finally, I put this in to fix some problems I was having fitting
    comments boxes in the UVM template

    /Volumes/homes/public_html/wordpress/wp-comments.php, line 74