Could it be possible to modify the mod so that more then 3 chats 'lines" could be opened directly with the login ?

27

(4 replies, posted in PunBB 1.2 troubleshooting)

Did you made any changes in the code for example in a language file or did you use a different config.php file which could occurs a blank page ?
I had the problem once that a use a local development machine and upload the modified files with an ftp-porgram and by accident I uploaded the local config.php.  Have a look if something simple is the reason.

28

(7 replies, posted in PunBB 1.2 show off)

I'm interested in the collaboration theme for a CMS. Back-office tools for editor, integration of Back-Office solutions like open office or MS Office or archive solutions. Version control and automatic rotation of articles or themes. If you have requests or ideas give me a hint.

29

(3 replies, posted in PunBB 1.2 troubleshooting)

Do you have a link to the site ?

Does anybody has an answer to my questions about fonts and size?

you ought to use a mailing list system instead

So how would you organize it that a post will be at the right category at the right place and how who who handle the queue so that to makes sense to read a category or is it just something to send post to like a basket ? What will you do with miss addressed posts ?

Hi,
I asked a couple days ago, how Events could be coloured in the calendar, I have been have way through that but unfortunately just the half way.
To explain I have made screen shoots to explain what I tried and I somebody could help me to get the other half to say that works.

Just to explain why it is important to have coloured Events at the calender, For each country I will choice a colour. 

So a Added

<font color=#669900><span style=font-size:2.1em>Wh

to colour and size the Title of a new Event.

The display results for the same Events typing are totally different:

On Portal Index Page The box for events contains the information and the Event will show up as follow ( not what I want)
http://www.galopp-sport.eu/forumgalopp/up_pics/cal01.jpg

at the calender overview
the result is as wished
http://www.galopp-sport.eu/forumgalopp/up_pics/cal02.jpg

when you double click to open The Event the result is:
http://www.galopp-sport.eu/forumgalopp/up_pics/cal03.jpg 
( not what I want)

but finally when you open to edit the Event the system shows you it like this:

http://www.galopp-sport.eu/forumgalopp/up_pics/cal04.jpg 

the result is as wished

So 4 displays of one Event and 2 correct and 2 incorrect

At the first image the Title is wrong displayed
At the second image the Title is correct displayed
At the third image the body is wrong displayed
last but not least at image no. 4 both Title and body are displayed correct.

Does anybody have a idea why the display do what the shall and twice they don't?

Would there a way to have totally control about the display regarding colour and size ?

body is

34

(10 replies, posted in Feature requests)

would somebody be interested to set up a mod to have a front end for international sites?

Please let me know, we could develop it together so that there will be a useful tool for everybody operating internationally.

35

(10 replies, posted in Feature requests)

Properly You should start with a check which language a potential user/reader is using at browser level therefore you can read  $_SERVER["HTTP_ACCEPT_LANGUAGE"]

see more details about language tags at w3.org
http://www.w3.org/International/article … iew.en.php


?php
    $language = $_SERVER["HTTP_ACCEPT_LANGUAGE"];
    switch($language) {
    case 'de': $forward = 'check/de/welcome_register.php';break;
    case 'en': $forward = 'check/en/welcome_register.php';break;
    default: $forward = 'check/en/welcome_welcome.php';
    }
    header ("location: $forward");
?>

With that sample you have to generate complete new pages for each language other possibility is



<?php
    $language= $_SERVER["HTTP_ACCEPT_LANGUAGE"];
    switch($language) {
    case 'de': include('includes/de/navigation.php');break;
    case 'en': include('english_navigation.php');break;
    default: include('english_navigation.php');
    }
?>

third way could be

<?php
    $language= $_SERVER["HTTP_ACCEPT_LANGUAGE"];
    mysql_query("SELECT text FROM $language WHERE id = $id");
?>

or

<?php
    $language= $_SERVER["HTTP_ACCEPT_LANGUAGE"];
    if ( eregi('de', $language) ) {}
?>

but never less the user has to have a choice to change the language to his native once:

<?php
    if ( isset($_GET["language"]) ) {$language= $_GET["language"];}
    elseif ( isset($_POST["language"]) ) {$language= $_POST["language"];}
    else {$language= $_SERVER["HTTP_ACCEPT_LANGUAGE"];}
?>

36

(17 replies, posted in General discussion)

pedrotuga wrote:

but all those butons refer to functions that the bbcode doesnt have

All these buttons are doing what they promise and I doesn't matter if IE or FF, so a GUI Style for the buttons, a relocating and it looks like a word editor. Example when you double click a word or a sentence or a paragraph the function will do the bb-coding for you, even two or more of the codes for one word. What a "standard" forum User would like to see is that the bbcode tags are invisible when editing this text, that could be a bit more sophisticated to do.

