Changes between Version 194 and Version 195 of BackwardsIncompatibleChanges
- Timestamp:
- Jul 21, 2008, 12:28:12 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v194 v195 981 981 make any changes in most cases. In all other cases, some alterations will be 982 982 required. This change will have different effects for different web server 983 setups. In all cases, however,you should remove the `SCRIPT_NAME` portion of983 setups. In all cases, you should remove the `SCRIPT_NAME` portion of 984 984 the URLs from your `URLConf` file (they currently need to be included). 985 985 … … 1018 1018 1019 1019 If you configure your system using either of the Apache and fastcgi methods 1020 described in Django's fastcgi documentation, all you need to change is to1020 described in Django's fastcgi documentation, all you need to do is 1021 1021 remove the script prefix from the URL patterns in your `URLConf`. 1022 1022 … … 1028 1028 reverse URL construction. To overcome this problem, you can use the 1029 1029 `FORCE_SCRIPT_NAME` Django setting to force the value to whatever you want. 1030 This is a bit of a hacky solution, since it 'srequires changing the project1030 This is a bit of a hacky solution, since it requires changing the project 1031 1031 settings every time you change the URL prefix. However, there's nothing that 1032 1032 can be done about that in the general case, since Django is simply not passed