phpCollab Community
Discuss everything phpCollab!

The forums are currently in READ-ONLY mode while we upgrade the forums.
Home » Development » Development » 2.5 Beta Release 2: Issues, Bugs, Etc.
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3218] Tue, 16 September 2003 00:40 Go to previous messageGo to next message
i-netmedia is currently offline  i-netmedia
Messages: 39
Registered: August 2003
Location: Manchester, UK
phpCollab friend
fullo

I dunno how much buggier is this version because there're not to much bug tester.. and I cannot do everything..
I'm working too on my PhD and as a IT consultant...


This was my point, if you are the only one making any changes then it would soon become overwhelming and while OpenSource is good is doesn't pay the bills lol

Are there any plans to utilise phpCollab to develop the next version?

I know the sourceforge servers can get very slow and wonder if anyone would be prepared to 'commit' to a formal system and role. I would be more than happy to donate webspace and the like for a dev copy (for official developer access only) that we could use as our test bed. This would allow some seperation from SF services which can be confusing to some.

I would like to see something along the line of osCommerce's http://www.oscommerce.com/community/workboard and http://www.oscommerce.com/community/weekly feature's but this can be discussed at the dev meeting which I'll be looking to join in with Smile

I'll go and find the details now and spread the word...

Ed
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3220] Tue, 16 September 2003 00:56 Go to previous messageGo to next message
fullo is currently offline  fullo
Messages: 390
Registered: January 2003
Location: faenza (ra)
phpCollab contributor
phpCollab Project Leader

I've my hosting/housing server too... and devels too... but for the moment the decision was to stay at SF.

There's also a test CVS updated version only for developer installed on a free account of mine (PM if you want to test)

ciuaz
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3233] Wed, 17 September 2003 08:10 Go to previous messageGo to next message
tim
Messages: 16
Registered: September 2003
phpCollab guest
I've made a fresh installation based on all the files from the CVS, 1 bug is noted inside newsdesk.
When I tried to create a News Article and relate this article to a certain project, the drop down menu displays multiple entries of same project.
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3234] Wed, 17 September 2003 08:12 Go to previous messageGo to next message
tim
Messages: 16
Registered: September 2003
phpCollab guest
Ehh sorry, the problem mentioned above is only when I logged in as Admin.
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3260] Sat, 20 September 2003 05:33 Go to previous messageGo to next message
brainfreeze is currently offline  brainfreeze
Messages: 8
Registered: January 2003
phpCollab guest
The sendpassword.php file doesn't give you a "confirmation" that an email has been sent...that page should say "password sent" if all information is correct and then either link to the login screen or have a link to the login screen.

If this exists - it's not working on mine!
Re: newsdesk fetch row and mass email page not found [message #3261] Sat, 20 September 2003 05:47 Go to previous messageGo to next message
Poorlyte is currently offline  Poorlyte
Messages: 3
Registered: August 2003
Location: São Paulo
phpCollab guest

latristesse

1. Newsdesk error:
"Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/server/public_html/phpcollab/includes/library.php on line 800
Table 'server_phpcollab.news' doesn't exist"


This error occurs because the lines below in the file 'administration/updatesettings.php' are missing:

(lines 177 and 178)
\$tableCollab["newsdeskcomments"] = "$table_newsdeskcomments";

\$tableCollab["newsdeskposts"] = "$table_newsdeskposts";

and:

(lines 290 and 291 - Needed when you use a table prefix)
<input value=\"".$tablePrefix."newsdeskcomments\" name=\"table_newsdeskcomments\" type=\"hidden\">

<input value=\"".$tablePrefix."newsdeskposts\" name=\"table_newsdeskposts\" type=\"hidden\">
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3270] Sat, 20 September 2003 20:11 Go to previous messageGo to next message
fullo is currently offline  fullo
Messages: 390
Registered: January 2003
Location: faenza (ra)
phpCollab contributor
phpCollab Project Leader

this was corrected in the cvs times ago
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3276] Sun, 21 September 2003 11:55 Go to previous messageGo to next message
Poorlyte is currently offline  Poorlyte
Messages: 3
Registered: August 2003
Location: São Paulo
phpCollab guest

I see, but the lines 290 and 291 not exists in the cvs. Look:

http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpcollab/phpcollab-2.5/administration/updatesettings.php?rev=1.3&content-type=text/vnd.viewcvs-markup

