<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[no password when update to 1.11.0]]></title><description><![CDATA[<p dir="auto">if I restore my vaultwarden on Version 2022.10.2 my password are their<br />
as soon it updates and the container restart I lose all my password and I cannot import my backup</p>
<ul>
<li>package: v1.10.2 == password</li>
<li>package: v1.11.0 == <strong>no password</strong></li>
</ul>
]]></description><link>https://forum.cloudron.io/topic/8327/no-password-when-update-to-1-11-0</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 00:21:15 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/8327.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 02 Jan 2023 10:48:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to no password when update to 1.11.0 on Wed, 04 Jan 2023 16:34:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/luckow" aria-label="Profile: luckow">@<bdi>luckow</bdi></a> thanks for digging this out - I just realized I have vaultwarden broken since the latest update, which is happened at 24th of Dec for me.</p>
<p dir="auto">Here is the short instructions and extract based on <a class="plugin-mentions-user plugin-mentions-a" href="/user/luckow" aria-label="Profile: luckow">@<bdi>luckow</bdi></a> findings:</p>
<p dir="auto">On Web GUI:</p>
<ul>
<li>go the app</li>
<li>click terminal</li>
</ul>
<p dir="auto">Now on the terminal:</p>
<pre><code class="language-bash">echo ${CLOUDRON_MYSQL_DATABASE} # note the output - it's 35629ca3ac8992ec in my case
mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE}
</code></pre>
<p dir="auto">Now starts making database voddoo - make sure you have database backup first.</p>
<pre><code class="language-sql">SELECT * FROM information_schema.SCHEMATA WHERE schema_name = "35629ca3ac8992ec";
SELECT CONCAT('ALTER TABLE `', TABLE_NAME,'` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;')   
    AS CharSetConvert
    FROM INFORMATION_SCHEMA.TABLES
    WHERE TABLE_SCHEMA="35629ca3ac8992ec"
    AND TABLE_TYPE="BASE TABLE";
