0.9.16.014 proposed release 2

View: New views
7 Messages — Rating Filter:   Alert me  

0.9.16.014 proposed release 2

by Dave Hall-7 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,

I have fixed some more issues and cut a new tarball for testing.  Please
help us test it before 0.9.16.014 goes out the door.

The tarball is available from
http://phpgroupware.org/downloads/phpgroupware-0.9.16.014-proposed.tar.bz2

Alternatively you can grab it from svn at
svn://svn.sv.gnu.org/phpgroupware/tags/Version-0_9_16-014-proposed or if
you want to track the branch try
svn://svn.sv.gnu.org/phpgroupware/branches/Version-0_9_16-branch

Comments here, bugs on the tracker, thanks.

Cheers

Dave



_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Re: 0.9.16.014 proposed release 2

by Giorgio Pioda :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



Hi,

after clean svn checkout and installation I have no way to log into phpgroupware ("Your session couldn't be verified" message in the login mask). Strange... With "014-rc1" I had not this problem

Same issue triing to update from 012 version.

cheers

gfwp

.

Sent from the phpGroupWare forums @ forums.phpGroupWare.org


_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Re: 0.9.16.014 proposed release 2

by Giorgio Pioda :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



Sorry,

I probably nessed up something during installation. Today it is ok out of fudforum not working.

For Fudforum, it is a bug NOT previously reported in savannah. The fudforum installation hangs at the moment of the population of the /phpgroupware/files/fudforum directory (error time out on line 106 of index.php). Actually the directory is effectively populated but the error is repeated over and over during login trials.

(I'm still not sure if it is effectively a bug or just a stupid configuration error)

cheers.

Sent from the phpGroupWare forums @ forums.phpGroupWare.org


_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Re: 0.9.16.014 proposed release 2

by Giorgio Pioda :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



Ok, repliing again to myself.

I'm running debian lenny with stock apache2 php5 mysql.

Fudforum is not installable. the setup/index.php hangs with many "permission denied" at line 106 (copy) , 107 (chmod), line 99 (mkdir). Rights in the file systems are ok (or I believe it). Safe_mode is off. Suhosin patch is already applied into stock php5.

Any Ideas?

cheers

gfwp.

Sent from the phpGroupWare forums @ forums.phpGroupWare.org


_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Re: 0.9.16.014 proposed release 2

by Giorgio Pioda :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



And a lot of .svn files are opened, too ....

Sent from the phpGroupWare forums @ forums.phpGroupWare.org


_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Re: 0.9.16.014 proposed release 2

by Giorgio Pioda :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



For the .. files here attached a proposal (around Line 100-130

but still not able to copy files anf chmod them.

Sent from the phpGroupWare forums @ forums.phpGroupWare.org


_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers

Re: 0.9.16.014 proposed release 2

by Giorgio Pioda :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Here.

Sent from the phpGroupWare forums @ forums.phpGroupWare.org

/* Create non-web directories needed for FUDforum operation */
        $dir_ar = array('include', 'src', 'errors', 'messages', 'files', 'thm', 'sql', 'tmp', 'cache', 'errors/.nntp', 'errors/.mlist');
        if (!is_dir($fud_write_dir)) {
                mkdir($fud_write_dir, 0700);
        }
        while (list(,$d) = each($dir_ar)) {
                if (!is_dir("{$fud_write_dir}/{$d}")) {
                        mkdir("{$fud_write_dir}/{$d}", 0700);
                }
                if (is_dir(PHPGW_SERVER_ROOT."/fudforum/setup/base/{$d}")) {
                        $dir = opendir(PHPGW_SERVER_ROOT."/fudforum/setup/base/{$d}");
                        #readdir($dir); readdir($dir);
                        while ($f = readdir($dir)) {
                                if ($f != "." && $f != ".." && $f != ".svn" && $f != ".htaccess") {
                                        if (!is_dir(PHPGW_SERVER_ROOT."/fudforum/setup/base/{$d}/{$f}")) {
                                                copy(PHPGW_SERVER_ROOT."/fudforum/setup/base/{$d}/{$f}", "{$DATA_DIR}{$d}/{$f}");
                                                chmod("{$DATA_DIR}{$d}/{$f}", 0600);
                                        } else {
                                                $dir_ar[] = "{$d}/{$f}";
                                        }
                                }
                        }
                        closedir($dir);
                }
        }

        /* Create web directories & files needed FUDforum operations */
        copy(PHPGW_SERVER_ROOT."/fudforum/setup/base/www_root/blank.gif", PHPGW_SERVER_ROOT."/fudforum/blank.gif");
        copy(PHPGW_SERVER_ROOT."/fudforum/setup/base/www_root/lib.js", PHPGW_SERVER_ROOT."/fudforum/lib.js");
        $dir_ar = array('adm', 'images');
        while (list(,$d) = each($dir_ar)) {
                if (!is_dir("{$WWW_ROOT_DISK}/{$d}")) {
                        mkdir("{$WWW_ROOT_DISK}/{$d}", 0700);
                }
                if (is_dir(PHPGW_SERVER_ROOT."/fudforum/setup/base/www_root/{$d}")) {
                        $dir = opendir(PHPGW_SERVER_ROOT."/fudforum/setup/base/www_root/{$d}");
                        #readdir($dir); readdir($dir);
                        while ($f = readdir($dir)) {
                                if ($f != "." && $f != ".." && $f != ".svn" && $f != ".htaccess") {
                                        if (!is_dir(PHPGW_SERVER_ROOT."/fudforum/setup/base/www_root/{$d}/{$f}")) {
                                                copy(PHPGW_SERVER_ROOT."/fudforum/setup/base/www_root/{$d}/{$f}", "{$WWW_ROOT_DISK}{$d}/{$f}");
                                                chmod("{$WWW_ROOT_DISK}{$d}/{$f}", 0600);
                                        } else {
                                                $dir_ar[] = "{$d}/{$f}";
                                        }
                                }
                        }
                        closedir($dir);
                }
        }


_______________________________________________
phpGroupWare-developers mailing list
phpGroupWare-developers@...
http://lists.gnu.org/mailman/listinfo/phpgroupware-developers