<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="">
                        <id>https://larapass.support-hub.io/feed/320</id>
                                <link href="https://larapass.support-hub.io/feed/320" rel="self"></link>
                                <title><![CDATA[LaraPass - Your Personal Password Manager Article Feed]]></title>
                    
                                <subtitle></subtitle>
                                                    <updated>2020-11-25T06:38:57+00:00</updated>
                        <entry>
            <title><![CDATA[What type of Hosting Service Provider should I use?]]></title>
            <link rel="alternate" href="https://larapass.support-hub.io/articles/what-type-of-hosting-service-provider-should-i-use" />
            <id>https://larapass.support-hub.io/127</id>
            <author>
                <name><![CDATA[Tech Tailor]]></name>
            </author>
            <summary type="html">
                <![CDATA[<p>LaraPass works best on a VPS. While VPS with cPanel or Direct Admin or Plesk will work without any issues, we personally recommend choosing from one of the following VPS providers (starts for as low as $5) </p><p><a href="https://m.do.co/c/1b88e7535dea" target="_blank" rel="noreferrer noopener">Digital Ocean</a> (Recommended)</p><p><a href="https://www.vultr.com/?ref=7312733" target="_blank" rel="noreferrer noopener">Vultr</a></p><p><a href="https://www.cloudways.com/en/?id=94888" target="_blank" rel="noreferrer noopener">Cloudways</a></p><p>Since these VPS provide raw server with resources, we will need a server manager to run our PHP applications such as LaraPass. Some of the suggested are -</p><p><a href="https://ploi.io/register?referrer=GTVyGH2vz2N3tN84XxW7" target="_blank" rel="noreferrer noopener">Ploi</a> (provides a FREE account for 1 website with Free SSL)</p><p><a href="https://runcloud.io/r/AORW9wl952Nq" target="_blank" rel="noreferrer noopener">Runcloud</a></p><p><a href="https://serverpilot.io/a/5c2b80b33c50" target="_blank" rel="noreferrer noopener">ServerPilot</a></p><p><a href="https://forge.laravel.com/" target="_blank" rel="noreferrer noopener">Laravel Forge</a> (Created &amp; Managed by the Creator of Laravel)</p><p>We also recommend downloading &amp; installing <b>Bitvise SSH Client</b> or any other of your choice so you can connect to your server easily.</p><p>We do not recommend using LaraPass on Shared Hosting due to compatibility and security restrictions. Furthermore, we will not provide support for Installing Larapass on Shared Hosting. Do it at your own risk.</p><p>- LaraPass Support</p>]]>
            </summary>
                                    <updated>2018-11-16T12:29:05+00:00</updated>
        </entry>
            <entry>
            <title><![CDATA[LaraPass Mailer Error - Swift_TransportException (554)]]></title>
            <link rel="alternate" href="https://larapass.support-hub.io/articles/larapass-mailer-error-swift-transportexception-554" />
            <id>https://larapass.support-hub.io/584</id>
            <author>
                <name><![CDATA[Tech Tailor]]></name>
            </author>
            <summary type="html">
                <![CDATA[<p>This error in LaraPass occurs when the LaraPass instance is unable to send emails using the set outgoing server. </p><p><b>Common Cause:</b> Invalid SMTP Credentials (or LaraPass failing to validate and login to the outgoing server).</p><p><b>Possible Fix:</b> Test and verify the outgoing server credentials are accurate and working as intended. Clear <a>Config:Cache</a> &amp; try again.</p><p><b>Additional Test:</b> To verify the issue is not with the LaraPass instance, set the outgoing mailer to 'log', send email and check the LaraPass log file to see if the email was indeed sent.</p><p>If the issue still persists, open a ticket and our support team members will try to identify and resolve your issue at the earliest.</p><p>-LaraPass Support</p>]]>
            </summary>
                                    <updated>2019-06-23T03:23:56+00:00</updated>
        </entry>
            <entry>
            <title><![CDATA[Invalid Authentication Code (Error) on 2-Step Activation]]></title>
            <link rel="alternate" href="https://larapass.support-hub.io/articles/invalid-authentication-code-error-on-2-step-activation" />
            <id>https://larapass.support-hub.io/585</id>
            <author>
                <name><![CDATA[Tech Tailor]]></name>
            </author>
            <summary type="html">
                <![CDATA[<p>Google Authenticator Codes are generated and verified using system/server clocks, as such it is absolutely necessary to make sure your server clock is in-sync and accurate. </p><p>If you receive an '<b>Oh snap! Invalid Authentication Code</b>' error when trying to activate 2-Step Authentication under "Security Settings" in LaraPass, its because your server clock in out-of-sync.</p><p><b>Possible Fix:</b> Soft/Hard Reboot of the Server/Webserver does usually fix the issue. If it doesn't, try manually adjusting the server clock and restarting the web-server. </p><p>If the issue still persists, open a ticket and our support team members will try to identify and resolve your issue at the earliest.
</p><p>
-LaraPass Support</p>]]>
            </summary>
                                    <updated>2019-06-23T03:30:33+00:00</updated>
        </entry>
            <entry>
            <title><![CDATA[No admin folder for installation (/admin/install file not found)]]></title>
            <link rel="alternate" href="https://larapass.support-hub.io/articles/no-admin-folder-for-installation-admininstall-file-not-found" />
            <id>https://larapass.support-hub.io/1016</id>
            <author>
                <name><![CDATA[Tech Tailor]]></name>
            </author>
            <summary type="html">
                <![CDATA[<p>This is a very common error that allot of users encounter.</p><p>LaraPass is build using the Laravel Framework which follows the MVC structure, meaning each URL corresponds to a particular route and not a direct file/folder.</p><p>If you have uploaded larapass_source files in your public directory, then you will be able access the installation menu by visiting </p><pre>yoursite.com/public/admin/install</pre><p>But this is very dangerous as you will be exposing your secure environment files on a publicly accessible domain (i.e., yoursite.com/.env).</p><p>In order to have a secure installation, you should place the source files outside the public folder (namely in the root folder) and then either create a symlink between larapass_source/public folder and your public_html folder or create a new sub-domain and have that sub domain's root be the larapass_source/public directory as shown <a href="https://docs.larapass.net/1.2/cpanel#setup_cpanel" target="_blank" rel="noreferrer noopener">here</a>.</p><p>If you are still facing any difficulty and require additional help or have suggestions about how we can make this more clearly explained, feel free to open a support ticket and we would be more than happy to resolve any issue you may have.</p><p>-LaraPass Support</p>]]>
            </summary>
                                    <updated>2019-07-26T10:23:48+00:00</updated>
        </entry>
            <entry>
            <title><![CDATA[[Ugent][High Priority] Critical Security Bug Fix released on 25-Nov-202]]></title>
            <link rel="alternate" href="https://larapass.support-hub.io/articles/ugenthigh-priority-critical-security-bug-fix-released-on-25-nov-202-2381" />
            <id>https://larapass.support-hub.io/2381</id>
            <author>
                <name><![CDATA[Tech Tailor]]></name>
            </author>
            <summary type="html">
                <![CDATA[<p>We were notified of a critical security bug caused by a 3rd-party vendor package at random on 24-Nov-2020. We have identified and the fixed this bug immediately and released the update files on CodeCanyon for everyone else to download on 25-Nov-2020.</p><p>This is a high priority security bug and we recommend you update your larapass app's immediately. If you are facing any issues or difficulty in doing so, please open a support ticket or email us at <a href="mailto:support@larapass.net" target="_blank" rel="noreferrer noopener">support@larapass.net</a> and we will be more than happy to help you out.</p><p>Thanks &amp; Regards,<br />LaraPass Support Team</p>]]>
            </summary>
                                    <updated>2020-11-25T06:38:57+00:00</updated>
        </entry>
    </feed>
