1

(115 replies, posted in Supported extensions)

Hello,

Is this updated version php7.2 compatible ?
thank you for sharing your work.

2

(55 replies, posted in Supported extensions)

up, please wink

3

(1 replies, posted in PunBB 1.4 bug reports)

up, please.

Hello,

there is an annoying problem somewhere because the " are escaped, which is bad wink :
I want to write this url...
http://pastebin.com/V5hYXWK1
... and that doesnt work nicely.

Direct post :
http://books.google.fr/books?id=Ha0-AAAAYAAJ&q="roule+en+cul"

Formatted with words :
words around

Link wanted :
h*tp://books.google.fr/books?id=Ha0-AAAAYAAJ&q="roule+en+cul"

Hello !

I would like to include google keyboard for the users who dont have a french keyboard.
How to get this done ?

There is a javascript to load, something like :

       <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">

      // Load the Google Onscreen Keyboard API
      google.load("elements", "1", {
          packages: "keyboard"
      });

      function onLoad() {
        var kbd = new google.elements.keyboard.Keyboard(
          [google.elements.keyboard.LayoutCode.FRENCH],
          ['t1']);
      }

      google.setOnLoadCallback(onLoad);
    </script>

And probably something more...

Any help ?

6

(55 replies, posted in Supported extensions)

abclf wrote:

I would like like to request, strongly, for a frequency order rather than an alphabetically one.
Will this be done in an updated version or can someone tell me where is the line to alter to get a frequency order ?

I would like to up my question tongue
thanks.

If you are using the lastest version, should be done the same way as here on punbb.
It is not an extension : it belongs punbb's core.

8

(2 replies, posted in PunBB 1.4 troubleshooting)

Install it first wink

Then, use the "moderate topic" action link : check boxes appear beside every message ; select what you want to move, then click the move button at the bottom. Next choose where to move. If in a new post, I assume you need to create it firstly, before moving (I do this way).

9

(4 replies, posted in PunBB 1.4 troubleshooting)

Try with the native english pack and check your french profil file translation.

10

(55 replies, posted in Supported extensions)

I like and use this usefull extension ; though I assume there is something to be patched for a far better behaviour : the tags are printed out alphabetically (then I will need to print extensively 200 tags to get the complete list).

I would like like to request, strongly, for a frequency order rather than an alphabetically one.

Will this be done in an updated version or can someone tell me where is the line to alter to get a frequency order ?

Thank you.

11

(21 replies, posted in PunBB 1.4 additions)

Yes, it's working for me (chrome). Next and prev link showed while pointing the image.

12

(3 replies, posted in PunBB show off)

Indeed, thank you for sharing the hint. I thought I was more difficult to set up.
I may try something like that and use google as local search engine. Will see.
wink

KeyDog wrote:

great extension;
could be useful to add the toggle function for active topics extension (on front page) aswell...

+1

and maybe check if the cookie is domain limited ; I surfed (first time ever) on http://www.intelifuel.com/forum/index.php and had all the forum there "closed". Because I closed mines on my own forums ?

14

(3 replies, posted in PunBB show off)

Intelifuel wrote:

As you can see, I've integrated (...) Google's custom search in the announcement section.

Not bad.
I may be interested in doing something like this. Would you share how you did ?

hoang83vu wrote:

Tested with the default theme. It was normal. So problem caused by my theme. Not sure if because I use gradients for the forum headers

Disable them and test ; Chrome has an inspector (you can change css on the fly) wich may help you in debugging online.

hoang83vu wrote:

I dont know if its because of my theme or something else, the animation seems very slow and not smooth at all. Can anyone take a look and tell me why? or its just to me?

Not just you : your animation runs slowly. Test with original oxygen theme ; and maybe disable temporary some extensions you may have in use.

+1 ; thank you. I like to close my forums then directly show active topics.

Hello,

I have manually altered my database : everywhere a field's charset was set as latin 1 swedish, I deleted the setting (edit fied > choose [blank] in the list).
After saving, the field's charset is automatically altered in utf8 general ci.
This should allow saving exotic characters in the future.

It looks like it is working as expected now. Thanks for the help.

If this doesn't exist, I would ask for a wiki page containing the sql structure of pristine punbb install.

Hello !

I was testing how utf8 works on my forum, then posted all this text :
http://tinypaste.com/f972e247 (taken from http://www.columbia.edu/~fdc/utf8/)

