<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Humhub on Blog GoHugo de Fredô : Linux, Proxmox, IA, Trail, Course, Randonnée, Gravel, Ski de Randonnée</title>
    <link>https://move.cyber-neurones.org/tags/humhub/</link>
    <description>Recent content in Humhub on Blog GoHugo de Fredô : Linux, Proxmox, IA, Trail, Course, Randonnée, Gravel, Ski de Randonnée</description>
    <generator>Hugo</generator>
    <language>fr</language>
    <lastBuildDate>Sun, 04 Jan 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://move.cyber-neurones.org/tags/humhub/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Recherche compression MP4 pour Humhub</title>
      <link>https://move.cyber-neurones.org/post/humhub/update/2026-01-04/</link>
      <pubDate>Sun, 04 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/humhub/update/2026-01-04/</guid>
      <description>&lt;p&gt;Je cherche a compresser les vidéos et aussi a les afficher sur Firefox, mais pour l&amp;rsquo;instant le process ne fonctionne pas &amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;Le process :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# find /var/www/humhub/uploads/file/ -name &amp;#39;file&amp;#39; \&#xA;  -exec file {} + | grep &amp;#34;MP4 &amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; \ &#xA;  | awk &amp;#39;{print $1}&amp;#39; | xargs du -b \ &#xA;  | awk &amp;#39;{ sum += $1 } END { print sum/1024/1024 }&amp;#39;&#xA;6690.92&#xA;# find /var/www/humhub/uploads/file/ -name &amp;#39;file&amp;#39; \ &#xA;  -exec file {} + | grep &amp;#34;MP4 &amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; \&#xA; | awk &amp;#39;{print $1}&amp;#39; | xargs -I {} \ &#xA;  ffmpeg -i {} -c:v libx264 -preset slow -crf 18 \ &#xA;  -c:a aac -vf format=yuv420p -movflags +faststart   {}_tmp7.mp4&#xA;# find /var/www/humhub/uploads/file/ -name &amp;#39;file_tmp7.mp4&amp;#39; \ &#xA;  -exec file {} + | grep &amp;#34;MP4 &amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; \ &#xA;  | awk &amp;#39;{print $1}&amp;#39; | sed &amp;#39;s/_tmp7.mp4//g&amp;#39; \ &#xA;  | xargs -I {} mv {}_tmp7.mp4 {}&#xA;# find /var/www/humhub/uploads/file/ -name &amp;#39;file&amp;#39; \&#xA;  -exec file {} + | grep &amp;#34;MP4 &amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; \ &#xA;  | awk &amp;#39;{print $1}&amp;#39; | xargs du -b \&#xA;  | awk &amp;#39;{ sum += $1 } END { print sum/1024/1024 }&amp;#39;&#xA;4306.44&#xA;# chown -R www-data:www-data  /var/www/humhub&#xA;# php yii integrity/run&#xA;# php yii cache/flush-all&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai laissé un commentaire sur (&lt;a href=&#34;https://github.com/humhub/humhub/issues/6025&#34;&gt;https://github.com/humhub/humhub/issues/6025&lt;/a&gt;)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Calcul de l&#39;espace disque des MP4 sur Humhub</title>
      <link>https://move.cyber-neurones.org/post/humhub/update/2026-01-03-b/</link>
      <pubDate>Sat, 03 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/humhub/update/2026-01-03-b/</guid>
      <description>&lt;p&gt;Voici ma commande :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# du -sh /var/www/humhub/&#xA;13G&#x9;/var/www/humhub/&#xA;# find /var/www/humhub/uploads/file/ -name &amp;#39;file&amp;#39; \&#xA;  -exec file {} + | grep &amp;#34;MP4 &amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; \ &#xA;  | awk &amp;#39;{print $1}&amp;#39; | xargs du -b \ &#xA;  | awk &amp;#39;{ sum += $1 } END { print sum/1024/1024 }&amp;#39;&#xA;6690.92&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Bref 6,7/13 Go.&lt;/p&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai fait une proposition sur Github : (&lt;a href=&#34;https://github.com/humhub/humhub/issues/7916&#34;&gt;https://github.com/humhub/humhub/issues/7916&lt;/a&gt;)&lt;/p&gt;&#xA;&lt;p&gt;Via une commande du type :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# find /var/www/humhub/uploads/file/ -name &amp;#39;file&amp;#39; \ &#xA;  -exec file {} + | grep &amp;#34;MP4 &amp;#34; | sed &amp;#39;s/:/ /g&amp;#39; \ &#xA;  | awk &amp;#39;{print $1}&amp;#39; | xargs -I {} \ &#xA;  ffmpeg -i {} -c:v libx264 -crf 23 -preset medium \ &#xA;  -movflags +faststart -c:a aac -b:a 128k {}_tmp.mp4&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;A suivre.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Compression des images sur Humhub</title>
      <link>https://move.cyber-neurones.org/post/humhub/update/2026-01-03/</link>
      <pubDate>Sat, 03 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/humhub/update/2026-01-03/</guid>
      <description>&lt;p&gt;Je viens de changer la résolution maximum : 1920x1080 =&amp;gt; 1280x720 (HD).&lt;/p&gt;&#xA;&lt;p&gt;Voici ma configuration :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;    &amp;#39;modules&amp;#39; =&amp;gt; [&#xA;        &amp;#39;file&amp;#39; =&amp;gt; [&#xA;            &amp;#39;imageMaxResolution&amp;#39; =&amp;gt; &amp;#39;1280x720&amp;#39;,&#xA;            &amp;#39;imageJpegQuality&amp;#39; =&amp;gt; 75,&#xA;            &amp;#39;imagePngCompressionLevel&amp;#39; =&amp;gt; 9,&#xA;            &amp;#39;imageWebpQuality&amp;#39; =&amp;gt; 75,&#xA;        ]&#xA;    ]&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Voici les commandes :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# du -sh /var/www/humhub/&#xA;13G&#x9;/var/www/humhub/&#xA;# cd /var/www/humhub/protected/&#xA;# php yii file/downscale-images&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Pour l&amp;rsquo;instant j&amp;rsquo;ai pas trouvé de solution pour la compression des vidéos &amp;hellip;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creation d&#39;un projet Git sur les blocages Humhub </title>
      <link>https://move.cyber-neurones.org/post/firewall/humhub/</link>
      <pubDate>Sun, 21 Sep 2025 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/firewall/humhub/</guid>
      <description>&lt;p&gt;J&amp;rsquo;ai mis le projet sur Forgejo :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://git.cyber-neurones.org/farias/iptablesHumhub&#34;&gt;https://git.cyber-neurones.org/farias/iptablesHumhub&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Humhub v1.11.1 : Migration de php 7.3 vers php 7.4</title>
      <link>https://move.cyber-neurones.org/post/2022/05/2022-05-11-humhub-v1-11-1-migration-de-php-7-3-vers-php-7-4/</link>
      <pubDate>Wed, 11 May 2022 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2022/05/2022-05-11-humhub-v1-11-1-migration-de-php-7-3-vers-php-7-4/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://www.cyber-neurones.org/wp-content/uploads/2022/05/screenshot-from-2022-05-11-10-18-02.png&#34;&gt;&lt;img src=&#34;images/screenshot-from-2022-05-11-10-18-02-300x205.png&#34; alt=&#34;&#34;&gt;&lt;/a&gt; J&amp;rsquo;ai du faire un update de PHP afn de pouvoir mettre la dernière version de Humhub :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo apt -y install lsb-release apt-transport-https ca-certificates &#xA;sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg&#xA;echo &amp;#34;deb https://packages.sury.org/php/ $(lsb_release -sc) main&amp;#34; | sudo tee /etc/apt/sources.list.d/php.list&#xA;sudo apt update&#xA;sudo apt -y install php7.4&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Ma release de Debian :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# cat /etc/os-release &#xA;PRETTY_NAME=&amp;#34;Debian GNU/Linux 10 (buster)&amp;#34;&#xA;NAME=&amp;#34;Debian GNU/Linux&amp;#34;&#xA;VERSION_ID=&amp;#34;10&amp;#34;&#xA;VERSION=&amp;#34;10 (buster)&amp;#34;&#xA;VERSION_CODENAME=buster&#xA;ID=debian&#xA;HOME_URL=&amp;#34;https://www.debian.org/&amp;#34;&#xA;SUPPORT_URL=&amp;#34;https://www.debian.org/support&amp;#34;&#xA;BUG_REPORT_URL=&amp;#34;https://bugs.debian.org/&amp;#34;&#xA;# php -v&#xA;PHP 7.4.29 (cli) (built: Apr 22 2022 06:44:32) ( NTS )&#xA;Copyright (c) The PHP Group&#xA;Zend Engine v3.4.0, Copyright (c) Zend Technologies&#xA;    with Zend OPcache v7.4.29, Copyright (c), by Zend Technologies&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;La seconde étape :&lt;/p&gt;</description>
    </item>
    <item>
      <title>HumHub : Compression d&#39;image ...</title>
      <link>https://move.cyber-neurones.org/post/2021/05/2021-05-20-humhub-compression-dimage/</link>
      <pubDate>Thu, 20 May 2021 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2021/05/2021-05-20-humhub-compression-dimage/</guid>
      <description>&lt;p&gt;J&amp;rsquo;ai pu voir dans la documentation que c&amp;rsquo;était possible : &lt;a href=&#34;https://docs.humhub.org/docs/admin/uploads/&#34;&gt;https://docs.humhub.org/docs/admin/uploads/&lt;/a&gt; . A noter que j&amp;rsquo;utilise la version : 1.8.2.&lt;/p&gt;&#xA;&lt;p&gt;J&amp;rsquo;ai donc modifié la configuration dans /var/www/humhub/protected/config/common.php :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&amp;lt;?php&#xA;/**&#xA;* This file provides to overwrite the default HumHub / Yii configuration by your local common (Console and Web) environments&#xA;* @see http://www.yiiframework.com/doc-2.0/guide-concept-configurations.html&#xA;* @see http://docs.humhub.org/admin-installation-configuration.html&#xA;* @see http://docs.humhub.org/dev-environment.html&#xA;*/&#xA;return [&#xA;&amp;#39;modules&amp;#39; =&amp;gt; [&#xA;&amp;#39;file&amp;#39; =&amp;gt; [&#xA;&amp;#39;imageMaxResolution&amp;#39; =&amp;gt; &amp;#39;1920x1080&amp;#39;,&#xA;&amp;#39;imageJpegQuality&amp;#39; =&amp;gt; 75,&#xA;&amp;#39;imagePngCompressionLevel&amp;#39; =&amp;gt; 9,&#xA;&amp;#39;imageWebpQuality&amp;#39; =&amp;gt; 75,&#xA;]&#xA;]&#xA;];&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Ensuite j&amp;rsquo;ai lancé la commande :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Humhub :  runtime/searchdb/segments... is not readable.</title>
      <link>https://move.cyber-neurones.org/post/2020/12/2020-12-04-humhub-runtime-searchdb-segments-is-not-readable/</link>
      <pubDate>Fri, 04 Dec 2020 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2020/12/2020-12-04-humhub-runtime-searchdb-segments-is-not-readable/</guid>
      <description>&lt;p&gt;How to fix the issue ?&lt;/p&gt;&#xA;&lt;p&gt;It&amp;rsquo;s just necessary to rebuild index :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;root@my:~# /usr/bin/php /var/www/humhub/protected/yii search/rebuild&#xA;Rebuild search index: ..........OK !&#xA;root@my:~# /usr/bin/php /var/www/humhub/protected/yii queue/run&#xA;root@my:~# /usr/bin/php /var/www/humhub/protected/yii cron/run &lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Frédéric.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Humhub : Administration à faire</title>
      <link>https://move.cyber-neurones.org/post/2020/11/2020-11-03-humhub-administration-a-faire/</link>
      <pubDate>Tue, 03 Nov 2020 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2020/11/2020-11-03-humhub-administration-a-faire/</guid>
      <description>&lt;p&gt;Voici les quelques actions que je fais &amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Etape 1&lt;/strong&gt;: Suppression du mode debug&lt;/p&gt;&#xA;&lt;p&gt;Modification du fichier &lt;strong&gt;/var/www/humhub/index.php&lt;/strong&gt; :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;// comment out the following two lines when deployed to production&#xA;// defined(&amp;#39;YII_DEBUG&amp;#39;) or define(&amp;#39;YII_DEBUG&amp;#39;, true);&#xA;// defined(&amp;#39;YII_ENV&amp;#39;) or define(&amp;#39;YII_ENV&amp;#39;, &amp;#39;dev&amp;#39;);&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;strong&gt;Etape 2&lt;/strong&gt; : Upadate en ligne :&lt;/p&gt;&#xA;&lt;p&gt;Mise à jours en ligne, quasiment pas de problème : &lt;a href=&#34;https://www.cyber-neurones.org/wp-content/uploads/2020/11/screenshot-from-2020-11-02-19-05-44.png&#34;&gt;&lt;img src=&#34;images/screenshot-from-2020-11-02-19-05-44-300x235.png&#34; alt=&#34;&#34;&gt;&lt;/a&gt;Mais j&amp;rsquo;ai du lancer la commande suite ensuite :&lt;/p&gt;&#xA;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo chown -R www-data:www-data /var/www/humhub/&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;strong&gt;Etape 3&lt;/strong&gt; : Ajout de module PHP.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Installation de humhub version 1.6.3 sur Debian</title>
      <link>https://move.cyber-neurones.org/post/2020/11/2020-11-02-installation-de-humhub-version-1-6-3-sur-debian/</link>
      <pubDate>Mon, 02 Nov 2020 00:00:00 +0000</pubDate>
      <guid>https://move.cyber-neurones.org/post/2020/11/2020-11-02-installation-de-humhub-version-1-6-3-sur-debian/</guid>
      <description>&lt;p&gt;Je viens d&amp;rsquo;installer la version humbub &lt;strong&gt;1.6.3&lt;/strong&gt; sur Débian : &lt;a href=&#34;https://sat.cyber-neurones.org&#34;&gt;https://sat.cyber-neurones.org&lt;/a&gt; .&lt;/p&gt;&#xA;&lt;p&gt;Pas de problème lors de l&amp;rsquo;installation ( PHP, Apache, MariaDB, Let&amp;rsquo;s Encrypt) , c&amp;rsquo;est une bonne alternative à Facebook et Instagram.&lt;/p&gt;&#xA;&lt;p&gt;A suivre à l&amp;rsquo;utilisation.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
