Coppermine Forum Plugin (cpgforum) - Page 3 Coppermine Forum Plugin (cpgforum) - Page 3
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Coppermine Forum Plugin (cpgforum)

Started by foulu, April 01, 2008, 07:46:11 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

foulu

@eenemeenemuu: you found many errors that made by me  :-[ but thanks for it  ;D I will fix these bug in new version with some new feature (soon) !

Αndré

found some typing errors ;)
in adaptor\lang\english.php

line 7:
'index' => "Galery Home",
-> Gallery

line 18:
    'stats_title' => "Forum Stasts",
-> Stats


i haven't looked at the whole file.. but i noticed, that you have a whitespace in front of every "!" and "?".. i don't know if this is intended, but it's (at least in german and i think in english, too) wrong


-
muu

Αndré

1. adaptor\lang\english.php
'registed' => "Registed: ",
-> Registered

2. in forums i know, the topics are ordered by the last post.. in the latest version, it's ordered by msg_id descending.. example: http://photoalbum.ph.funpic.de/cpg/forum.php?board=2

3. i set up, that guests can browse the forum, but when they want to look in a topic it doesn't work: http://photoalbum.ph.funpic.de/cpg/forum.php?topic=506

4. anchors will be useful, e.g. for jumping to the latest post in a topic from the "Info Center -> Recent Post"



sorry for spamming this thread ::) :)


-
muu




pixstreet

#43
themes.inc.php in line 42

find:
{NEW_IMAGE}<span class="album_stat">{NEW}

replace with:
{NEW_IMAGE}<span class="album_stat">{NEW}</span>

unfortunately this only works with English language. I have translated for Polish but it does not work.



http://www.pixstreet.co.uk

Joachim Müller

Never edit include/themes.inc.php - always edit themes/yourtheme/theme.php instead.

foulu

Quote from: Joachim Müller on May 21, 2008, 07:21:00 AM
Never edit include/themes.inc.php - always edit themes/yourtheme/theme.php instead.

Actually, it is adaptor/include/themes.inc.php not include/themes.inc.php.

Joachim Müller

OK, I see - sorry. I suggest renaming this file to avoid future confusion.

Αndré

Quote from: eenemeenemuu on May 20, 2008, 03:02:24 PM
1. adaptor\lang\english.php
'registed' => "Registed: ",
-> Registered

2. in forums i know, the topics are ordered by the last post.. in the latest version, it's ordered by topic_id descending.. example: http://photoalbum.ph.funpic.de/cpg/forum.php?board=2

3. i set up, that guests can browse the forum, but when they want to look in a topic it doesn't work: http://photoalbum.ph.funpic.de/cpg/forum.php?topic=506

4. anchors will be useful, e.g. for jumping to the latest post in a topic from the "Info Center -> Recent Post"



sorry for spamming this thread ::) :)


-
muu





referring to my nr 2 you have to change the sql-statement in "adaptor\source\board.view.php" line 62:

find:
$topic_array = cpgdb_fetch_rowset("SELECT * FROM `{$CONFIG['TABLE_FR_TOPICS']}` WHERE board_id='$board_id' AND is_sticky='0' ORDER BY topic_id DESC LIMIT $start, $limit;");


replace with:
$topic_array = cpgdb_fetch_rowset("SELECT * FROM `{$CONFIG['TABLE_FR_TOPICS']}` WHERE board_id='$board_id' AND is_sticky='0' ORDER BY last_msg_id DESC LIMIT $start, $limit;");

i changed this in my cpgforum on my website.. so my example from yesterday will display the way i want it to display: http://photoalbum.ph.funpic.de/cpg/forum.php?board=2 :)


-
muu

foulu

new version is coming, check the first post of me.

Αndré

#49
1. the text on the new buttons "lock/unlock topic" and "mark sticky/non-sticky" are in the wrong way up.. e.g. if a topic is non-sticky and unlocked on the buttons appear "unlock topic" and "mark non-sticky"

2. if a guest view a topic (and is not allowed to reply to a topic), the "make a reply"-button is still shown (i think this is ok), but no error-message or something is displayed when you click on it.. a blank site appears
//edit: this only occurs with my firefox 3 rc1 .. in opera, safari and ie nothing happens as wished :o

3. if you browse a topic, the navigation bar in top & bottom of the topic display "Topic:<topicname>" without a whitespace after the colon

4. in the board overview, you show the number of topics & posts of each board.. but there is shown the number of replies shown (i have currently 35 posts(!) in the forum "Unternehmungen" - see attachment).. if you want to show the number of posts, you have to add the number of topics to the number of replies ;)
//edit: it seems, that this was the behavior of version 1.0.0 .. new started topics are countet correctly ??? i will test this later when i have more time :)



if i find some other errors i will post it :D


-
muu

Αndré

i currently translate the language file to german.. i will upload it, when it's done :)

pixstreet

adaptor\include\themes.inc.php 

in line 188

<a name="{MSG_ID}">

?
</a>

"Please select a destination:" cannot be translated into another language



http://www.pixstreet.co.uk

foulu

Quote from: eenemeenemuu on May 21, 2008, 03:34:59 PM
i currently translate the language file to german.. i will upload it, when it's done :)

Ok, I will wait for it  ;) will fix some bug which you found and will release it along with your language file.

foulu

Quote from: pixstreet on May 21, 2008, 06:31:38 PM
adaptor\include\themes.inc.php 

in line 188

<a name="{MSG_ID}">

?
</a>

it's normal html struct and it doesn't need </a> to end.

Quote from: pixstreet on May 21, 2008, 06:31:38 PM
"Please select a destination:" cannot be translated into another language



http://www.pixstreet.co.uk

Missing language, I add some in new version but the language is for old version.



pixstreet

you may not need the end, But in topic, when you hover over the underlined page. a number of other items below this point flash along with the page underlined

I know this is only a cosmetic thing, but i am sure others will pick up on it.



http://www.pixstreet.co.uk

foulu

Quote from: pixstreet on May 21, 2008, 06:56:53 PM
you may not need the end, But in topic, when you hover over the underlined page. a number of other items below this point flash along with the page underlined

I know this is only a cosmetic thing, but i am sure others will pick up on it.



http://www.pixstreet.co.uk

uhm, ok, I will fix it, I have no problem in viewing with FF but other people with different browser may encounter problem. Thanks !

Αndré

found duplicate entry in english.php line 79 & 89: 'modify'

i have attached the german language file.. i could translate some lines just without context because i don't found the place where they are used ::)


-
muu

kimweltz

Its a really cool plugin, but sadly I have the same problem as jimmyeao. The buttons dont work. If I click on New Topic in a IE browser, nothing happens, and the browser comes up with "Error on page". It works perfecly in Firefox, but I have many users in the IE browser.

Αndré

Quote from: kimweltz on May 22, 2008, 01:20:11 PM
Its a really cool plugin, but sadly I have the same problem as jimmyeao. The buttons dont work. If I click on New Topic in a IE browser, nothing happens, and the browser comes up with "Error on page". It works perfecly in Firefox, but I have many users in the IE browser.
i think that's a general problem.. it doesn't work in my forum, too

i'll look at it, if foulu hasn't done that until i'm back from holidays :)


-
muu

kimweltz

Quotei'll look at it, if foulu hasn't done that until i'm back from holidays

Sounds good. I am not able to code PHP myself   :(