Also try replacing in the config.php file

$base_url = 'http://...

to

$base_url = 'https://...

Open page /admin/index.php?action=phpinfo
Scroll to PHP Variables table
See $_SERVER['HTTPS'] and $_SERVER['SERVER_PORT']. They must be equal to on and 443.
What are the real values there?

Mixed content (styles and scripts are loaded via http).

If your forum is configured to work only via https, then add the following code to the end of the config.php file:

$_SERVER['HTTPS'] = 'on';
$_SERVER['SERVER_PORT'] = '443';

4

(85 replies, posted in News)

46. Optimize the sef_friendly() function

1. Removed mb_convert_encoding() (this is an encoding conversion, not a character conversion) and utf8_decode() (inferior to the initial conversion strtr($str, $lang_url_replace)). There is no point in using them.
2. The transliterator will be called only if a character not belonging to the basic Latin is found in the string.
3. The transliterator_transliterate() function has been replaced with creating a transliterator, since this function creates a new transliterator each time, which on some systems (probably where there are old ICU libraries) can significantly slow down the script ( https://forkbb.ru/post/286#p286 )

https://github.com/MioVisman/punbb/comm … 276dfa7519

5

(3 replies, posted in PunBB 1.4 bug reports)

You can try to replace

 
        $text = preg_replace_callback($pattern_callback, function($matches, $errors) {
            return preparse_list_tag($matches[2], $matches[1], $errors);
        }, $text);

to

        $text = preg_replace_callback($pattern_callback, function ($matches) use (&$errors) {
            return preparse_list_tag($matches[2], $matches[1], $errors);
        }, $text);

6

(3 replies, posted in PunBB 1.4 bug reports)

show lines 50 to 70 from file /include/parser.php

7

(2 replies, posted in PunBB 1.4 bug reports)

After nothing happens, open the console in your browser and read the information about javascript errors on your forum page.

> ../extensions/pun_jquery/lang/English/lang.php
Is this file missing? Check it out.

>Can someone help me please how can I delete this extension?
Open your database, for example in phpMyAdmin.
Open the extensions table to view data.
Look for a post with information about Upload images to post 3.0.0.RC1 by hcs. You need his id.
Go to extension_hooks table and delete all records with extension_id = extension id Upload images to post 3.0.0.RC1 by hcs.
Return to the extensions table and delete the extension entry Upload images to post 3.0.0.RC1 by hcs.
After that, delete the cache_hooks.php file in the cache folder.

P.S. If there is no extension information in the extensions table, then delete all records in the extension_hooks table that have an extension_id that do not exist in the extensions table.

https://punbb.informer.com/forums/post/158401/#p158401
Make at least the changes prescribed in the first two paragraphs:
1. Fix warning for continue in PHP 7.3
2. Fix for PHP 7.4

10

(4 replies, posted in PunBB 1.4 bug reports)

On the server, open the error log (in the control panel or the file error.log, php_error.log and similar) and show your errors.

If you are using php 7.3+ or mysql 8+ then you should probably switch to my punbb version https://punbb.informer.com/forums/post/158390/#p158390
Or make the changes you need to your code manually (all commits on GitHub).
Note: If you use additional bb codes in the form of extensions, then they may not work on my version, since there are changes in the parser relative to the original punbb 1.4.4.

On the server, open the error log (in the control panel or the file error.log, php_error.log and similar) and show your errors.

If you are using php 7.3+ or mysql 8+ then you should probably switch to my punbb version https://punbb.informer.com/forums/post/158390/#p158390
Or make the changes you need to your code manually (all commits on GitHub).
Note: If you use additional bb codes in the form of extensions, then they may not work on my version, since there are changes in the parser relative to the original punbb 1.4.4.

PunBB v1.4.6 by Visman

1.4.4

Is this a good solution?

Looks right.


P.S. Advertising smile : https://punbb.informer.com/forums/topic … vamediajs/

13

(1 replies, posted in Feature requests)

The search gives this result:
https://punbb.informer.com/forums/topic … -sceditor/
https://punbb.informer.com/forums/topic … -to-punbb/
https://punbb.informer.com/forums/topic … g-tinymce/
https://punbb.informer.com/forums/topic … unbb-1214/

14

(85 replies, posted in News)

40. Fix for PHP 8.1
https://github.com/MioVisman/punbb/comm … 6d3a2a77ac
https://github.com/MioVisman/punbb/comm … 2af6ba15a8
https://github.com/MioVisman/punbb/comm … f802e34c82

41. Update install
https://github.com/MioVisman/punbb/comm … f0e71a9e1b
https://github.com/MioVisman/punbb/comm … 1b8f09dbdd
https://github.com/MioVisman/punbb/comm … ed5db23ab3
https://github.com/MioVisman/punbb/comm … c9bfcfea68

42. Fix db_update
https://github.com/MioVisman/punbb/comm … 76e0d2853d

43. Minor/secur updates
https://github.com/MioVisman/punbb/comm … 69a0104ace
https://github.com/MioVisman/punbb/comm … 9b0cd7525e
https://github.com/MioVisman/punbb/comm … 8af03fb5d0
https://github.com/MioVisman/punbb/comm … 08b760a9dd
https://github.com/MioVisman/punbb/comm … a3ce66ef5e
https://github.com/MioVisman/punbb/comm … 8c95dc4cba
https://github.com/MioVisman/punbb/comm … a8a8d54fb1

44. Fix for PHP 8.2
https://github.com/MioVisman/punbb/comm … 4c3ebd87e3

45. Again trying to solve the “database is locked” problem for SQLite  (Change transaction mode for multithreaded mode.)
https://github.com/MioVisman/punbb/comm … c8b1d5d659

config.php

// SQLite3 busy timeout -> after waiting for that time we get 'db is locked' error (in msec)
//define('FORUM_SQLITE3_BUSY_TIMEOUT', 10000);

// SQLite3 WAL mode has better control over concurrency. Source: https://www.sqlite.org/wal.html
//define('FORUM_SQLITE3_WAL_ON', 1);

replace to or add

// SQLite3 busy timeout -> after waiting for that time we get 'db is locked' error (in msec)
define('FORUM_SQLITE3_BUSY_TIMEOUT', 5000);

// SQLite3 WAL mode has better control over concurrency. Source: https://www.sqlite.org/wal.html
define('FORUM_SQLITE3_WAL_ON', 1);

https://punbb.softplaza.net/ ?

16

(5 replies, posted in PunBB 1.4 bug reports)

I don't have this parser.php as I maintain a different version of punbb with my edits: https://punbb.informer.com/forums/post/158390/#p158390

17

(5 replies, posted in PunBB 1.4 bug reports)

You can try editing the parser.php file

function do_bbcode($text, $is_signature = false)
{
    global $lang_common, $forum_user, $forum_config;

-->

function do_bbcode($text, $is_signature = false)
{
    global $lang_common, $forum_user, $forum_config;

    $pattern_callback = array();

18

(47 replies, posted in PunBB 1.4 additions)

v 2.7.6

+ facebook - beta test

* vimeo.com - use oEmbed, support more links
* rutube - support t parameter
* yandex maps - support for different domain zones
* audiomack - support albums

19

(85 replies, posted in News)

eval()'d code on line

Extension failed. Turn them off one at a time to find the culprit.

20

(1 replies, posted in Discussions)

MariaDB 10.5 is similar to MySQL 8
see
https://github.com/MioVisman/punbb/issues/1
https://github.com/MioVisman/punbb/issues/2

21

(85 replies, posted in News)

Quickly tested installing the forum from scratch, creating a new category, creating a new partition, creating a new message on Win7 + PHP 8.2 RC2 + SQLite3 3.33.0. There are no warnings or errors.

22

(85 replies, posted in News)

The current variant https://github.com/MioVisman/punbb/arch … master.zip has been tested on Win7 + PHP 8.2 RC2 + mysql 5.7.24. I found no problems.

23

(1 replies, posted in Discussions)

use https://punbb.informer.com/forums/post/158390/#p158390

24

(47 replies, posted in PunBB 1.4 additions)

v 2.6.0

+ music.yandex.ru (support albums links)

P.S. @Anders, пробуйте.

25

(47 replies, posted in PunBB 1.4 additions)

А у яндекса есть бесплатный контент?
Потыкался я по песням/альбомам, больше 20 сек слушать ни чего не давали.