Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Sign In
Not a member yet? Click here to register.
Forgot Password?
Navigation

Panels and Infusions

Help and support for problems with infusions and panels
Forum Rules:
Before creating any threads or posting please read our CoC and view the How to report an error
3990 posts | Last Activity on 08-03-2025 10:24 by Talocha
T
Talocha 08-03-2025 10:24, 12 months ago
Re: Infuze video
You can use for example a youtube bbcode, you may need to update it attached files
Responded in Infuze video
K
Kvido1 06-03-2025 14:27, 12 months ago
Re: Infuze video
I'm looking for a video gallery for phpfusion. It worked for me so far, now I have a code failure in /infusions/videos/admin.php
Responded in Infuze video
J
johnniepee2 09-04-2024 20:01, 2 years ago
Re: Paid Membership Infusion
Apologies if this has already been discussed. I'm looking for a paid membership infusion. Something like the Western Studios one from years ago. Does anyone know if there is a modem equivalent for phpFusion 9? Many thanks.
K
Kvido1 12-10-2023 14:37, 2 years ago
Re: Icon, web?
It was purely a programming error in phpfusion. Fix in themes/theme.php [code]define('FONTAWESOME', TRUE); // Awesone font enabled. define('ENTYPO', TRUE); // Enabled entypo[/code] It works: https://www.samvich.cz icons are below the articles.
Responded in Icon, web?
K
Kvido1 24-09-2023 08:32, 2 years ago
Re: Icon, web?
The icons only appeared after entering chmod 777 on the web host. Today, there is still a problem with icons in the Manager that have an svg font. https://www.nekecamweb.cz/ikony_social_nezobrazují2.png
Responded in Icon, web?
K
Kvido1 29-08-2023 14:07, 2 years ago
Re: Icon, web?
Cause: incorrectly copied icon file!
Responded in Icon, web?
K
Kvido1 25-08-2023 10:25, 2 years ago
Re: Icon, web?
Hello everyone I have a problem with icons on the website (see image). I don't remember this for several years!!!! Who can advise how to solve it?
Responded in Icon, web?
2
21Matze 16-03-2023 22:50, 3 years ago
Re: GR Radio Status Panel
PHP Fusion v7.02.07 INOFFIZELLE DE Update: 1.6 PHP Version 8.1 GR Radiostatus 2.6 PHP 7.4 [url]https://fusion-club24.de/downloads.php?download_cat=23&download_id=83[/url] GR Radiostatus 3.0 PHP 8.1 ShoutCast 1 & ShoutCast 2 [url]https://fusion-club24.de/downloads.php?download_cat=27&download_id=91[/url] GR Radiostatus 3.2 LautFM API PHP 8.1 [url]https://fusion-club24.de/downloads.php?download_cat=26&download_id=114[/url]
Responded in GR Radio Status Panel
A
Alex-newcode-NSK 21-05-2022 17:03, 4 years ago
Re: Output the first post of the topic
[b]Chan[/b], Thank you very much, it works as I wanted!
C
Chan 21-05-2022 03:35, 4 years ago
Re: Output the first post of the topic
Sorry for the late reply. There are 2 things you need to change to achieve that. 1. This is the column output, see that $data['forum_name'] you need to swap it out with the text. https://github.com/PHPFusion/PHPFusion/blob/Tesseract/infusions/forum_threads_list_panel/forum_threads_list_panel.php#L85 So at the last bit, Lets change [code]trimlink($data['thread_subject'], 30)."</a><br />n".$data['forum_name']."[/code] to [code]trimlink($data['thread_subject'], 30)."</a><br />n".$data['first_post_text']."[/code] 2. Next, this is the SQL query bit that we need to alter to output a new data column. https://github.com/PHPFusion/PHPFusion/blob/Tesseract/infusions/forum_threads_list_panel/forum_threads_list_panel.php#L43-L54 Since we need the new first_post_text, we need to redo this query a bit. Change: [code]$result = dbquery( "SELECT f.forum_id, f.forum_cat, f.forum_name, f.forum_description, f.forum_moderators, f.forum_lastpost, f.forum_postcount, f.forum_threadcount, f.forum_lastuser, f.forum_access, f2.forum_name AS forum_cat_name, f2.forum_description AS forum_cat_description, t.thread_id, t.thread_lastpost, t.thread_lastpostid, t.thread_subject, t.thread_postcount, t.thread_views, t.thread_lastuser, t.thread_poll, u.user_id, u.user_name, u.user_status, u.user_avatar FROM ".DB_FORUMS." f LEFT JOIN ".DB_FORUMS." f2 ON f.forum_cat = f2.forum_id LEFT JOIN ".DB_THREADS." t ON f.forum_id = t.forum_id AND f.forum_lastpost=t.thread_lastpost LEFT JOIN ".DB_USERS." u ON f.forum_lastuser = u.user_id ".(multilang_table("FO") ? "WHERE f2.forum_language='".LANGUAGE."' AND" : "WHERE")." ".groupaccess('f.forum_access')." AND f.forum_cat!='0' AND t.thread_lastpost >= ".$timeframe." AND t.thread_hidden='0' GROUP BY thread_id ORDER BY t.thread_lastpost LIMIT ".$settings['numofthreads']."" ); [/code] [code]$result = dbquery( "SELECT f.forum_id, f.forum_cat, f.forum_name, f.forum_description, f.forum_moderators, f.forum_lastpost, f.forum_postcount, f.forum_threadcount, f.forum_lastuser, f.forum_access, f2.forum_name AS forum_cat_name, f2.forum_description AS forum_cat_description, t.thread_id, t.thread_lastpost, t.thread_lastpostid, t.thread_subject, t.thread_postcount, t.thread_views, t.thread_lastuser, t.thread_poll, u.user_id, u.user_name, u.user_status, u.user_avatar, (SELECT post_message FROM ".DB_POSTS." WHERE thread_id=t.thread_id ORDER BY post_id ASC LIMIT 1) AS first_post_text FROM ".DB_FORUMS." f LEFT JOIN ".DB_FORUMS." f2 ON f.forum_cat = f2.forum_id LEFT JOIN ".DB_THREADS." t ON f.forum_id = t.forum_id AND f.forum_lastpost=t.thread_lastpost LEFT JOIN ".DB_USERS." u ON f.forum_lastuser = u.user_id ".(multilang_table("FO") ? "WHERE f2.forum_language='".LANGUAGE."' AND" : "WHERE")." ".groupaccess('f.forum_access')." AND f.forum_cat!='0' AND t.thread_lastpost >= ".$timeframe." AND t.thread_hidden='0' GROUP BY thread_id ORDER BY t.thread_lastpost LIMIT ".$settings['numofthreads']."" ); [/code] Let me know if it works for you. Screenshot of my test for the SQL. And the text might be very long, so I suggest you to trim it, using trimlink function, or use CSS to line wrap it in 1 line. As forum text might contain bbcode, you might want to use the parseubb function.
A
Alex-newcode-NSK 18-05-2022 16:48, 4 years ago
Re: Output the first post of the topic
php-fusion 8.00.100 file: /infusions/forum_threads_list_panel/forum_threads_list_panel.php [img]http://linkme.ufanet.ru/images/b84ceb0bb336d7b3c5a0b5ceb2069e8a.jpg[/img] What I highlighted in red, it is necessary to make the conclusion of the first post of this topic there Please
C
Chan 18-05-2022 12:30, 4 years ago
Re: Output the first post of the topic
Give me the HTML layout format of your desired output or you want just the SQL? For the earlier, just make a screenshot of where is what with marker pen and attach in your response. I'll help you if I know what to do.
A
Alex-newcode-NSK 16-05-2022 13:51, 4 years ago
Re: Output the first post of the topic
Hello! Please help me bring the first post of the topic to the forum_threads_list_panel panel. On the main page of the site where this panel is enabled, and in it I want to make the first post of the topic show under the name of each topic
J
jefflev 20-04-2022 21:37, 4 years ago
Re: Help with downloads
I have another question which is, under admin/settings/main there is "Site Logo" with has a red asterisk by it which means mandatory. How do I disable the Site Logo? I appreciate any help I get. Thanks Jeff
Responded in Help with downloads
J
jefflev 19-04-2022 13:33, 4 years ago
Re: Help with downloads
Thanks for your help Falk, that link you provided did the trick. I understand it much better now. Thanks Jeff
Responded in Help with downloads
F
Falk 19-04-2022 10:50, 4 years ago
Re: Help with downloads
You can still have it in your download system. See here : [url]https://www.php-fusion.co.uk/infusions/wiki/documentation.php?page_id=227[/url] [b]Adding Downloads[/b] , but since you have a large upload you need to add the link to your site where you placed it.
Responded in Help with downloads
J
jefflev 18-04-2022 23:41, 4 years ago
Re: Help with downloads
I want to add the file directly on to my site, I don't want to link to off site download. I want people to download files directly from my downloads page. I'm sorry for any confusion.
Responded in Help with downloads
F
Falk 18-04-2022 22:33, 4 years ago
Re: Help with downloads
You can manually upload a file but then you need to add the URL to it instead of uploading, see the tabs when adding a download you have URL option instead of upload.
Responded in Help with downloads
J
jefflev 18-04-2022 18:36, 4 years ago
Re: Help with downloads
I'm new to the PHP-Fusion content management system and I have a question regarding the downloads. I know that the download is in the infusions folder but if I want to upload a large file thru my ftp program into my downloads, what file would I send it to? Sorry if that sounds like a dumb question but I'm really at a lost. I tried uploading to my infusions/downloads/files folder but it doesn't show up from my website admin panel/contentadmin/downloads or anywhere in the downloads section of my website admin section. Like I said I'm new to PHP-Fusion so any constructive help or advice would be greatly appreciated. Thanks Jeff
Responded in Help with downloads
V
vejniik 22-10-2021 17:11, 4 years ago
Re: djmLeague - infusion
[quote name=RobiNN post=210680]@RobiNN - This infusion was originally published on former Slovak mods site and all addons from this site have these issues.. I'm not even trying to fix these things. If anyone paid me, then maybe. I'd rather write my own code from scratch than try to fix old v7 stuff.[/quote] And how much would it cost?
Responded in djmLeague - infusion
You can view all discussion threads in this forum.
You cannot start a new discussion thread in this forum.
You cannot start on a poll in this forum.
You cannot upload attachments in this forum.
You can download attachments in this forum.
Moderator: Support Team

Filter by Tags

Popular Threads This Week

There are no threads found