]> git.immae.eu Git - github/wallabag/wallabag.git/blame - docs/en/user/faq.rst
Added more info about Doctrine / PHP bug
[github/wallabag/wallabag.git] / docs / en / user / faq.rst
CommitLineData
0e9339c4
NL
1Frequently Asked Questions
2==========================
3
4127d7ad
P
4During the installation, I got the error ``Error Output: sh: 1: @post-cmd: not found``
5--------------------------------------------------------------------------------------
0e9339c4
NL
6
7It seems you have a problem with your ``composer`` installation. Try to uninstall and reinstall it.
8
9`Read the documentation about composer to know how to install it
10<https://getcomposer.org/doc/00-intro.md>`__.
fa04bddd 11
4127d7ad
P
12I can't validate the registration form
13--------------------------------------
fa04bddd 14
4127d7ad 15Ensure that all fields are properly filled:
fa04bddd
NL
16
17* valid email address
18* same passwords in two fields
19
4127d7ad
P
20I'm not receiving my activation email
21-------------------------------------
fa04bddd 22
4127d7ad
P
23Are you sure your email address was correct? Did you check your spam folder?
24
25If you still don't see the activation email, please ensure that you have
26installed and properly configured a mail transfer agent. Be sure to include a
27firewall rule for SMTP. E.g., if using firewalld:
28
29::
30
31 firewall-cmd --permanent --add-service=smtp
32 firewall-cmd --reload
33
34Lastly, if you have SELinux enabled, set the following rule:
35
36``setsebool -P httpd_can_sendmail 1``
fa04bddd
NL
37
38When I click on the activation link, I've got this message: ``The user with confirmation token "DtrOPfbQeVkWf6N" does not exist``.
39----------------------------------------------------------------------------------------------------------------------------------
40
41You already enabled your account or the URL of the activation email is wrong.
42
43I forgot my password
44--------------------
45
46You can reset your password by clicking on ``Forgot your password?`` link,
47on the login page. Then, fill the form with your email address or your username,
48you'll receive an email to reset your password.
585fd2a4
NL
49
50I've got the ``failed to load external entity`` error when I try to install wallabag
51------------------------------------------------------------------------------------
52
53As described `here <https://github.com/wallabag/wallabag/issues/2529>`_, please edit your ``web/app.php`` file and add this line: ``libxml_disable_entity_loader(false);`` on line 5.
4b5e95c0
NL
54
55This is a Doctrine / PHP bug, nothing we can do about it.