fullo, don't forget this bug: http://phpcollab.sourceforge.net/viewtopic.php?p=1522#1522


PS: Did you receive my pm with new phpc language?
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3279] Sun, 21 September 2003 17:12 Go to previous messageGo to next message
fullo is currently offline  fullo
Messages: 390
Registered: January 2003
Location: faenza (ra)
phpCollab contributor
phpCollab Project Leader

thanks.. I haven't see that!
yes I've received and added thes file to the cvs

I've correct also the session bug.

I neeeeeeeed a serious bugtrackeeeerrr

ps
note that the SF CVS update the web interface once time a day (at midnight), so if you want get the VERY last release use only CVS client and not the web interface.

ciuaz
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3286] Mon, 22 September 2003 15:27 Go to previous messageGo to next message
Poorlyte is currently offline  Poorlyte
Messages: 3
Registered: August 2003
Location: São Paulo
phpCollab guest

I found more one bug.

When phpc goes detect the browser language it fails when a sublanguage is active.

For exemple: if the language "pt-br" is active phpc only detects "pt".

I wrote a fix to this problem. Verify if it's correct:

if ($langDefault == "")
{
$langDefault = "en";
//language browser detection
if(isset($HTTP_ACCEPT_LANGUAGE))
{
$plng = split(";", $HTTP_ACCEPT_LANGUAGE);
$plng = split(",", $plng[0]);
foreach ($plng as $lng) {
if(file_exists("../languages/lang_".$lng.".php")) {
$langDefault = $lng;
break;
}
else
{
$k = split("-", $lng);
if(file_exists("../languages/lang_".$k[0].".php")) {
$langDefault = $k[0];
break;
}
}
}
}
}
pls help [message #3287] Mon, 22 September 2003 15:30 Go to previous messageGo to next message
usaslaxmi is currently offline  usaslaxmi
Messages: 10
Registered: April 2003
Location: Chennai ,TamilNadu ,India
phpCollab guest

Error in install
Warning: MS SQL message: Parameter 'hourly_rate' has an invalid data type. (severity 16) in E:\websites\php_2.5\installation\setup.php on line 305
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3303] Wed, 24 September 2003 22:27 Go to previous messageGo to next message
weirdlab
Messages: 22
Registered: January 2003
Location: Switzerland
phpCollab guest
The Htmlarea 3 implementation does not work with Mozilla. The textarea is non-editable.

It must be an implementation problem since I have no problem with H3 and some other projects.
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3306] Thu, 25 September 2003 15:34 Go to previous messageGo to next message
fullo is currently offline  fullo
Messages: 390
Registered: January 2003
Location: faenza (ra)
phpCollab contributor
phpCollab Project Leader

mmh I'll take a look tomorrow...
but on my firebird works fine
2.5 Beta Release 2: Issues, Bugs, Etc. [message #3670] Tue, 28 October 2003 03:39 Go to previous messageGo to next message
fullo is currently offline  fullo
Messages: 390
Registered: January 2003
Location: faenza (ra)
phpCollab contributor
phpCollab Project Leader

updated the cvs with the lastest version of:

- js calendar
- htmlAREA 3.0
- R&OS PDF class
- minor template bugfix
- minor xhtml cleaning

please check here the cvs demo version and found bugs!
http://fullo.altervista.org/phpcollab-patched/

log as admin
user: admin
psw: admin

and create your own user...
remember in phpC one user one ip..
so the same user account cannot be used by different ip!

ciuaz
2.5 Beta Release 2: Issues, Bugs, Etc. [message #4331] Fri, 13 February 2004 16:53 Go to previous message
duncanshannon is currently offline  duncanshannon
Messages: 25
Registered: January 2004
phpCollab friend
Hi Fullo-

are you saying you host phpcollab on a server at home? Can i offer you free hosting for the the two phpcollab websites on our servers? npohost.org has free hosting for nonprofit / community groups... this would certainly qualify. (we love phpcollab, and and I have it implemented for my day job which is not npohost.org. We just donated $100 too!) :mrgreen:
Previous Topic: phpCollab with CodeIgniter
Next Topic: Development progress on 2.5?
Goto Forum:
  


Current Time: Tue May 21 19:07:48 CEST 2013

Total time taken to generate the page: 0.26225 seconds