This board is the new home for david63's extensions.

All of the extensions hosted here will need to be treated as a new install as there is no migration from the original ones to these, and furthermore, no support will be given to migrating to any of these extensions from previous versions.


Due to the selfishness of certain board members it has become necessary to apply a limit of how many downloads each member can make before making a donation. Once a donation has been made then you will have unlimited downloads.

[3.3.1] Privacy Policy

Fully working extensions for phpBB 3.3.x
User avatar
devspace
Owner
Owner
Posts: 343
Joined: October 2022

Re: [3.3.1] Privacy Policy

Post by devspace »

chuppito wrote: 19 Oct 2023 17:17
Hello, it is impossible for me to activate the extension. If you have an idea. THANKS


Image
Why? What error are you getting?

chuppito
Member
Member
Posts: 3
Joined: October 2023

Re: [3.3.1] Privacy Policy

Post by chuppito »

I don't know why I get this error. I managed to correct it directly in the database by changing the values. It is activated but it does not appear in the ACP extensions.

If I understand the error, it tells me that an extension already exists but I can't find it.
"A problem was encountered during the database update operation. Changes already applied have been rolled back as best as possible, please check your forum for errors.

A module already has this name: PRIVACY_POLICY"


Image

Image


Image

chuppito
Member
Member
Posts: 3
Joined: October 2023

Re: [3.3.1] Privacy Policy

Post by chuppito »

I was able to correct it and it works very well. I searched the database for the old name (david63) and I had 3 hits. I deleted them and everything came back to normal. THANKS

Richard Russell
Member
Member
Posts: 2
Joined: February 2024

Re: [3.3.1] Privacy Policy

Post by Richard Russell »

It irritates me that the Cookies message says "you need accept this policy" rather than "you need to accept this policy". To me, anyway, "need accept" isn't English; if there's an issue of space it could be changed to "must accept" which is pretty much synonymous with "need to accept".

This has been a longstanding annoyance, can it be fixed? Or does this message not come from the extension at all?

User avatar
devspace
Owner
Owner
Posts: 343
Joined: October 2022

Re: [3.3.1] Privacy Policy

Post by devspace »

Richard Russell wrote: 05 Feb 2024 09:55
This has been a longstanding annoyance, can it be fixed? Or does this message not come from the extension at all?
You are free to change any language that you want in the language file of the extension.

Richard Russell
Member
Member
Posts: 2
Joined: February 2024

Re: [3.3.1] Privacy Policy

Post by Richard Russell »

devspace wrote: 05 Feb 2024 12:37
You are free to change any language that you want in the language file of the extension.
Maybe so, but surely the standard file should contain correct English. "Need accept" feels like a typo to me.

MickrozNL
Donor
Donor
Posts: 4
Joined: January 2025

Re: [3.3.1] Privacy Policy

Post by MickrozNL »

When i install this extension, my board goes down and i get an http 500 error.
I have this with multiple extensions from here, running:

Code: Select all

Database server:	MySQL(i) 10.3.22-MariaDB
PHP version:	7.3.15
Board version:	3.3.14
any ideas?

User avatar
devspace
Owner
Owner
Posts: 343
Joined: October 2022

Re: [3.3.1] Privacy Policy

Post by devspace »

What does the server error log report?

User avatar
pierredu
Member
Member
Posts: 2
Joined: September 2024

Re: [3.3.1] Privacy Policy

Post by pierredu »

Hello,

In the listener, the function display_bbcode contains:
$sql_ary['WHERE'] = 'b.display_on_posting = 1 AND b.bbcode_tag <> "hr"';
In version 3.1.0-RC2 (which I use), it was:
$sql_ary = str_replace('b.display_on_posting = 1', 'b.display_on_posting = 1 AND b.bbcode_tag <> "hr"', $sql_ary);
which causes following warning:
In file david63/privacypolicy/event/listener, ligne 351, array to string conversion

Any comments?
thanks in advance.

User avatar
devspace
Owner
Owner
Posts: 343
Joined: October 2022

Re: [3.3.1] Privacy Policy

Post by devspace »

I do not support the "david63" versions as much has changed since then

User avatar
pierredu
Member
Member
Posts: 2
Joined: September 2024

Re: [3.3.1] Privacy Policy

Post by pierredu »

Hello,

Well, thanks for answering. Anyway, I swaped the two lines and it seem to do the job.