Show all posts by user
All modules known to work or written for 5.2.0 and up. Modules are small packages that increase or change the functionality of Phorum in some way, without changing any of the main Phorum code.
You can find a list of Phorum 5.2 Modules --> Here
You can find a list of Phorum 5.2 Modules --> Here
Re: Cannot edit read.tpl, read_hybrid.tpl, or read_threads.tpl. - 13 years ago
*stirs slightly from hibernation* Which mods do you have active? I know there are some mods that replace template files with their own to achieve various purposes. I would check your active mods and look in their folders (eg. <phorum_root>/mods/<mod>/templates/emerald/read.tpl). If they have one of the files you mentioned, it will be used in place of the default file in the tempby Joe Curia - Phorum Support
Re: Template: Simple Rounded - 15 years ago
Try this (untested): In the index_classic.tpl and index_new.tpl files, add your image on the first line of these files, above the user_menu as shown here <img style="float: right" src="; /> {INCLUDE "user_menu"} {IF USER->NOTICE->SHOW}{INCLUDE "moderator_menu"}{/IF} {INCLUDE "actions_menu"} Note the "float: right" style whby Joe Curia - v5/v6 Templates
Re: Module: Admin Mass Email - 15 years ago
rheo, When I first coded this module I had no access to cron on my webhost so I never programmed that in. I may look at it in the future. However, as of v5.2.1.04, this module does not send all emails in one go. Instead, it sends a number of emails, refreshes the page with a status bar, sends more emails, refreshes, ad nauseam until all the messages have been sent.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Module: Forum Subscriptions - 15 years ago
Have you changed anything with the module at all (eg. language files, template, etc)? Do you have any special url formatting going on (ie. your own phorum_custom_get_url() function or other rewrites for an embedded phorum)? The read url's are generated by Phorum's own function so I really am not sure where it could go so far awry.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Upgrading... What version am I running? - 15 years ago
rheo, If you take a look at the External Authentication, the Drupal plugin, and the Generic Integration template, I did many of the things Maurice has been talking about (eg. display phorum content in a block/node, rewrite the urls, authenticate based on external user). Whether you can apply that to your own site with your own plugin, I don't know. I hope it can serve as an example thouby Joe Curia - Phorum Support
Re: Module: Forum Subscriptions : Sorry for reposting! - 15 years ago
Have you updated to the latest version of this module (5.2.1.02)?by Joe Curia - v5/v6 Modules/Add-Ons
Re: Module: Forum Subscriptions : Sorry for reposting! - 15 years ago
Sorry for replying three and a half days too late. I have been a bit busy with the turn of the year and unfortunately my hobbies have languished. You should see my bonsai tree :-p As for this the delay on this specific issue, I have been mulling it over and do not have a good immediate response. This module is working for me. It seems that it was working for you but now isn't. Some qby Joe Curia - v5/v6 Modules/Add-Ons
Re: Redirect Users Unless in Specific Group - 15 years ago
The Docs section is your friend :-) You want the phorum_api_user_get_groups($user_id) function: . Any time I am writing a module, I have the API doc open in a separate window for quick access.by Joe Curia - Phorum Support
Re: Module: Post Previews - 15 years ago
To see the previews on the Phorum website, check your "Forum Settings" in the Control Center. For your personal site, how wide do you have the preview area? If it is too wide, it will shift because it always tries to keep a 10 or 20 pixel distance from the right side of the screen. The width can be set in the module's settings page.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Module: Post Previews - 15 years ago
What browser/version are you using? What exactly are you looking for? The preview window should appear directly below or above the focused link depending on how close it is to the upper or lower limits of the window. It should also be horizontally aligned to start at the start of the link, though it does shift over to avoid running off the right edge of the window. This is the exact behavior Iby Joe Curia - v5/v6 Modules/Add-Ons
Re: Strange issue with goto last page. - 15 years ago
Bill, check your PM inbox.by Joe Curia - Phorum Support
Re: Control language choice via URL? e.g., &uselang=en - 15 years ago
If you are able to code your own module, you could take a look at the work I did on my Drupal plugin for my External Authentication module. There I tied the Phorum language to the Drupal language using Drupal's query based language indicator (eg www.mysite.com/en/forum would be in English and www.mysite.com/de/forum would be in German). If I didn't have two projects falling far behinby Joe Curia - v5/v6 Language Files
Re: Module: Speller Pages - 15 years ago
Thanks Maurice. I have never been sure about the need/use for those brackets as I see them intermittently used. Now I know to dump them and have learned my one new thing for the day. Hope nothing else comes up in the next 9 hours :-) I will remove my uploaded file to clean up your thread.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Joe, a follow up. I notice that attachments are not being sent.... - 15 years ago
Rob, First of all, thanks for the English lesson *smacks head*. Second, for your attachment issue, I have confirmed that my demo Phorum can send jpg attachements. Can you give me a little more information: Does the jpg attachment appear correctly in the forum post? Does the email show an attachment but the attachment is corrupted? What are the email headers (pm me if necessary)? Do otherby Joe Curia - v5/v6 Modules/Add-Ons
Re: Module: Post Previews - 15 years ago
Rob, thanks for reporting the bug and helping with the debugging. Maurice, thank you for taking the time to track down the source of this issue. I will include this fix in the next release of my module.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Module: Forum Subscriptions - 15 years ago
Rob, thanks a lot for tracking down the source of the problem. It looks like I missed a little "!" in that second clause. Please replace those lines with these and let me know if that fixes the problem. if (!empty($PHORUM["phorum_mod_forum_subscriptions"]["send_only_new_threads"]) && !empty($data["parent_id"]) || !empty($by Joe Curia - v5/v6 Modules/Add-Ons
Re: profile.php not using profile.tpl - 15 years ago
Emerald is the default template for Phorum, so if a folder is not available for your custom template inside a mod's folder, Phorum will use the emerald folder. You can copy that folder with the same name as the folder for your custom template and then edit the mods custom profile.tpl file in that new folder.by Joe Curia - Phorum Support
Re: profile.php not using profile.tpl - 15 years ago
And please check your other modules to see if they are implementing a custom profile.tpl (you can list them here and we will help, or simply browse through your {phorum_root}/mods folder and note any modules that have a {phorum_root}/mods/{sample_mod}/templates/emerald/profile.tpl file).by Joe Curia - Phorum Support
Re: Module: Forum Subscriptions - 15 years ago
Quotedperkins Well, narrowed my problem down to ModSecurity that they have installed on my hosted site. Don't know what its complaining about exactly yet, but something about either the number or names of the "select" controls on this form is causing it to reject the request. Don Don, Check for any limits to the post or request arrays. I recently had an issue with the Suhby Joe Curia - v5/v6 Modules/Add-Ons
Re: Restrict Post Count - 15 years ago
I don't know if that module will actually change the post count shown for the user though. A couple of years ago someone asked for something similar and I wrote this quick, single-file module. Save the following code as {phorum_root}/mods/selectively_ignore_posts.php and enable it. You should edit the code where indicated to ignore the forums of your choice. <?php /* phorum moduby Joe Curia - Phorum Hack/Mod Requests
Re: iScramble causing some issues? - 15 years ago
If you haven't started already, I would suggest using this upgrade path: It will allow you to backtrack easily if those tweaks become crucial. You can also use a program like TortiseSVN to view the differences between your Phorum files and the clean files of whatever version you are currently using. (The same TortiseSVN can be used to download older versions of Phorum through the tags).by Joe Curia - Phorum Support
Re: Change name of folder list and forums list - 15 years ago
You have a couple of options: Edit the language file (found in {phorum_root}/include/lang). You will need to re-edit the file after any updates which replace it. Download and install my Custom Language Database module which will let you change language fields from the module's settings page. The advantage to this is that your replacements stay in place after upgrades.by Joe Curia - Phorum Hack/Mod Requests
Re: Database empty - everyday again - 15 years ago
Please give us a little more information: PHP version MySQL version Phorum version List of modules enabled Any errors found in Event Logging module (possibly less helpful if the errors have been deleted with the rest of the database :-) )by Joe Curia - Phorum Support
Re: Bug? Cannot search for previously posted URL's - 15 years ago
Robert, I have updated the Highlighted Search Terms module to fix this bug. Thanks again for reporting it.by Joe Curia - Phorum Support
Module: Highlighted Search Terms v5.2.1.01 - Bugfixes - 15 years ago
I have release version 5.2.1.01 of this module with the following changes: - Bugfix: PCRE meta characters in search terms would cause the search to error out. Thanks go to Phorum user Robert Angle for reporting this bug. - Bugfix: If there are no search terms to hightlight, no need to run the search hook. Thanks go to Phorum user Scott Finegan.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Bug? Cannot search for previously posted URL's - 15 years ago
Looks like a mod issue (my mod in this case). Let me look into it and I will get back to you. . . Thanks for reporting this.by Joe Curia - Phorum Support
Re: Module: Automatic Message Pruning - 15 years ago
Bill, Please try the attached settings.php in place of the original. If this works, than the large number of forums you have is causing this module to exceed the storage capacity for settings in Phorum. This workaround should fix the problem for you as you are only pruning a few of your forums. If it does work, I will need to code a better way to store those settings. Anyways, please uplby Joe Curia - v5/v6 Modules/Add-Ons
Re: Module: Automatic Message Pruning - 15 years ago
Bill, I am still looking through the code, trying to find anything that might cause the settings error that your are seeing. The other error was, as Maurice rightly assumed, a mistake on my part in assuming that the file storage api would be available. Please upload this patched file to the module's directory to fix that error.by Joe Curia - v5/v6 Modules/Add-Ons
Re: Private message - 15 years ago
Not with the default system and no module has been written for this yet. The alternative that I often use is to upload my file in the Control Center and then link to the file in the PM.by Joe Curia - Phorum Support
Re: Phorum 5.2.16-RC1 released - 15 years ago
I guess I was trying to be a little too clever. My suggestion would be to drop line 422 and simply set the field to always be a multiple select size 2. The patch: @@ -419,8 +419,7 @@ } $db_groups = phorum_db_get_groups(0,true); if (count($db_groups)) { - $multiple = (count($db_groups) > 1) ? "multiple=\"multiple\" size=\"2\&quoby Joe Curia - Announcements

