21
petitours
Publisher 1.0 RC1
  • 2013/4/23 21:52

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


Hi

I use publisher beta 1 since 2011 and I like it !
(look at the news on www.68hc08.net and www.id3e.fr)

I'm looking for the last publisher 1.00 RC1 and I want to make documentation for the French community.

but...I get an installation error message :
Quote:

A problem has occurred on our server!
Page is currently unavailable

We are working on a fix
Please come back soon ...

Error : Smarty error: [in db:publisher_items_columns.html line 1]: syntax error: unidentified token '#039;normal'' (Smarty_Compiler.class.php, line 1410)


after installation, I get an error when I go to the preferences of the module :
Quote:
404 Not Found

The requested URL /modules/publisher/admin/admin/index.php was not found on this server.


note : I use php 5.2 (because of NewBB 3.08)

Thank you in advance for your help
Thank you Trabis for this excellent module !



22
petitours
Re: If we were to start a 2.6 Branch what would you like to see.
  • 2012/4/16 22:36

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


Hello

I'm not competent to help in the development of XOOPS but I congratulate developers with a lot of thanks !

I help as I can : I make the pub...a lot of pub with my friends colleagues !

Thank you Mamba, Kris (I'm french too...) and more...
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



23
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/16 21:48

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


Quote:

boxcar wrote:
Hi all,

I have tried both Liase and xForms on Xoops 2.5.4 without success.

I get both installed properly. I am able to create forms (and all other admin action). However, I am not able to see either in a block. If I select the url of the "Send Feedback" form or one of my own, I get a blank screen.

Can anyone tell me what I am doing wrong.

boxcar
I don't know this problem... I can't help you, sorry
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



24
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/16 21:46

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


yess ! problem is done !

Change in class/elementrenderer.php

case 'checkbox':
                
$selected = array();
                
$options = array();
                
$opt_count 1;
                while( 
$i each($ele_value) ){
                    
$options[$opt_count] = $i['key'];
                    if( 
$i['value'] > ){
                        
$selected[] = $opt_count;
                    }
                    
$opt_count++;
                }
                
                
$form_ele = new XoopsFormElementTray($ele_caption$delimiter == 'b' '<br />' ' ');
                while( 
$o each($options) ){
                    
$t =& new XoopsFormCheckBox(
                        
'',
                        
$form_ele_id.'[]',
                        
$selected
                    
);
                    
$other $this->optOther($o['value'], $form_ele_id);
                    if( 
$other != false && !$admin ){
                        
$t->addOption($o['key'], _xforms_OPT_OTHER.$other);
                    }else{
                        
$t->addOption($o['key'], $myts->stripSlashesGPC($o['value']));
                    }
                    
$form_ele->addElement($t);
                }
            break;


by
case 'checkbox':
                
$selected = array();
                
$options = array();
                
$opt_count 1;
                while( 
$i each($ele_value) ){
                    
$options[$opt_count] = $i['key'];
                    if( 
$i['value'] > ){
                        
$selected[] = $opt_count;
                    }
                    
$opt_count++;
                }
                
                
$form_ele = new XoopsFormElementTray($ele_caption$delimiter == 'b' '<br />' ' ');
                while( 
$o each($options) ){
                    
$t =& new XoopsFormCheckBox(
                        
'',
                        
$form_ele_id.'[]'.$o['value'],
                        
$selected
                    
);

                    
$other $this->optOther($o['value'], $form_ele_id);
                    if( 
$other != false && !$admin ){
                        
$t->addOption($o['key'], _xforms_OPT_OTHER.'</label><label>'.$other);
                    }else{
                        
$t->addOption($o['key'], $myts->stripSlashesGPC($o['value']));
                    }                    
                    
$form_ele->addElement($t);
                }
            break;


There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



25
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/16 18:51

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


My first idee is not good... label tag generation is based on XoopsFormCheckBox fonction...

I must modify elementrenderer.php to make good ID for Input and Label tags... it's hard for me ! go go go
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



26
petitours
xForms bug
  • 2012/2/16 18:21

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


Hi

I'm looking for a solution to the bug (see #11https://xoops.org/modules/newbb/viewtopic.php?post_id=344188#forumpost344188)

Where can I find the Label tag generation in the xForms code ? A search for "label" in all xForms files does not give me any result...

I try to delete all Label tag generation.

Thank you in advance
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



27
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/15 21:29

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


Re

I think I found a problem...

All the input (checkbox) are with the same ID
id="ele_19[]1"

all the label are for the same ID
for="ele_19[]1"


<td xmlns="http://www.w3.org/1999/xhtml" class="even"><input type="checkbox" value="1" title="" id="[color=990000]ele_19[]1[/color]" name="ele_19[]"/><label for="ele_19[]1" name="xolb_ele_19[]">first</label
 <
input type="checkbox" value="2" title="" id="ele_19[]1" name="ele_19[]"/><label for="ele_19[]1" name="xolb_ele_19[]">2d</label
 <
input type="checkbox" value="3" title="" id="ele_19[]1" name="ele_19[]"/><label for="ele_19[]1" name="xolb_ele_19[]">3d</label
 <
input type="checkbox" value="4" title="" id="ele_19[]1" name="ele_19[]"/><label for="ele_19[]1" name="xolb_ele_19[]">Other: <input type="text" value="" maxlength="255" size="30" id="other[ele_19]" title="" name="other[ele_19]"/></label
</
td>


I see the bug only with firefox but the bug seems logical...

Am I wrong ?

thank you in advance
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



28
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/15 20:33

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


"If I delete the "other" in the brackets {} the problem is gone"
It's wrong : same problem !

The problem come from label tag. Whith opera it's OK, but with firefox you can see the bug, with or without "other" in the brackets {}.
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



29
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/15 18:00

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


If I delete the "other" in the brackets {} the problem is gone
...but I need the other textbox

panwac, You are very lucky ! but the red warning is a Liaise system diagnostic.
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net



30
petitours
Re: Liaise on Xoops 2.5.4
  • 2012/2/14 23:28

  • petitours

  • Just popping in

  • Posts: 53

  • Since: 2005/6/9 1


Whith Liaise or Xform, I see a bug with check boxes elements.

When you click on "other" textbox, it's checking/unchecking the first checkbox !

You can test the bug here
http://www.68hc08.net/modules/xforms/?form_id=2
There are 10 categories of people in the world : Those who understand the binary code and the others.
www.68hc08.net




TopTop
« 1 2 (3) 4 5 6 »



Login

Who's Online

144 user(s) are online (95 user(s) are browsing Support Forums)


Members: 0


Guests: 144


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits