Page 4 of 11

Bugs

Posted: Tue 20. Jun 2006, 18:03
by Oliver Georgi
Please post your bugs at SourceForge:
http://sourceforge.net/tracker/?group_i ... tid=607698

Oliver

Re: NAV_TABLE_COLUMN

Posted: Tue 20. Jun 2006, 18:03
by nekket
Oliver Georgi wrote:...still problems in IE when hidden stuff. I try to find a bugfix for all menus.


Oliver
Ahh I didn't mentioned that... ok - i hang on :D

Posted: Tue 20. Jun 2006, 19:25
by Oliver Georgi
pico wrote:Hi

have exact the same Problem :( with the Contentparts as Knut has shown

tested with:
updated 1.2.6
fresh install with imported Data

Apache 2.2.0
PHP 5.1.1
mySQL 5.0.18


edited: seems that this Code always run (articlecontent.list.tmpl.php)

Code: Select all

if(!$temp_count) {
	//list all available content parts
	foreach($wcs_content_type as $key => $value) {
		echo "<option value="".$key."">".$value."</option>";
	}
with a change to this it works for me

Code: Select all

if(is_array($article["article_cntpart"]) && count($article["article_cntpart"])) {
	// list all content parts usable for this article category
	foreach($article["article_cntpart"] as $value) {
		if(isset($wcs_content_type[$value])) {
			echo '<option value="'.$value.'">'.$wcs_content_type[$value]."</option>\n";
		}
		$value1 = $value * (-1);
		$temp_count++; // <--------------------------------- -------added by pico
		if(isset($BL['be_admin_optgroup_label'][$value1])) {
			echo '<optgroup label="[ '.$BL['be_admin_optgroup_label'][$value1].' ]" class="cntOptGroup"></optgroup>'."\n";
		}
	} 
Solved! I have found the "bug" - $temp_count was missing. I have prepared new file packages available this evening.

Oliver

Posted: Thu 22. Jun 2006, 11:19
by ssyfrig
@oliver

does the release 1.2.7 contains a FE User Solution? (not the pre 1.2.7 release)

Greez Sven

Posted: Thu 22. Jun 2006, 12:21
by Oliver Georgi
can't tell yet.

Oliver

Posted: Thu 22. Jun 2006, 20:08
by phalancs
Yes, i like progress. :)

Posted: Fri 23. Jun 2006, 22:31
by spirelli
ssyfrig wrote:does the release 1.2.7 contains a FE User Solution? (not the pre 1.2.7 release)
Yes please! It's needed.

phpwcms_formtracking

Posted: Sun 25. Jun 2006, 19:27
by 1996 328ti
I already installed the table phpwcms_formtracking in 1.2.6 so I get an error when upgrading to 1.2.7. Table already exists.

Can I assume all I need to do is run

ALTER TABLE `phpwcms_articlecat` ADD `acat_maxlist` INT( 11 ) NOT NULL DEFAULT '0';
ALTER TABLE `phpwcms_articlecat` ADD `acat_cntpart` VARCHAR( 255 ) NOT NULL ;

to bring 1.2.7 up to date since that was not included in 1.2.6?

Edit:
Turns out acat_maxlist and acat_cntpart are already there.
Do I just ignore this step going from 1.2.6 to 1.2.7?

nav_table no longer working properly

Posted: Sun 25. Jun 2006, 19:52
by 1996 328ti
I use the following for my menu

{NAV_TABLE_COLUMN}
{NAV_TABLE_COLUMN:1}
{NAV_TABLE_COLUMN:131}

{NAV_TABLE_COLUMN} expands properly. (Click on membership)
{NAV_TABLE_COLUMN:x} does not expand.
For instance when I click on {NAV_TABLE_COLUMN:x} the menu should expand to show a submenu.
Clicking on Autocross should should submenus.

Posted: Sun 25. Jun 2006, 21:11
by Oliver Georgi
check you settings for hidden menus - maybe your home is set not correct.

Oliver

Posted: Sun 25. Jun 2006, 21:18
by 1996 328ti
Oliver Georgi wrote:check you settings for hidden menus - maybe your home is set not correct.
It's been so long since I looked at it.
But it was working with 1.2.5.

The thing is, the first set of menus do work. :(

Posted: Sun 25. Jun 2006, 23:19
by Oliver Georgi
it is still working - check your settings.

Oliver

Posted: Mon 26. Jun 2006, 01:17
by 1996 328ti
Oliver Georgi wrote:it is still working - check your settings.
Not on my end. :(

Could be a conflict with a RT.
The last tiime I upgraded I was not able to use the teaser_tag with users_online so I abandoned users_online.

Posted: Mon 26. Jun 2006, 06:43
by flip-flop
Hi 1996 328ti,

at this time it works for me too.
Where have you found the error?

regards
Knut

Posted: Mon 26. Jun 2006, 06:52
by Oliver Georgi
1996 328ti wrote:
Oliver Georgi wrote:it is still working - check your settings.
Not on my end. :(

Could be a conflict with a RT.
The last tiime I upgraded I was not able to use the teaser_tag with users_online so I abandoned users_online.
This is not supported - so please only post errors for non-hacked releases.

Oliver