ALTER DATABASE `35629ca3ac8992ec` CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
SET foreign_key_checks = 0;
/* execute all queries from CharSetConvert output earlier here */
ALTER TABLE `__diesel_schema_migrations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `attachments` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `ciphers` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `ciphers_collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `collections_groups` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `devices` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `emergency_access` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `event` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `favorites` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `folders` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `folders_ciphers` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `groups` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `groups_users` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `invitations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `org_policies` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `organizations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `sends` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `twofactor` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `twofactor_incomplete` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `users` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `users_collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
ALTER TABLE `users_organizations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
SET foreign_key_checks = 1; /* verify CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci is on the place */
</code></pre>
<p dir="auto">Now restart the app (via big button at the top of the terminal).</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> , guess Vaultwarden 1.27.0 is a braking change and/or the patch before updating is required (as per above).</p>
]]></description><link>https://forum.cloudron.io/post/59259</link><guid isPermaLink="true">https://forum.cloudron.io/post/59259</guid><dc:creator><![CDATA[potemkin_ai]]></dc:creator><pubDate>Wed, 04 Jan 2023 16:34:10 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Sun, 05 Feb 2023 20:54:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> said in <a href="/post/61492">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jayonrails" aria-label="Profile: jayonrails">@<bdi>jayonrails</bdi></a> this is only on older instances</p>
</blockquote>
<p dir="auto">...and only on some of them. I never hit this issue myself.</p>
]]></description><link>https://forum.cloudron.io/post/61510</link><guid isPermaLink="true">https://forum.cloudron.io/post/61510</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Sun, 05 Feb 2023 20:54:56 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Sun, 05 Feb 2023 16:57:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> Thanks, I will consider a fresh install now.</p>
]]></description><link>https://forum.cloudron.io/post/61494</link><guid isPermaLink="true">https://forum.cloudron.io/post/61494</guid><dc:creator><![CDATA[jayonrails]]></dc:creator><pubDate>Sun, 05 Feb 2023 16:57:15 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Sun, 05 Feb 2023 16:54:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jayonrails" aria-label="Profile: jayonrails">@<bdi>jayonrails</bdi></a> this is only on older instances</p>
]]></description><link>https://forum.cloudron.io/post/61492</link><guid isPermaLink="true">https://forum.cloudron.io/post/61492</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Sun, 05 Feb 2023 16:54:54 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Sun, 05 Feb 2023 15:45:22 GMT]]></title><description><![CDATA[<p dir="auto">I would like to set up a new instance of Vaultwarden. Is this issue still persistent and does it happen on fresh instances, too?</p>
]]></description><link>https://forum.cloudron.io/post/61481</link><guid isPermaLink="true">https://forum.cloudron.io/post/61481</guid><dc:creator><![CDATA[jayonrails]]></dc:creator><pubDate>Sun, 05 Feb 2023 15:45:22 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Sat, 04 Feb 2023 11:35:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jodumont" aria-label="Profile: JOduMonT">@<bdi>JOduMonT</bdi></a> Thx a lot, all data (organizations etc.) was lost (except iOS App and Admin Page). The description of the fix from you solved it, all data is shown again. Thx, a lot!</p>
]]></description><link>https://forum.cloudron.io/post/61437</link><guid isPermaLink="true">https://forum.cloudron.io/post/61437</guid><dc:creator><![CDATA[m-lan]]></dc:creator><pubDate>Sat, 04 Feb 2023 11:35:10 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Fri, 20 Jan 2023 19:43:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> thanks for finding and sharing a root cause!</p>
<p dir="auto">My instance went through the restore indeed.</p>
]]></description><link>https://forum.cloudron.io/post/60573</link><guid isPermaLink="true">https://forum.cloudron.io/post/60573</guid><dc:creator><![CDATA[potemkin_ai]]></dc:creator><pubDate>Fri, 20 Jan 2023 19:43:21 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Fri, 20 Jan 2023 17:07:27 GMT]]></title><description><![CDATA[<p dir="auto">I think I found the issue here. When cloudron creates a mysql database the default collation order is <code>utf8mb4_0900_ai_ci</code> . This is to match the MySQL 8 default - <a href="https://dev.mysql.com/doc/mysqld-version-reference/en/optvar-changes-8-0.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://dev.mysql.com/doc/mysqld-version-reference/en/optvar-changes-8-0.html</a> . When restoring, it creates the database with collation order <code>utf8mb4_0900_ci</code> . This was an oversight and I have fixed this for the next release.</p>
]]></description><link>https://forum.cloudron.io/post/60568</link><guid isPermaLink="true">https://forum.cloudron.io/post/60568</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Fri, 20 Jan 2023 17:07:27 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Tue, 10 Jan 2023 16:03:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jodumont" aria-label="Profile: JOduMonT">@<bdi>JOduMonT</bdi></a> said in <a href="/post/59768">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/loudlemur" aria-label="Profile: LoudLemur">@<bdi>LoudLemur</bdi></a> said in <a href="/post/59763">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jodumont" aria-label="Profile: JOduMonT">@<bdi>JOduMonT</bdi></a> You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:</p>
<p dir="auto">Flameshot<br />
ShareX (which works with XbackBone</p>
</blockquote>
<p dir="auto">why you don't like my style <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--wink" style="height:23px;width:auto;vertical-align:middle" title=";)" alt="😉" /><br />
I'm using the Mac of My wife via a hotspot<br />
Still have issue with my Internet at Home so I don't have access to my Desktop.</p>
</blockquote>
<p dir="auto">HAha! JOduMonT - you have GREAT style! <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forum.cloudron.io/post/59792</link><guid isPermaLink="true">https://forum.cloudron.io/post/59792</guid><dc:creator><![CDATA[LoudLemur]]></dc:creator><pubDate>Tue, 10 Jan 2023 16:03:32 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Tue, 10 Jan 2023 13:45:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jodumont" aria-label="Profile: JOduMonT">@<bdi>JOduMonT</bdi></a> there is no new update for the Vaultwarden app. To fix "your" problem, you need to follow the steps described here by potemkin_ai -&gt; <a href="https://forum.cloudron.io/topic/8327/no-password-when-update-to-1-11-0/17?_=1673358163784">https://forum.cloudron.io/topic/8327/no-password-when-update-to-1-11-0/17?_=1673358163784</a></p>
]]></description><link>https://forum.cloudron.io/post/59769</link><guid isPermaLink="true">https://forum.cloudron.io/post/59769</guid><dc:creator><![CDATA[luckow]]></dc:creator><pubDate>Tue, 10 Jan 2023 13:45:41 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Tue, 10 Jan 2023 13:31:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/loudlemur" aria-label="Profile: LoudLemur">@<bdi>LoudLemur</bdi></a> said in <a href="/post/59763">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jodumont" aria-label="Profile: JOduMonT">@<bdi>JOduMonT</bdi></a> You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:</p>
<p dir="auto">Flameshot<br />
ShareX (which works with XbackBone</p>
</blockquote>
<p dir="auto">why you don't like my style <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--wink" style="height:23px;width:auto;vertical-align:middle" title=";)" alt="😉" /><br />
I'm using the Mac of My wife via a hotspot<br />
Still have issue with my Internet at Home so I don't have access to my Desktop.</p>
]]></description><link>https://forum.cloudron.io/post/59768</link><guid isPermaLink="true">https://forum.cloudron.io/post/59768</guid><dc:creator><![CDATA[JOduMonT]]></dc:creator><pubDate>Tue, 10 Jan 2023 13:31:42 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Tue, 10 Jan 2023 13:15:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jodumont" aria-label="Profile: JOduMonT">@<bdi>JOduMonT</bdi></a> You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:</p>
<ul>
<li>Flameshot</li>
<li>ShareX (which works with XbackBone</li>
</ul>
]]></description><link>https://forum.cloudron.io/post/59763</link><guid isPermaLink="true">https://forum.cloudron.io/post/59763</guid><dc:creator><![CDATA[LoudLemur]]></dc:creator><pubDate>Tue, 10 Jan 2023 13:15:26 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Tue, 10 Jan 2023 13:13:35 GMT]]></title><description><![CDATA[<p dir="auto">also if I install a new instance and try to restore my backup it is not working</p>
]]></description><link>https://forum.cloudron.io/post/59761</link><guid isPermaLink="true">https://forum.cloudron.io/post/59761</guid><dc:creator><![CDATA[JOduMonT]]></dc:creator><pubDate>Tue, 10 Jan 2023 13:13:35 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Tue, 10 Jan 2023 13:12:33 GMT]]></title><description><![CDATA[<p dir="auto">Even with the new update, the issue remain</p>
<p dir="auto">Ubuntu: 22.04 LTS @Hetzner<br />
Cloudron: v7.3.4 (Ubuntu 22.04.1 LTS)</p>
<h1>I have password</h1>
<p dir="auto"><em>with the <strong>bitwarden icon</strong></em><br />
App: Vaultwarden 1.26.0<br />
Package: com.github.bitwardenrs@1.10.2<br />
<img src="/assets/uploads/files/1673356130984-screenshot-2023-01-10-at-14.01.01-resized.png" alt="Screenshot 2023-01-10 at 14.01.01.png" class=" img-fluid img-markdown" /></p>
<h1>I don't have password and sync fail</h1>
<p dir="auto"><em>with the <strong>vaultwarden icon</strong></em><br />
Application: Vaultwarden 1.27.0<br />
Package: com.github.bitwardenrs@1.11.0<br />
<img src="/assets/uploads/files/1673356232593-screenshot-2023-01-10-at-14.00.31-resized.png" alt="Screenshot 2023-01-10 at 14.00.31.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.cloudron.io/post/59760</link><guid isPermaLink="true">https://forum.cloudron.io/post/59760</guid><dc:creator><![CDATA[JOduMonT]]></dc:creator><pubDate>Tue, 10 Jan 2023 13:12:33 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Fri, 06 Jan 2023 13:17:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> said in <a href="/post/59182">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto">screenshots</p>
</blockquote>
<p dir="auto">Old school screenshots <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title="😄" alt="😄" /><br />
Before update: <a href="https://ibb.co/0BNyck3" target="_blank" rel="noopener noreferrer nofollow ugc">https://ibb.co/0BNyck3</a><br />
Update: <a href="https://ibb.co/3dD9P5c" target="_blank" rel="noopener noreferrer nofollow ugc">https://ibb.co/3dD9P5c</a><br />
After update: <a href="https://ibb.co/9bCS731" target="_blank" rel="noopener noreferrer nofollow ugc">https://ibb.co/9bCS731</a><br />
Restore backup = everything is back</p>
]]></description><link>https://forum.cloudron.io/post/59477</link><guid isPermaLink="true">https://forum.cloudron.io/post/59477</guid><dc:creator><![CDATA[JOduMonT]]></dc:creator><pubDate>Fri, 06 Jan 2023 13:17:56 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Fri, 06 Jan 2023 12:56:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> said in <a href="/post/59182">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto">I'm still not at all clear what the actual issue(s) people are facing is, but so far I've not noticed anything wrong with my Vaultwarden (on the latest Cloudron versions, which it sounds like everyone having issues also is).</p>
</blockquote>
<p dir="auto">with 1.26.0 I have password<br />
while with 1.27.0 I don't have password</p>
<h2>PASSWORD + SYNC OK</h2>
<p dir="auto">App Title and VersionVaultwarden 1.26.0<br />
App ID4584d250-1515-4380-be5b-87a4ab3cd92d<br />
Package Repositorycore<br />
Package Versioncom.github.bitwardenrs@1.10.2<br />
Last Updated4 days ago</p>
<blockquote>
<p dir="auto">sorry for your eyes; my internet is too bad right now for uploading screenshot</p>
</blockquote>
<h2>NO PASSWORD + SYNC FAIL</h2>
<p dir="auto">App Title and VersionVaultwarden 1.27.0<br />
App ID4584d250-1515-4380-be5b-87a4ab3cd92d<br />
Package Repositorycore<br />
Package Versioncom.github.bitwardenrs@1.11.0<br />
Last Updated2 minutes ago</p>
]]></description><link>https://forum.cloudron.io/post/59476</link><guid isPermaLink="true">https://forum.cloudron.io/post/59476</guid><dc:creator><![CDATA[JOduMonT]]></dc:creator><pubDate>Fri, 06 Jan 2023 12:56:38 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Fri, 06 Jan 2023 12:43:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/luckow" aria-label="Profile: luckow">@<bdi>luckow</bdi></a> said in <a href="/post/59197">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto">do you use a browser plugin?</p>
</blockquote>
<p dir="auto">password disappears after updating via the browser (webapp) and the app in the browser (plugin) and in my androids don't sync anymore</p>
<blockquote>
<p dir="auto">do you have an organization?</p>
</blockquote>
<p dir="auto"><strong>NO</strong></p>
<blockquote>
<p dir="auto">do you store the password only in the organization?</p>
</blockquote>
<p dir="auto"><strong>NO</strong></p>
<blockquote>
<p dir="auto">is the organization and the number of passwords displayed in <a href="http://vaultwarden.example.org/admin" target="_blank" rel="noopener noreferrer nofollow ugc">vaultwarden.example.org/admin</a>? (no idea how to get access to /admin =&gt; <a href="https://docs.cloudron.io/apps/vaultwarden/" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.cloudron.io/apps/vaultwarden/</a>)</p>
</blockquote>
<p dir="auto"><strong>NO</strong></p>
<p dir="auto">my Cloudron is update to date on an Ubuntu 20.04LTS; no change or weird configuration as been done.</p>
]]></description><link>https://forum.cloudron.io/post/59475</link><guid isPermaLink="true">https://forum.cloudron.io/post/59475</guid><dc:creator><![CDATA[JOduMonT]]></dc:creator><pubDate>Fri, 06 Jan 2023 12:43:17 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Thu, 05 Jan 2023 15:57:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/girish" aria-label="Profile: girish">@<bdi>girish</bdi></a> thanks for prompt reaction!</p>
]]></description><link>https://forum.cloudron.io/post/59385</link><guid isPermaLink="true">https://forum.cloudron.io/post/59385</guid><dc:creator><![CDATA[potemkin_ai]]></dc:creator><pubDate>Thu, 05 Jan 2023 15:57:30 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Thu, 05 Jan 2023 11:25:11 GMT]]></title><description><![CDATA[<p dir="auto">Our company and my personal installation is quite old as well (~4 years or so). I wonder why we don't hit this. Let me investigate quickly to see if this is something obvious.</p>
]]></description><link>https://forum.cloudron.io/post/59352</link><guid isPermaLink="true">https://forum.cloudron.io/post/59352</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Thu, 05 Jan 2023 11:25:11 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Thu, 05 Jan 2023 10:00:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> , <a class="plugin-mentions-user plugin-mentions-a" href="/user/luckow" aria-label="Profile: luckow">@<bdi>luckow</bdi></a> , <a class="plugin-mentions-user plugin-mentions-a" href="/user/necrevistonnezr" aria-label="Profile: necrevistonnezr">@<bdi>necrevistonnezr</bdi></a> , it was just a wild guess - it feels like it must be somehow connected to the software updates, since it impact only a small fraction of the users.</p>
<p dir="auto">Might be just some random bug... <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f937.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--shrug" style="height:23px;width:auto;vertical-align:middle" title=":shrug:" alt="🤷" /></p>
]]></description><link>https://forum.cloudron.io/post/59341</link><guid isPermaLink="true">https://forum.cloudron.io/post/59341</guid><dc:creator><![CDATA[potemkin_ai]]></dc:creator><pubDate>Thu, 05 Jan 2023 10:00:54 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Thu, 05 Jan 2023 06:11:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> said in <a href="/post/59270">no password when update to 1.11.0</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/potemkin_ai" aria-label="Profile: potemkin_ai">@<bdi>potemkin_ai</bdi></a> I wonder why I seemingly haven't hit this issue though <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f914.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--thinking_face" style="height:23px;width:auto;vertical-align:middle" title=":thinking_face:" alt="🤔" /></p>
</blockquote>
<p dir="auto">Me neither. My instance is 4-5 years old including Ubuntu migrations from 18.04 -&gt; 20.04 -&gt; 22.04, had Bitwarden since the beginning incl. organizations.</p>
]]></description><link>https://forum.cloudron.io/post/59325</link><guid isPermaLink="true">https://forum.cloudron.io/post/59325</guid><dc:creator><![CDATA[necrevistonnezr]]></dc:creator><pubDate>Thu, 05 Jan 2023 06:11:29 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Wed, 04 Jan 2023 23:51:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/potemkin_ai" aria-label="Profile: potemkin_ai">@<bdi>potemkin_ai</bdi></a> good question <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /><br />
i recently installed cloudron on a fresh<br />
"Welcome to Ubuntu 22.04.1 LTS (GNU/Linux 5.15.0-56-generic x86_64)" instance installed at hetzner.</p>
]]></description><link>https://forum.cloudron.io/post/59311</link><guid isPermaLink="true">https://forum.cloudron.io/post/59311</guid><dc:creator><![CDATA[luckow]]></dc:creator><pubDate>Wed, 04 Jan 2023 23:51:40 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Wed, 04 Jan 2023 21:47:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/potemkin_ai" aria-label="Profile: potemkin_ai">@<bdi>potemkin_ai</bdi></a> I quite recently (Nov 2022) migrated to a new server, so I guess it's pretty new.</p>
<p dir="auto">I'm also on Ubuntu 20.04.5 LTS, you?</p>
]]></description><link>https://forum.cloudron.io/post/59291</link><guid isPermaLink="true">https://forum.cloudron.io/post/59291</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Wed, 04 Jan 2023 21:47:23 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Wed, 04 Jan 2023 20:50:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> random thought: how old is your cloudron instance?<br />
Mine is from the around of the middle of the year 2022, migrated via export/import from an older one.</p>
]]></description><link>https://forum.cloudron.io/post/59278</link><guid isPermaLink="true">https://forum.cloudron.io/post/59278</guid><dc:creator><![CDATA[potemkin_ai]]></dc:creator><pubDate>Wed, 04 Jan 2023 20:50:41 GMT</pubDate></item><item><title><![CDATA[Reply to no password when update to 1.11.0 on Wed, 04 Jan 2023 19:09:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/potemkin_ai" aria-label="Profile: potemkin_ai">@<bdi>potemkin_ai</bdi></a> I wonder why I seemingly haven't hit this issue though <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f914.png?v=fed68e33a46" class="not-responsive emoji emoji-android emoji--thinking_face" style="height:23px;width:auto;vertical-align:middle" title=":thinking_face:" alt="🤔" /></p>
]]></description><link>https://forum.cloudron.io/post/59270</link><guid isPermaLink="true">https://forum.cloudron.io/post/59270</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Wed, 04 Jan 2023 19:09:21 GMT</pubDate></item></channel></rss>