26

(0 replies, posted in Feature requests)

Hi!

I have difficulty in implementing DKIM in include/email.php.
My emails are DKIM signed except when they are sent with php mail function.

Does anyone managed to implement DKIM in punbb email form?

Thank you for your help.

27

(35 replies, posted in PunBB 1.3 extensions)

Thanks, it works perfectly. smile

28

(35 replies, posted in PunBB 1.3 extensions)

Thank you, KANekT.

The following error always appears in my email error.log.

sendmail: fatal: email@example.net: No recipient addresses found in message header

This error can be caused by the configuration of my server, I don't know. Do you have an idea?

29

(35 replies, posted in PunBB 1.3 extensions)

Hi!

On my website, your 1.2.0 update extension doesn't work anymore.

Error.log :

sendmail: fatal: email@example.net: No recipient addresses found in message header

Moreover, there is a problem with "o_pm_email_enable": your manifest.xml installs only:

<install><![CDATA[

        if(!$forum_db->field_exists('users', 'enable_pm_email'))
            $forum_db->add_field('users', 'enable_pm_email', 'TINYINT(1)', false, 1);

    ]]></install>

(See line 39: "if($forum_config['o_pm_email_enable'] == '1')")

30

(35 replies, posted in PunBB 1.3 extensions)

Thank you, it works!

I had to add the line

$forum_db->query_build($query);

in manifest.xml otherwise the first request was not executed :

<install><![CDATA[
        $query = array(
           'INSERT'  => 'conf_name, conf_value',
           'INTO'    => 'config',
           'VALUES'  => '\'o_pm_email_enable\', \'1\'' 
        );
        $forum_db->query_build($query);

        if(!$forum_db->field_exists('users', 'enable_pm_email'))
            $forum_db->add_field('users', 'enable_pm_email', 'TINYINT(1)', false, 1);

    ]]></install>

Hi!

I'm looking for a solution to remove the numbers from the table search_words.
I actually want to index only the words which contain letters (through the file search_idx.php).
I know I need to use regular expressions, but I have not found a solution that works.
Do you have an idea?

Thank you!

32

(28 replies, posted in News)

Hi!

Thank you, dimkalinux.

Is there an error with height in Oxygen.min.css?

select{height:25px;*height:auto;line-height:25px;padding-left:3px}

Thank you for your answer. I don't have subforums extension and I did not install extensions recently (except pun_pm notifier but this error appeared before).

Very nice, thank you!

Hi!

I have today several errors like this in my apache2 error.log :
PHP Warning:  Invalid argument supplied for foreach() in /myboard/index.php on line 176 :

// There are new posts in this forum, but have we read all of them already?
176        foreach ($new_topics[$cur_forum['fid']] as $check_topic_id => $check_last_post)
            {
                if ((empty($tracked_topics['topics'][$check_topic_id]) || $tracked_topics['topics'][$check_topic_id] < $check_last_post) && (empty($tracked_topics['forums'][$cur_forum['fid']]) || $tracked_topics['forums'][$cur_forum['fid']] < $check_last_post))
                {
                    $forum_page['item_status']['new'] = 'new';
                    $forum_page['item_title']['status'] = '<small>'.sprintf($lang_index['Forum has new'], '<a href="'.forum_link($forum_url['search_new_results'], $cur_forum['fid']).'" title="'.$lang_index['New posts title'].'">'.$lang_index['Forum new posts'].'</a>').'</small>';

                    break;
                }
            }

Do you know the cause of this error?

Thank you!

36

(9 replies, posted in PunBB 1.3 extensions)

Tu n’es pas obligé d’avoir "pun_repository" pour installer des extensions.
Tu télécharges une extension, tu la dézippes, tu la mets dans le répertoire Extensions, et tu te rends à cette adresse pour l’installer :
[URL DE TON FORUM]/admin/extensions.php?section=manage

Au sujet des droits, je parle du chmod. Regarde le premier message de cette discussion :
http://punbb.informer.com/forums/topic/ … epository/

37

(9 replies, posted in PunBB 1.3 extensions)

J’imagine que si tu as cliqué sur le lien "Download and install extension", c’est que tu as sûrement installé l’extension "pun_repository" avant.
Si c’est le cas, as-tu essayé de désinstaller "pun_repository" et de télécharger ensuite par FTP tes extensions pour les installer ?

Sinon, n’y a-t-il pas un problème de droits ("pun_repository" doit pouvoir créer des dossiers dans le répertoire "extensions") ?

Bonne soirée.

38

(9 replies, posted in PunBB 1.3 extensions)

Bonjour,

As-tu essayé de télécharger toi-même l’extension (ici, pour la version PunBB 1.3) et de la télécharger par FTP dans le dossier "Extensions" ?
Ensuite, tu pourras l’installer sans problème. Là, avec ton message d’erreur, on dirait que c’est juste le téléchargement qui échoue.

Hello!

This extension was very useful on PunBB 1.3.

Do you know if there is a problem to use it on PunBB 1.4?

Thank you and have a nice day.

40

(22 replies, posted in Development)

Ok, thank you!

41

(22 replies, posted in Development)

Hello,

Will pun_pm extension remove pm (from Private Messaging version v 1.2.9) during the upgrade to Punbb 1.4?

Thank you.

Hello,

Did you try by adding "margin-bottom: 10px" in .brd .main-topic .post?

Thank you.

I wrote this in viewtopic.php:

($hook = get_hook('vt_qr_get_topic_info')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
if (!$forum_db->num_rows($result))
    {
    header('HTTP/1.1 404 Not Found');
    message($lang_common['Bad request']);
    }

and it seems to work.

Hello!

I would also return a 404 error when a topic was deleted. I looked in the file functions.php, but I found nothing interesting.
Do you have an idea?


Thank you.

Ok,
I just install your extension and large topics are displayed more quickly.  Thank you! cool

Yes, I type the command

mysqlcheck -A -r

regularly.

According to you, is there a benefit to use InnoDB engine instead of MyISAM?

I have a very bad Lock Wait ratio (1 : 287).

Great! Thank you very much!  smile

Hello,
I have the same problem (topics with > 8000 posts).
Do you have an idea to adapt the patch
http://fluxbb.org/forums/viewtopic.php?pid=32253#p32253
for Punbb?
I tried without success: only "Topic RSS feed" was displayed.
Thank you.

49

(11 replies, posted in Supported extensions)

Thank you for this release.

Can you tell us what is the difference with the "Fancy Merge Posts 0.2" extension?

Thanks!

50

(60 replies, posted in Supported extensions)

Hello,
This extension is really useful.
However, I would like activate it only in one category on my forum.
So I have modified the manifest file, line 83:

if(!$forum_page['is_admmod'] && ($id == 2)){

$id is forum_id, of course.

But it doesn't work (a user can't edit in all categories) and I don't know why.

I have also another problem: I also have the “merge posts” extension on my forum. And a user has just to add a new post to have the right to edit again.  big_smile

Can you help me?

Thank you!