diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/notes.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/notes.txt b/misc/notes.txt index ede8176b..91a0e67c 100644 --- a/misc/notes.txt +++ b/misc/notes.txt @@ -292,3 +292,10 @@ CREATE FULLTEXT INDEX __________ ON Table (Column); If <4 character searches not working: Add ft_min_word_len = 2 (to make te minimum characters 2) to config file Rebuild relevant tables with fulltext indexes with "REPAIR TABLE _______ QUICK" + +=========================================== + +To delete all .pyc files (for example if there's some issue you're having trouble resolving): +find . -name '*.pyc' -delete +http://stackoverflow.com/questions/785519/how-do-i-remove-all-pyc-files-from-a-project + |