Search found 52400 matches

by Brf
Mon Apr 15, 2024 12:32 pm
Forum: [3.3.x] Support Forum
Topic: PHP Warning: Cannot modify header information - headers already sent by (output started at /includes/functions.php
Replies: 5
Views: 500

Re: PHP Warning: Cannot modify header information - headers already sent by (output started at /includes/functions.php

(output started at /includes/functions.php:3035) Yes. That line (3035) in includes/functions.php is where error messages are output. That error message is being output before the cookies are written, so it is causing the subsequent error at 4150 where the cookies are written. As Noxwizard explained...
by Brf
Mon Apr 08, 2024 5:30 pm
Forum: [3.3.x] Support Forum
Topic: What permission allows users to see the LAST ACTIVE column on the Members page and the ACP > USERS AND GROUPS > Manage u
Replies: 5
Views: 1957

Re: What permission allows users to see the LAST ACTIVE column on the Members page and the ACP > USERS AND GROUPS > Mana

warmweer wrote: Mon Apr 08, 2024 5:06 pm You just want to remove the data from the view
The original post is asking how to show the Last Activity column on the memberlist for those specific users. That column will be visible to them if the view-hidden permission is set for them.
by Brf
Fri Apr 05, 2024 4:24 pm
Forum: [3.3.x] Styles Support & Discussion
Topic: How to change button design (order of text vs icon)
Replies: 2
Views: 1505

Re: How to change button design (order of text vs icon)

That would be whatever template your button is in. For instance, here in viewtopic_body.html

Code: Select all

<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
You see the icon is after the text span
by Brf
Fri Apr 05, 2024 12:21 pm
Forum: [3.3.x] Support Forum
Topic: Getting error on posting on php 8.0.30
Replies: 17
Views: 1945

Re: Getting error on posting on php 8.0.30

$exitStatus is defined on line 57 of that file.

Code: Select all

 passthru('command -v file', $exitStatus);
by Brf
Thu Apr 04, 2024 7:59 pm
Forum: [3.3.x] Support Forum
Topic: Email setup
Replies: 7
Views: 997

Re: Email setup

I got an e-mail to my main e-mail account telling me my phpBB email was properly set up but, I still cannot connect to my classic outlook email program. The program keeps asking me for a password. I have put the same password in the phpBB setup and the outlook program. No luck. This did work at one...
by Brf
Thu Apr 04, 2024 12:12 pm
Forum: [3.3.x] Support Forum
Topic: Registration emails doesn't work
Replies: 9
Views: 1134

Re: Registration emails doesn't work

On your Email settings page, turn on SMTP.
by Brf
Wed Apr 03, 2024 7:46 pm
Forum: [3.3.x] Support Forum
Topic: Registration emails doesn't work
Replies: 9
Views: 1134

Re: Registration emails doesn't work

maxpeigne wrote: Wed Apr 03, 2024 6:34 pm » EMAIL/PHP/mail()
This is indicating you are sending through PHP, not your gmail or other smtp service.
by Brf
Wed Apr 03, 2024 12:21 pm
Forum: [3.3.x] Support Forum
Topic: Module Management MCP not working.
Replies: 19
Views: 1125

Re: Module Management MCP not working.

Your error involved a file ending in "_mine" which does not exist in phpBB. I would guess that that mcp_queue_mine file, as well as the manager_mine and any other _mine files have been modded.
by Brf
Tue Apr 02, 2024 5:24 pm
Forum: [3.3.x] Support Forum
Topic: Module Management MCP not working.
Replies: 19
Views: 1125

Re: Module Management MCP not working.

warmweer wrote: Tue Apr 02, 2024 4:02 pm The avatar folder you mentioned? Is that yourboard/images/avatars/ ?
I am guessing the /phpbb/avatar/ folder, which contains manager.php and a driver folder.
manager_mine sounds like something that was modded
by Brf
Mon Apr 01, 2024 1:12 pm
Forum: [3.3.x] Support Forum
Topic: Non-existent usernames listed on Index Page
Replies: 14
Views: 976

Re: Non-existent usernames listed on Index Page

If i were a designer of the pphpBB engine, I would not display the list of usernames in any case: it is arguably detrimental to security, and would advise a simple textbox require the typing of the username. Maybe they'll do that eventually. That is what it is, a simple textbox. As I said before, p...
by Brf
Thu Mar 28, 2024 1:46 pm
Forum: [3.3.x] Support Forum
Topic: Spam Link in the Login button Code
Replies: 2
Views: 378

Re: Spam Link in the Login button Code

If someone is viewing your board as a guest and clicks the Login button, the redirect would be to whatever URL they were sitting on. This link is from someone clicking "login" after searching for the amazon.com URL. It would not actually redirect to that amazon.com URL, but to your viewtop...
by Brf
Thu Mar 28, 2024 1:30 pm
Forum: [3.3.x] Support Forum
Topic: Non-existent usernames listed on Index Page
Replies: 14
Views: 976

Re: Non-existent usernames listed on Index Page

Thanks BRF. Here are the answers to your questions: What is a [the] "Usernames list box"? You cannot miss it every time you login! It is on the Index page, below LOGIN - REGISTER. Double-clicking on it shows a list of users on your board. There is nothing like that. Are you talking about ...
by Brf
Wed Mar 27, 2024 7:20 pm
Forum: [3.3.x] Support Forum
Topic: Why are gallery avatars always randomised?
Replies: 10
Views: 350

Re: Why are gallery avatars always randomised?

That would have been my guess too, that several were uploaded in the same second, so the server was displaying those in random order.
by Brf
Wed Mar 27, 2024 6:30 pm
Forum: [3.3.x] Support Forum
Topic: How to reduce the lengh of the gallery page?
Replies: 2
Views: 190

Re: How to reduce the lengh of the gallery page?

Add this to the end of colours.css:

Code: Select all

#gallery {
    height: 500px;
    overflow: scroll;
}

Go to advanced search