Pre 1.2.7 release!

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
User avatar
Oliver Georgi
Site Admin
Posts: 9906
Joined: Fri 3. Oct 2003, 22:22
Contact:

Bugs

Post by Oliver Georgi »

Please post your bugs at SourceForge:
http://sourceforge.net/tracker/?group_i ... tid=607698

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
nekket
Posts: 613
Joined: Tue 18. Nov 2003, 15:46
Location: Baden-Baden
Contact:

Re: NAV_TABLE_COLUMN

Post 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
pixelpublic GmbH | Agentur für Neue Medien und Gestaltung
User avatar
Oliver Georgi
Site Admin
Posts: 9906
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post 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
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
ssyfrig
Posts: 364
Joined: Tue 2. Mar 2004, 17:01
Location: Zürich / Switzerland
Contact:

Post by ssyfrig »

@oliver

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

Greez Sven
User avatar
Oliver Georgi
Site Admin
Posts: 9906
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

can't tell yet.

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
phalancs
Posts: 793
Joined: Thu 19. Feb 2004, 05:09
Location: Germany

Post by phalancs »

Yes, i like progress. :)
2008
spirelli
Posts: 996
Joined: Tue 27. Jul 2004, 13:37
Location: London

Post 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.
1996 328ti
Posts: 317
Joined: Mon 19. Apr 2004, 06:10
Location: Greenville, SC USA
Contact:

phpwcms_formtracking

Post 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?
1996 328ti
Posts: 317
Joined: Mon 19. Apr 2004, 06:10
Location: Greenville, SC USA
Contact:

nav_table no longer working properly

Post 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.
User avatar
Oliver Georgi
Site Admin
Posts: 9906
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

check you settings for hidden menus - maybe your home is set not correct.

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
1996 328ti
Posts: 317
Joined: Mon 19. Apr 2004, 06:10
Location: Greenville, SC USA
Contact:

Post 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. :(
User avatar
Oliver Georgi
Site Admin
Posts: 9906
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

it is still working - check your settings.

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
1996 328ti
Posts: 317
Joined: Mon 19. Apr 2004, 06:10
Location: Greenville, SC USA
Contact:

Post 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.
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi 1996 328ti,

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

regards
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
Oliver Georgi
Site Admin
Posts: 9906
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post 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
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
Post Reply