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: Adding functionality to phorum - 12 years ago
1) Is the download for the kml file done from the google server then? I thought the file was downloaded from the browser that is running the maps application, in which case the cookies would still apply and the map should download. 2) Sounds like you're already taking the correct route here (no pun intended ;) Once layout really starts to change, then templating it is.by Maurice Makaay - Phorum Support
Re: Quoted-printable for outgoing messages - 13 years ago
There is no setting fot that. It would require te a bit of changes on the mail code to get that implemented.by Maurice Makaay - Phorum Support
Re: Follow topic and email me on replies by default - 13 years ago
I'm not sure if I get the question. If you want to set this for yourself, then simply select the option "Follow topic and email me on replies" and hit the save button. Setting that option will make Follow Topic = on the default. So to me it sounds like you providing more answers than question, which is why I wonder if I understood you well ;-)by Maurice Makaay - Phorum Support
Re: How to go to the requested page after authorization? - 13 years ago
I thinks your question was answered in this thread.by Maurice Makaay - Phorum Hack/Mod Requests
Re: Prune messages - important! - 13 years ago
The problem is that when deleting messages, you need to beware of the discussion threading, things like attachments and rebuilding some indexes / meta data. The prune interface takes care of things like that. In what way doesn't it work for you? Is it that the total number of threads shown is so large that for example it hits the memory limits of the webserver that you are running on?by Maurice Makaay - Phorum Support
Re: Phorum Development? - 13 years ago
What's keeping you from switching? Don't let our current slow pace in development frustrate your ideas. If there's an application out there that does fulfill your needs, then you'd be better off using that one. I still find Phorum quite promising for what I need it for.by Maurice Makaay - Phorum Development
Re: Using Unicode symbols in posts - 13 years ago
A while back, I have written a script to handle converting data in Phorum tables to UTF-8. Maybe this can help you?by Maurice Makaay - Phorum Support
Re: custome home page - 13 years ago
The forum titles are part of the standard code and are displayed by the index page template. I'm not sure what kind of example to provide for that, since it's available by default. For coding examples to add other data to the index page, I cannot provide any better example than the existing modules.by Maurice Makaay - Phorum Integration
Re: custome home page - 13 years ago
It looks like you have some parts of the standard homepage of Phorum and additionally some extra parts. You could take a look at the announcements module and the forum statistics module to see how they modify the pages to show extra info. You will have to write a module for handling extra output that you need on the homepage. There's no solution to create this with a few mouse clicks.by Maurice Makaay - Phorum Integration
Re: "Home" link doesn't link to home page; links to "/index/" - 13 years ago
As Thomas already indicated, the problem lies in the use of relative URLs in the templates. The fix for keeping the friendly URLs would be to change the template files and CSS to use absolute URLs instead. You can take a look at the Emerald template files to see how that can be done. The other way of course, would be to disable the friendly URLs module.by Maurice Makaay - Phorum Support
Re: Module: Forum Lockdown - 13 years ago
Creating an .htaccess will not help you, since that will actively block the rest of the world that is not Google from your forums. What's your idea behind this all? Why lock it down, while at the same time allowing Google to crawl, cache and publish the contents? Regardless the idea, allowing for such setup would require modification to the module, to authorize Google from there for acby Maurice Makaay - v5/v6 Modules/Add-Ons
Re: SMTP Failure - 13 years ago
No special packages are required. Pleased do an EHLO instead of HELO. That should provide you with the capabilities of the mailserver. Possibly, it doesn't support plain authentication or doesn't need authentication at all from the local network. Whether or not the email address is the username, I cannot tell. That depends on the mail server setup.by Maurice Makaay - Phorum Support
Re: SMTP Failure - 13 years ago
Aren't there any firewalls or so in place that keep the web server from conneting to the SMTP server? If these are machines under your control, then check if you can PING the SMTP server. Also check if you can start a telnet session on the SMTP port (25). E.g. using the putty application (in telnet mode, not SSH mode).by Maurice Makaay - Phorum Support
Re: E-mail account compromised. - 13 years ago
I updated your mail address manually.by Maurice Makaay - Phorum Support
Re: No mark forum read and no new count - 13 years ago
Also, you can take a look at the developer docs for information on the template language itself.by Maurice Makaay - Phorum Hack/Mod Requests
Re: Creating a preview-area on a website - 13 years ago
Be aware that this script does not format any of the output. This might be a potential security risk, since it opens up the site for XSS attacks, because users can write plain HTML and javascript code in the subject and have it render on the page that uses this code. Please add the following to the script code: $subj = trim(strip_tags($subj)); $auth = trim(strip_tags($autby Maurice Makaay - Phorum Integration
Re: Mass user deletion - 13 years ago
If you mean that it doesn't work for 5.2, then I think this is what you need to change in here: phorum_user_delete -> phorum_api_user_deleteby Maurice Makaay - 5.1 Phorum Support
Re: login via app - 13 years ago
You have a few of the required parts in place, but not all of them. When setting the active user, you are only doing that. The user is only set for the current request. When you want to setup a session that survives multiple request, then you will also have to start a session using the phorum_api_user_session_create() function. You can find code that uses this in our login.php script. But instby Maurice Makaay - Phorum Support
Re: Module: Topic Poll - 13 years ago
No, that has not been implemented. It really is "topic poll", so a poll that is linked to a single topic / thread.by Maurice Makaay - v5/v6 Modules/Add-Ons
Re: Mobile Suite for Phorum? - 13 years ago
What's your point? Who are you trying to push here? If it is that big of a deal to you, why not start spending some bucks on implementing one for you? It's not like the world isn't littered with app developers these days. Trying to prove that there are more admins out there that would love such app (myself included) does not speed up a thing.by Maurice Makaay - Phorum Development
Re: Remove Time Stamp - 13 years ago
That would be Thomas' case 1 solution.by Maurice Makaay - Phorum Support
Re: Is there an easy way to lock a thread after a set amount of time? - 13 years ago
There no module as far as I know. But maybe this thread helps?by Maurice Makaay - Phorum Support
Re: Module: Topic Poll - 13 years ago
In topic_poll.php, an empty poll is initialized like this: // Initialize a new poll. $message["meta"]["mod_topic_poll"] = array ( "question" => "", "answers" => array( 0 => "", 1 => "" ), "votes" => array(), "totalby Maurice Makaay - v5/v6 Modules/Add-Ons
Re: Topic Poll Module - 13 years ago
In topic_poll.php, an empty poll is initialized like this: // Initialize a new poll. $message["meta"]["mod_topic_poll"] = array ( "question" => "", "answers" => array( 0 => "", 1 => "" ), "votes" => array(), "totalby Maurice Makaay - 5.1 Phorum Modules / Add-Ons
Re: Hot Topics + Icon - 13 years ago
You cannot use pure template language for this, but inside the messages loop in list.tpl, something like this should work: <?php if ($PHORUM['TMP']['MESSAGES']['thread_count'] > 10) { ?> .... template code that you'd like to use ..... <?php } ?>by Maurice Makaay - Phorum Hack/Mod Requests
Re: Hot Topics + Icon - 13 years ago
In the list, you have a template variable that holds the number of posts in the thread. So you could use that one with a bit of logic in the template to show a different icon for topics with enough posts in it.by Maurice Makaay - Phorum Hack/Mod Requests
Re: Mobile Suite for Phorum? - 13 years ago
just brilliant! ;-)by Maurice Makaay - Phorum Development
Re: Mobile Suite for Phorum? - 13 years ago
So suite is simply another word for "app"? "Selling" and "monitization" are ugly words, but surely the next big incarnation of Phorum focuses stronger on having an API that is independent from the GUI. That makes creating an app easier than it is the case with Phorum 5. There might even be an officially supported version, since I have gathered some experience with iOby Maurice Makaay - Phorum Development

