Re: [boinc_dev] php warning messages

2013-05-03 Thread Eric Driver
Thanks! That fixed a bunch of the warnings. How can I fix this one: Strict Standards: Non-static method DbConn::base_escape_string() should not be called statically in /home/boincadm/projects/NumberFields/html/inc/boinc_db.inc on line 103 --Eric -Original Message- From: boinc_dev [mail

Re: [boinc_dev] php warning messages

2013-05-03 Thread David Anderson
Starting with PHP version 5.5, the usage $p = null; $p->foo = "bar"; gets a warning; you need to say $p = new StdClass; $p->foo = "bar"; I fixed a few of these. Unfortunately I don't have a PHP 5.5 system to test on right now. Please check out the latest code and let me know if you see more of

[boinc_dev] php warning messages

2013-05-03 Thread Eric Driver
Hi all, I recently upgraded the NumberFields project to the latest branch (boinc-v2). I am now getting a bunch of warnings on the admin pages like the following: "Warning: Creating default object from empty value in /home/boincadm/projects/NumberFields/html/inc/db_ops.inc on line 520" I

[boinc_dev] twitter bootstrap and boinc

2013-05-03 Thread Francisco Sanz García
Hello I'm working on the php pages of BOINC using twitter bootstrap. You can have a look to the status at http://alfa.ibercivis.es/ibercivis_alfa/index.php, (not fully functional yet). I read in the list that some people worked in this issue time ago, do you know something about that? I´ll publ