Show More
@@ -0,0 +1,70 b'' | |||||
|
1 | .. _troubleshooting: | |||
|
2 | ||||
|
3 | ||||
|
4 | =============== | |||
|
5 | Troubleshooting | |||
|
6 | =============== | |||
|
7 | ||||
|
8 | :Q: **Missing static files?** | |||
|
9 | :A: Make sure either to set the `static_files = true` in the .ini file or | |||
|
10 | double check the root path for your http setup. It should point to | |||
|
11 | for example: | |||
|
12 | /home/my-virtual-python/lib/python2.6/site-packages/rhodecode/public | |||
|
13 | ||||
|
14 | | | |||
|
15 | ||||
|
16 | :Q: **Can't install celery/rabbitmq?** | |||
|
17 | :A: Don't worry RhodeCode works without them too. No extra setup is required. | |||
|
18 | Try out great celery docs for further help. | |||
|
19 | ||||
|
20 | | | |||
|
21 | ||||
|
22 | :Q: **Long lasting push timeouts?** | |||
|
23 | :A: Make sure you set a longer timeouts in your proxy/fcgi settings, timeouts | |||
|
24 | are caused by https server and not RhodeCode. | |||
|
25 | ||||
|
26 | | | |||
|
27 | ||||
|
28 | :Q: **Large pushes timeouts?** | |||
|
29 | :A: Make sure you set a proper max_body_size for the http server. Very often | |||
|
30 | Apache, Nginx or other http servers kill the connection due to to large | |||
|
31 | body. | |||
|
32 | ||||
|
33 | | | |||
|
34 | ||||
|
35 | :Q: **Apache doesn't pass basicAuth on pull/push?** | |||
|
36 | :A: Make sure you added `WSGIPassAuthorization true`. | |||
|
37 | ||||
|
38 | | | |||
|
39 | ||||
|
40 | :Q: **Git fails on push/pull?** | |||
|
41 | :A: Make sure you're using an wsgi http server that can handle chunked encoding | |||
|
42 | such as `waitress` or `gunicorn` | |||
|
43 | ||||
|
44 | | | |||
|
45 | ||||
|
46 | :Q: **How i use hooks in RhodeCode?** | |||
|
47 | :A: It's easy if they are python hooks just use advanced link in hooks section | |||
|
48 | in Admin panel, that works only for Mercurial. If you want to use githooks, | |||
|
49 | just install proper one in repository eg. create file in | |||
|
50 | `/gitrepo/hooks/pre-receive`. You can also use RhodeCode-extensions to | |||
|
51 | connect to callback hooks, for both Git and Mercurial. | |||
|
52 | ||||
|
53 | | | |||
|
54 | ||||
|
55 | :Q: **RhodeCode is slow for me, how can i make it faster?** | |||
|
56 | :A: See the :ref:`performance` section | |||
|
57 | ||||
|
58 | For further questions search the `Issues tracker`_, or post a message in the | |||
|
59 | `google group rhodecode`_ | |||
|
60 | ||||
|
61 | .. _virtualenv: http://pypi.python.org/pypi/virtualenv | |||
|
62 | .. _python: http://www.python.org/ | |||
|
63 | .. _mercurial: http://mercurial.selenic.com/ | |||
|
64 | .. _celery: http://celeryproject.org/ | |||
|
65 | .. _rabbitmq: http://www.rabbitmq.com/ | |||
|
66 | .. _python-ldap: http://www.python-ldap.org/ | |||
|
67 | .. _mercurial-server: http://www.lshift.net/mercurial-server.html | |||
|
68 | .. _PublishingRepositories: http://mercurial.selenic.com/wiki/PublishingRepositories | |||
|
69 | .. _Issues tracker: https://bitbucket.org/marcinkuzminski/rhodecode/issues | |||
|
70 | .. _google group rhodecode: http://groups.google.com/group/rhodecode No newline at end of file |
@@ -131,7 +131,8 b' Listed bellow are various support resour' | |||||
131 |
|
131 | |||
132 | .. note:: |
|
132 | .. note:: | |
133 |
|
133 | |||
134 | Please try to read the documentation before posting any issues |
|
134 | Please try to read the documentation before posting any issues, especially | |
|
135 | the **troubleshooting section** | |||
135 |
|
136 | |||
136 | - Join the `Google group <http://groups.google.com/group/rhodecode>`_ and ask |
|
137 | - Join the `Google group <http://groups.google.com/group/rhodecode>`_ and ask | |
137 | any questions. |
|
138 | any questions. |
@@ -54,8 +54,8 b" copyright = u'%s, Marcin Kuzminski' % (d" | |||||
54 | # The short X.Y version. |
|
54 | # The short X.Y version. | |
55 | root = os.path.dirname(os.path.dirname(__file__)) |
|
55 | root = os.path.dirname(os.path.dirname(__file__)) | |
56 | sys.path.append(root) |
|
56 | sys.path.append(root) | |
57 |
from rhodecode import |
|
57 | from rhodecode import __version__ | |
58 |
version = |
|
58 | version = __version__ | |
59 | # The full version, including alpha/beta/rc tags. |
|
59 | # The full version, including alpha/beta/rc tags. | |
60 | release = __version__ |
|
60 | release = __version__ | |
61 |
|
61 |
@@ -25,6 +25,7 b' Users Guide' | |||||
25 | usage/statistics |
|
25 | usage/statistics | |
26 | usage/backup |
|
26 | usage/backup | |
27 | usage/debugging |
|
27 | usage/debugging | |
|
28 | usage/troubleshooting | |||
28 |
|
29 | |||
29 | **Develop** |
|
30 | **Develop** | |
30 |
|
31 |
@@ -687,43 +687,9 b' environment.' | |||||
687 | Other configuration files |
|
687 | Other configuration files | |
688 | ------------------------- |
|
688 | ------------------------- | |
689 |
|
689 | |||
690 |
Some example init.d scripts can be found |
|
690 | Some example init.d scripts can be found in init.d directory:: | |
691 |
|
||||
692 | https://rhodecode.org/rhodecode/files/tip/init.d |
|
|||
693 |
|
||||
694 |
|
||||
695 | Troubleshooting |
|
|||
696 | --------------- |
|
|||
697 |
|
||||
698 | :Q: **Missing static files?** |
|
|||
699 | :A: Make sure either to set the `static_files = true` in the .ini file or |
|
|||
700 | double check the root path for your http setup. It should point to |
|
|||
701 | for example: |
|
|||
702 | /home/my-virtual-python/lib/python2.6/site-packages/rhodecode/public |
|
|||
703 |
|
||||
704 | | |
|
|||
705 |
|
||||
706 | :Q: **Can't install celery/rabbitmq** |
|
|||
707 | :A: Don't worry RhodeCode works without them too. No extra setup is required. |
|
|||
708 |
|
|
691 | ||
709 | | |
|
692 | https://secure.rhodecode.org/rhodecode/files/beta/init.d | |
710 |
|
||||
711 | :Q: **Long lasting push timeouts?** |
|
|||
712 | :A: Make sure you set a longer timeouts in your proxy/fcgi settings, timeouts |
|
|||
713 | are caused by https server and not RhodeCode. |
|
|||
714 |
|
||||
715 | | |
|
|||
716 |
|
||||
717 | :Q: **Large pushes timeouts?** |
|
|||
718 | :A: Make sure you set a proper max_body_size for the http server. |
|
|||
719 |
|
||||
720 | | |
|
|||
721 |
|
||||
722 | :Q: **Apache doesn't pass basicAuth on pull/push?** |
|
|||
723 | :A: Make sure you added `WSGIPassAuthorization true`. |
|
|||
724 |
|
||||
725 | For further questions search the `Issues tracker`_, or post a message in the |
|
|||
726 | `google group rhodecode`_ |
|
|||
727 |
|
693 | |||
728 | .. _virtualenv: http://pypi.python.org/pypi/virtualenv |
|
694 | .. _virtualenv: http://pypi.python.org/pypi/virtualenv | |
729 | .. _python: http://www.python.org/ |
|
695 | .. _python: http://www.python.org/ | |
@@ -734,4 +700,4 b' For further questions search the `Issues' | |||||
734 | .. _mercurial-server: http://www.lshift.net/mercurial-server.html |
|
700 | .. _mercurial-server: http://www.lshift.net/mercurial-server.html | |
735 | .. _PublishingRepositories: http://mercurial.selenic.com/wiki/PublishingRepositories |
|
701 | .. _PublishingRepositories: http://mercurial.selenic.com/wiki/PublishingRepositories | |
736 | .. _Issues tracker: https://bitbucket.org/marcinkuzminski/rhodecode/issues |
|
702 | .. _Issues tracker: https://bitbucket.org/marcinkuzminski/rhodecode/issues | |
737 |
.. _google group rhodecode: http://groups.google.com/group/rhodecode |
|
703 | .. _google group rhodecode: http://groups.google.com/group/rhodecode No newline at end of file |
General Comments 0
You need to be logged in to leave comments.
Login now