In a multi national forum , people could write in their native language, and if somebody wants to understand the writing because he/she is poor in this particular language, he/she just press a button at "postleft" of this special post and it will pop up the translation done for example by google or any other translation software solution . It's a dynamic request and is just show in a temporary box. like a preview. Does this explanation makes it a little bit clearer ?

At the first step we are not talking about quality of translation, that's a different theme.

Hi Notch,
here you can see the subforums mod working

http://galopp-sport.eu/forumgalopp/upload/forum.php in combination with collapse [klick here] of categories like "Throughbred Racing" you find the topics "race tracks" and below that are the subforums for different countries.

Have a look at jump to at the foot und you will see the levels at which category you will find subforums

Hello, would it be possible to generate a user who could post but the details which are posted in viewtopic as "postleft" and also the functions "report ... quote"  aren't shown at all. So it would be a possibility to post ads at any place in a forum. The poster should have the choice to delete or move his posting. Any ideas how that could be programmed ?

Does anybody thought about to integrate the translation functions of google for posts?
Like have  a pulldown menu to choice the language "from to" and a second radio button to translate it, shown like a preview ?

41

(10 replies, posted in Feature requests)

Janson does I understood your writing correctly, with the new 1.3 all mods I have integrated will be upgraded just in the upgrade process, because that is something I'm worried about, how I will transfer my "new" system to the next generation of PunBB. At the moment I have more then 15 plugins and around 50 mods integrated.

superb
That how the things are going on

Here is the link to the documentation how to modify the wki system
http://wiki.splitbrain.org/wiki%3Amanual

Hi,
some times it's magic.
After searching at least 2h in the admin panel and at the folders how it works and after writing the post above I checked again the download file and I don't know why and how by uploading from punbb the folder plugins wasn't transfer d, so it's clear why I can't find anything at the admin panel.
I have checked again the installation guide:

#
#---------[ 1. UPLOAD ]-------------------------------------------------------
#

/lang/English/*.* to /lang/English/*.* (for additional languages check PunRes)
/style/imports/*.* to /style/imports/*.*
/wiki/*.* to /wiki/*.* (if upgrading remember not to overwrite your wiki data)
doku.php to /
feed.php to /
media.php to /

install_mod.php to /

#

It would make live more easy for the next to add the plugin transfer there.

Hi,
I have installed the wiki files, checked three times and still have no choice to add a pages to wiki, this message occurs:

Welcome

Welcome to your new PunDokuWiki?

    * You might need to set permissions in the punbb admin panel if you have not done so already :)

    * To change the name of the wiki or the default page you need to edit ./wiki/conf/dokuwiki.php

    * You might also need to add a menu item in admin options or maybe a redirect forum to point to the wiki

Where could a set permissions to wiki at admin panel, is it a plugin which doesn't pop up or where is the functionality to find?

It took a while but now I knew how to change the width at my style for the viewtopic area.

to change:

/************************************/
/* 7.1 This is the basic structure. */
/************************************/

DIV.postleft, DIV.postfootleft {
    FLOAT:left;
    WIDTH: 20em; /*User profile */
    OVERFLOW: hidden
}
        
DIV.postright, DIV.postfootright {
    FLOAT: right;
    WIDTH: 21em;/*Post*/
    OVERFLOW: visible
}

above I had experimented with the Xem
and

/*********************************************************************************/
/* 7.3 This is the div which actually contains the post and is inside .postright */
/*********************************************************************************/

DIV.postmsg {WIDTH:200%}

here I changed the width from 100% up to 200%

So now it's so it ought to be.

Does anybody has this mod actually running ?

The modifications, remarks 

Pogenwurst wrote:

Around here (I'd give a line number but mine are out of sync because I had to make it play nice with the invitations mod):

made are fine, but in Line 676, 770, 792, 812  and 822 it looks that there are problems with the foreach statement and Array. I'm not so experienced with changing it to a  while statement, that's what I have found out could help.

Here are the error message when updating tags

Warning: Invalid argument supplied for foreach() in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 770

Warning: Invalid argument supplied for foreach() in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 792

Warning: in_array() [function.in-array]: Wrong datatype for second argument in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 815

Warning: in_array() [function.in-array]: Wrong datatype for second argument in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 815

Warning: Invalid argument supplied for foreach() in /homepages/26/d34113660/htdocs/forumgalopp/upload/expertise.php on line 822

48

(1,382 replies, posted in General discussion)

music

49

(17 replies, posted in General discussion)

It shouldn't be difficult, I have to redesign and recolour the buttons and the location and  punbb will have something similar for the end-user interface

http://www.galopp-sport.eu/forumgalopp/post_new_look.jpg

50

(17 replies, posted in General discussion)

Here is a sample how it could look like

http://www.galopp-sport.eu/forumgalopp/text_editor.jpg