Search found 39 matches

by Vogelek23
Sun Jul 18, 2021 11:55 pm
Forum: phpBB Custom Coding
Topic: Split table to a separate database
Replies: 5
Views: 1112

Re: Split table to a separate database

Thank you for all responses. By "database" I mean different database (name, username, password). By "table" I mean the entire single table (eg. 'phpbb_log), and not the part of it. What I would like to achieve is to "outsource" that particular table in a different datab...
by Vogelek23
Sun Jul 18, 2021 5:59 pm
Forum: phpBB Custom Coding
Topic: Split table to a separate database
Replies: 5
Views: 1112

Split table to a separate database

Hello, is it possible to split some particular table to a separate database? Eg. I would like a whole 'phpbb_users' table to be stored in a different database. It's not about limited space for SQL, just a pure technical question if it's even possible and if so, how to do this.
by Vogelek23
Wed Feb 05, 2020 6:03 pm
Forum: [3.2.x] Support Forum
Topic: Retrieving content of disapproved posts
Replies: 2
Views: 444

Re: Retrieving content of disapproved posts

Instead of disapproving, you could move the post to a forum only moderators could access, called, maybe "Disapproved posts". Such moved post/topic is still marked as "waiting for approval", shows up for all moderators and attracts their attention. The above is not a good solutio...
by Vogelek23
Sun May 05, 2019 10:22 pm
Forum: phpBB Custom Coding
Topic: IF ELSE syntax
Replies: 0
Views: 916

IF ELSE syntax

Hi all, I want to create some IF-ELSE clause based on a multiple checks, which sets the active class only if: - topic is not marked as solved OR, topic does not come from a Download subforum (only one of these can be true, no possibility that the topic is marked as solved and comes from Download sub...
by Vogelek23
Tue Feb 17, 2015 9:38 pm
Forum: [3.0.x] MOD Requests
Topic: Display attachments in logs
Replies: 3
Views: 1144

Re: Display attachments in logs

@ViolaF - thank you for your feedback. Please note that if you have a large board with many attachments, user logs may extend to the large size. However, my very simple hack needs definitely less disk space as the MOD linked in the 1st post.
by Vogelek23
Sun Feb 15, 2015 8:10 am
Forum: [3.0.x] MOD Requests
Topic: Display attachments in logs
Replies: 3
Views: 1144

Re: Display attachments in logs

I made a very simple modification to log all downloaders into the user logs (phpbb 3.0.x versions only). Open: download/file.php Find: if (!$config['allow_attachments'] && !$config['allow_pm_attach']) { send_status_line(404, 'Not Found'); trigger_error('ATTACHMENT_FUNCTIONALITY_DISABLED'); }...
by Vogelek23
Sun Nov 23, 2014 4:51 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Enabling an acces to the new UCP module tab for specified users only
Replies: 1
Views: 603

Enabling an acces to the new UCP module tab for specified users only

Hello, friends. I have a small problem and i need your help. Few days ago i wrote some simple MOD to managing the advertisements on my forum. This MOD relies on UCP module. I have added necessary files into the proper locations, and then created a new module under ACP -> System -> Modules Management...
by Vogelek23
Thu Jul 17, 2014 6:43 pm
Forum: [3.0.x] MOD Requests
Topic: Email admin disapproved topics/posts
Replies: 1
Views: 381

Re: Email admin disapproved topics/posts

Now, if someone could please help with how to send a copy of that email to the admins it would make me very happy. :D You can simply add a (disapproved) post content to the moderators' log. Open: includes/mcp/mcp_queue.php Find: 'post_subject' => $post_info[$post_id]['topic_title'], After, add: 'po...
by Vogelek23
Wed Jul 16, 2014 4:04 pm
Forum: [3.0.x] MODs in Development
Topic: [ALPHA] Multilingual Forums
Replies: 11
Views: 5218

Re: [ALPHA] Multilingual Forums

However, what you suggest would require the end user to edit the language files every time they want to make a change to a forum name or description It is NOT a problem for me. I will add 1-2 forums per quarter :) which is much less convenient than changing a setting in the ACP for the majority of ...
by Vogelek23
Thu Jul 10, 2014 10:38 pm
Forum: [3.0.x] MODs in Development
Topic: [ALPHA] Multilingual Forums
Replies: 11
Views: 5218

Re: [ALPHA] Multilingual Forums

This idea was used about 6 years ago here: https://www.phpbb.com/community/viewtopic.php?f=66&t=577784#p4883005 BUT :!: It doesn't work with any MOD alike "quick change language" (ex. "MSSTI Quick Language", "Quick Language Change" or "Quickly Change Your Langu...
by Vogelek23
Thu Jul 10, 2014 9:53 pm
Forum: [3.0.x] MOD Requests
Topic: Category and forum names in two languages
Replies: 4
Views: 6905

Re: Category and forum names in two languages

raminr1363 wrote:Pleas can you make a mod for this?!!
Next time, please use SEARCH: viewtopic.php?f=70&t=2231436
by Vogelek23
Sat May 03, 2014 7:44 pm
Forum: [3.0.x] Abandoned MODs
Topic: [ABD] Moderator Messages
Replies: 234
Views: 34981

Re: [RC4] Moderator Messages

ABDev wrote:Bug was already fixed on RC5.
Where can I get the RC5 version?
by Vogelek23
Tue Mar 18, 2014 12:57 pm
Forum: [3.0.x] Abandoned MODs
Topic: [ABD] Moderator Messages
Replies: 234
Views: 34981

Re: [RC4] Moderator Messages

geolim4 wrote:This a known bug we working on it for next release.
In above post, I gave you the code which resolves that bug, you can simply use this code in your MOD if you want.
by Vogelek23
Tue Mar 18, 2014 3:42 am
Forum: [3.0.x] Abandoned MODs
Topic: [ABD] Moderator Messages
Replies: 234
Views: 34981

Re: [RC4] Moderator Messages

Dear Authors, I found a serious bug in Moderator Messages MOD, which causes general SQL error. How to cause this error: 1. Make a new topic. 2. Select "Copy topic" from Quick-mod Tools. 3. In the Confirm Box, select destination forum to copy the topic, then click YES. 4. General SQL Error:...
by Vogelek23
Wed Mar 12, 2014 6:29 pm
Forum: [3.0.x] Abandoned MODs
Topic: [ABD] Moderator Messages
Replies: 234
Views: 34981

Re: [RC4] Moderator Messages

I don't understand why you have modified the SQL query to display 4 columns content rather than original both ??? Because all four columns content is necessary in the first IF clause: if ( !$auth->acl_get('m_mm_edit', $forum_id) && !empty($row['post_moderation']) ) { $sql_data[POSTS_TABLE][...

Go to advanced search