Show More
@@ -689,8 +689,8 b' Here is a sample excerpt from an Apache ' | |||
|
689 | 689 | into above configuration |
|
690 | 690 | |
|
691 | 691 | .. note:: |
|
692 |
RhodeCode |
|
|
693 | you don't specify `processes=num` directive in the config | |
|
692 | Running RhodeCode in multiprocess mode in apache is not supported, | |
|
693 | make sure you don't specify `processes=num` directive in the config | |
|
694 | 694 | |
|
695 | 695 | |
|
696 | 696 | Example wsgi dispatch script:: |
@@ -75,6 +75,14 b' This will upgrade the schema and update ' | |||
|
75 | 75 | and will always recheck the settings of the application, if there are no new |
|
76 | 76 | options that need to be set. |
|
77 | 77 | |
|
78 | ||
|
79 | .. note:: | |
|
80 | DB schema upgrade library has some limitations and can sometimes fail if you try to | |
|
81 | upgrade from older major releases. In such case simply run upgrades sequentially, eg. | |
|
82 | upgrading from 1.2.X to 1.5.X should be done like that: 1.2.X. > 1.3.X > 1.4.X > 1.5.X | |
|
83 | You can always specify what version of RhodeCode you want to install for example in pip | |
|
84 | `pip install RhodeCode==1.3.6` | |
|
85 | ||
|
78 | 86 | You may find it helpful to clear out your log file so that new errors are |
|
79 | 87 | readily apparent:: |
|
80 | 88 |
@@ -13,7 +13,15 b' delete a repository from filesystem, it ' | |||
|
13 | 13 | not possible to push,clone or access repository. It's worth a notice that, |
|
14 | 14 | even if someone will be given administrative access to RhodeCode and will |
|
15 | 15 | delete a repository You can easy restore such action by restoring `rm__<date>` |
|
16 | from the repository name, and internal repository storage (.hg/.git) | |
|
16 | from the repository name, and internal repository storage (.hg/.git). There | |
|
17 | is also a special command for cleaning such archived repos:: | |
|
18 | ||
|
19 | paster cleanup-repos --older-than=30d production.ini | |
|
20 | ||
|
21 | This command will scan for archived repositories that are older than 30d, | |
|
22 | display them and ask if you want to delete them (there's a --dont-ask flag also) | |
|
23 | If you host big amount of repositories with forks that are constantly deleted | |
|
24 | it's recommended that you run such command via crontab. | |
|
17 | 25 | |
|
18 | 26 | Follow current branch in file view |
|
19 | 27 | ---------------------------------- |
@@ -31,7 +39,7 b' Checkboxes in compare view allow users t' | |||
|
31 | 39 | only show the range between the first and last checkbox (no cherry pick). |
|
32 | 40 | Clicking more than one checkbox will activate a link in top saying |
|
33 | 41 | `Show selected changes <from-rev> -> <to-rev>` clicking this will bring |
|
34 | compare view | |
|
42 | compare view. In this view also it's possible to switch to combined compare. | |
|
35 | 43 | |
|
36 | 44 | Compare view is also available from the journal on pushes having more than |
|
37 | 45 | one changeset |
General Comments 0
You need to be logged in to leave comments.
Login now