PunBB shows an error (debugging message) and saves only part of the text. Same problem here on official punbb.org (http://punbb.informer.com/forums/post/143130/#p143130) : saving process stops at Gothic (4):, although preview was showing complete text ; should be something wrong somewhere.

Probably nothing important, though worth mentioning.

lol ; I dont know why, it's not my own choice. And yes, of course, it is suspect.
I assume this is the unaltered setting coming from the old punbb database ; maybe update.php has not changed that (although it was very loooong to process).

What's expected for this table ? Is there somewhere I can see the database structure created by a new punbb install ?

Thank you for your help wink

Do you have any idea about how to test/debug ? or how to get db informations wich could lead us to solve the problem ?

Here it is a structure export for post table :

-- phpMyAdmin SQL Dump
-- version 2.6.4-pl3
-- http://www.phpmyadmin.net
-- 
-- Serveur: xxx.db.1and1.com
-- Généré le : Vendredi 06 Janvier 2012 à 12:07
-- Version du serveur: 5.0.91
-- Version de PHP: 5.3.3-7+squeeze3
-- 
-- Base de données: `xxx`
-- 

-- --------------------------------------------------------

-- 
-- Structure de la table `punbb_posts`
-- 

CREATE TABLE `punbb_posts` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `poster` varchar(200) character set latin1 NOT NULL default '',
  `poster_id` int(10) unsigned NOT NULL default '1',
  `poster_ip` varchar(39) character set latin1 default NULL,
  `poster_email` varchar(80) character set latin1 default NULL,
  `message` text character set latin1,
  `hide_smilies` tinyint(1) NOT NULL default '0',
  `posted` int(10) unsigned NOT NULL default '0',
  `edited` int(10) unsigned default NULL,
  `edited_by` varchar(200) character set latin1 default NULL,
  `topic_id` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `punbb_posts_topic_id_idx` (`topic_id`),
  KEY `punbb_posts_multi_idx` (`poster_id`,`topic_id`),
  KEY `punbb_posts_posted_idx` (`posted`)
) ENGINE=MyISAM AUTO_INCREMENT=89636 DEFAULT CHARSET=utf8 AUTO_INCREMENT=89636 ;
-- 
-- Structure de la table `punbb_config`
-- 

CREATE TABLE `punbb_config` (
  `conf_name` varchar(255) character set latin1 NOT NULL default '',
  `conf_value` text character set latin1,
  PRIMARY KEY  (`conf_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

Yes wink

example : d likes ৪-১ এ জিতল ম্যারাডোনার শিষ্য মেসি হিগুয়েনরা! (পাতা ১) - ফুটবল - খেলাধূলা - প্রজন্ম ফোরাম on foru

Hum, when upgrading my old punbb I have had to migrate the data sql to a new database (export big sql file, upload it, use  http://www.ozerov.de/bigdump/ to run the import in new database, upload new punbb files, run update, change config.php).

The new database is utf-8, tables are utf-8, I don't see anything suspect.
I can write foreign characters in text area and show them nicely in preview (they are processed?) ; when I save (different process?), they are not encoded, just transformed in ????
I'm not sure this trouble is related to punbb ; but, if not, what could be the cause, and how to test (php ? apache ?) ?

Hi all !

I recently upgraded my old 1.2.x punbb to last 1.4.1 ;
it looks like it's working, though I'm experiencing an annoying trouble I need to solve :

I can't save foreign characters ; for exemple, π (pi) gives a question mark when printed out after message was saved (preview worked !) ; foreign characters are not saved in database ; and I have been told  phonectic characters didnt work neither (replaced with question mark : ???).

I need help : where to investigate ? what's wrong in my configuration ? what to do ?

(if needed, may be tested there : http://www.languefrancaise.net/forum/vi … .php?id=9)

As for sql, all punbb informations are stocked in a single database where all tables (excepted old tables not in use anymore) are utf8_general_ci ; nothing about encoding in my config.

Looking at the files in 1.4.1 I was surprised to note that some appear to be utf8 (register.php) and some windows1252 encoded.

Thank you !

images : http://imgur.com/a/inY0c#0

Interesting ; thank you KeyDog.

Can we ask/suggest ?

I would like an anchor #active written in the core at the beginning of the active topics box.
I would prefer, in my case, active topics at the top, upon forums, thus a option where to put it would be nice (or a tabbed dual option : tab normal view, tab active topic view + cookie). I still prefer how Vanilla list topics and would love to have a punbb more linear oriented.
Anyway, this is a must have extension I have used all the time and be happy to get for 1.4 ; thanks for your work.