Show all posts by user
This forum is for support in French by other users. No questions in here will be answered by the developers, as we don't speak French. This forum uses the French Language File (UTF-8).
Re: Quelqu'un a-t-il cherché à corriger les bugs dus à PHP > 7.2 ? - 3 months ago
Pour élaborer davantage la question du vibe coding et du droit d'auteur, voici un article écrit par un avocat français: La question de l'utilisation avec du code open source est abordée, même si l'auteur reconnaît qu'elle est sujette à débat. Dans le cadre de Phorum, on est sous licence BSD pour le code principal. Modifier le code en interne sans redistribution ou redisby slashbin - French Support / forum francophone
Re: Quelqu'un a-t-il cherché à corriger les bugs dus à PHP > 7.2 ? - 3 months ago
Good point, and I am not a lawyer, so the text below is an opinion, not a legal advice. There are various points to consider. The Phorum code has been released under a BSD licence (https://github.com/Phorum/Core/blob/master/docs/license.txt) 1. If you do not redistribute the software, I do not see how you can breach the license as BSD license addresses the redistribution of the software. 2.by slashbin - French Support / forum francophone
Re: Quelqu'un a-t-il cherché à corriger les bugs dus à PHP > 7.2 ? - 3 months ago
J'ai réussi à relancer Phorum sur mon serveur personnel avec la version payante de Claude en demandant de mettre le code à jour. Le site fonctionne sous PHP 8 à présent. La liste des incompatibilités est longue et à moins que des développeurs de Phorum ne se réveillent (j'en doute), il faudrait au minimum faire un fork pour appliquer toutes les modifications nécessaires. Les divers mby slashbin - French Support / forum francophone
Re: PHP 8.x - 3 months ago
I have managed to update the code on my website to make Phorum work with the latest versions of MySQL and PHP using Claude Code. Of course, as a result, I have now a completely customized version of Phorum, but it could be a working approach to update Phorum.by slashbin - Phorum Support
Re: Is Phorum a good choice? - 8 years ago
PHP 7 has introduced severe incompatibilities with respect to PHP 6. Phorum does not seem to work with PHP 7. I have similar issues with other tools. Otherwise, it works well on modern distribution (I used it on Arch Linux).by slashbin - Phorum Support
Re: Module: Birthdays - 10 years ago
The module has an issue with leap years. I suggest to change the test if($ubirthday["yday"] >= $jetzt["yday"]) by if (($ubirthday["mon"] > $jetzt["mon"]) || ($ubirthday["mon"] == $jetzt["mon"] && ($ubirthday["day"] >= $jetzt["day"]))) in the file birthdays.phpby slashbin - v5/v6 Modules/Add-Ons
Re: Any problems upgrading to PHP 5.6? - 10 years ago
I had issues mostly with modules, when the function PhorumInputForm is called. In the Phorum system itself, the same issue appears in two admin files (with Phorum 5.2.20), more specifically the files rebuild.php and cache.php. I solve this issue by changing the line $frm = &new PhorumInputForm ( "", "post" ); to $frm = new PhorumInputForm ( "", "post&by slashbin - Phorum Support
Re: Any problems upgrading to PHP 5.6? - 10 years ago
Regarding PHP 7.x, it was installed on my server during an upgrade. Phorum still works, but I have some issues, especially when displaying some forms in some module. It appears that all the issues I have found to date are related to the assignment by reference, known as a backward incompatibility: Practically speaking, I resolved the issues by replacing the assignment =& by =by slashbin - Phorum Support
Re: how to show 10 newest post outside forums directory - 10 years ago
You can parse the RSS data provided by calling the code feed.php at the root of your phorum installation. The simplest ways to access the RSS is to enter yourdomain/feed.php?0,type=rss There exist many RSS parsers that you can use.by slashbin - Phorum Hack/Mod Requests
Re: Module: Birthdays - 11 years ago
It seems to me that there is a small bug in this module. When the birthday is at the beginning of the year, but the current date is towards the end of the previous year, the age is not properly computed. This is because only the difference between the current year and the birth year is used to compute the future age. On my system, I have corrected this by adding the lines if(($ubirthday["by slashbin - v5/v6 Modules/Add-Ons
Re: Module: BB Code Video - 11 years ago
Another possibility is to use $search[] = "/https?:\/\/ . . . as there is only the choice between http and httpsby slashbin - 5.1 Phorum Modules / Add-Ons
Re: Module: Social Media Sharing - 12 years ago
Sorry to come back to a question that was asked more than one year ago. You can remove the smiley in the subject by using regular expressions. In the file social_share.php, look for the function social_share_mod_thread. After the line $subject = $message['subject']; add the following one $subject = preg_replace("/<img[^>]+\>/i", " ", $subject); The twby slashbin - v5/v6 Modules/Add-Ons
Re: Module: User Image Gallery - 14 years ago
I join others to thank you for this module. I however face a small issue. I want to give a link to the gallery not only from the profile, but from author's information retrieved from the message. I am still a newbie in phorum hacking, but it seems that the hook with the function read has note been done yet, as it does not appear in the info.txt file. Moreover, I do not manage to use the fby slashbin - v5/v6 Modules/Add-Ons
Re: Module: Google Maps - 15 years ago
Thanks, it works well, except that in read.tpl, one has to add {IF MESSAGES->user->city} {MESSAGES->user->country}, {MESSAGES->user->city} {/IF} instead of {IF MESSAGES->user->mod_google_maps->city} {MESSAGES->user->mod_google_maps->country}, {MESSAGES->user->mod_google_maps->city} {/IF} as indicated in the README fileby slashbin - v5/v6 Modules/Add-Ons
Re: Smileys vs émoticônes - 18 years ago
Pour le problème des accents, c'est souvent juste un problème de coding system (iso-latin-1 vs UTF-8).by slashbin - French Support / forum francophone
Re: Latex sur mon "phorum" - 19 years ago
L'article du Linux Journal pourrait représenter un bon point de départ.by slashbin - French Support / forum francophone
Re: Module for logging moderator actions - 19 years ago
Here is a copy of the module:by slashbin - 5.1 Phorum Modules / Add-Ons
Re: Google Maps Module - let your users tell where they are - 19 years ago
Thanks for this very nice module! I have made a quick translation in French in order to use it in my forum. Here it is. Edit: one string was badly formed. I have also found that use of classical HTML code for specific characters (e.g. é for é) was not always the good idea, since it appears as is when a search is unsuccesful. I have therefore write two files, the first using iso-lby slashbin - 5.1 Phorum Modules / Add-Ons
Re: A simple chat integrated in phorum? - 19 years ago
I have just installed it on the forum I will give you feedback later.by slashbin - Phorum Development
Re: Online Users Module - 20 years ago
Euh... sorry, I should write "I have found..." I do not host the files... I just have found a site that hosts them.by slashbin - 5.1 Phorum Modules / Add-Ons
Re: Online Users Module - 20 years ago
I have some files here.by slashbin - 5.1 Phorum Modules / Add-Ons