MODx is an excellent AJAX enabled content management system 활성화된 콘텐츠 관리 시스템이 우수한 ajax modx , which is leagues ahead of Joomla / Mambo. 이 리그 앞두고 joomla / 맘보합니다. One of the features of MODx is that pages aren’t fully deleted. 이 페이지를 modx 중 하나의 기능을 완전히 삭제되지 않습니다. They are marked as deleted (displayed as strike-through items ) and they are not displayed on the web. 그들은 스팸으로 삭제 (스트라이크 -을 통해 표시되는 항목) 그리고 그들은 웹에서 표시되지 않습니다. However they still remain in the database. 그러나 데이터베이스에있는 그들은 여전히 남아있습니다. This is a great feature to prevent accidental deletion. 이것은 훌륭한 기능을 우발적인 삭제를 방지합니다. However sometimes you really need to delete pages to reduce the clutter and prevent conflicting aliases. 그러나 때로는 당신이 정말 필요로 잡음을 줄이기 위해 페이지를 삭제하고 충돌을 방지하기 별칭을합니다. Here is how you can truly (and irrevocably) delete pages from the database. 여기에이 얼마나 진정으로하실 수있습니다 (그리고 영구적) 페이지를 데이터베이스에서 삭제합니다.

You will need to login to mysql using mysql command line or phpMyAdmin. mysql을 사용하셔야합니다 mysql에 로그인하여 명령줄이나 phpmyadmin합니다.
Steps: 단계 :
1. Find the id of the page you want to delete (provided within bracket). 에게 신분증을 찾아 삭제하고자하는 페이지의 (제공 ~ 브래킷).
2. 두합니다. Execute the query: 실행하는 검색어 :
delete from modx_site_content where id = your_id modx_site_content 어디에서 삭제 번호 = your_id

Note: You can also delete using the page title: 참고 사항 :이 페이지를 사용하여 삭제할 수도있습니다 제목 :
delete from modx_site_content where pageTitle = ‘ page_title ‘; modx_site_content 어디에서 삭제 pagetitle = 'page_title';

Disclaimer: Use the above at your own risk. 면책 조항 : 상기의 사용에 따른 위험을 사용합니다. You may lose data if you are careless. 부주 의한 경우에는 데이터를 잃을 수있습니다.

Jay (see comment below) gave a much better and simpler solution. 제이 (상세 설명 참조)을 말하던가 훨씬 더 좋고 간단한 솔루션을합니다. In his words - “It may not be obvious from the manager but you can easily purge deleted documents (permanently) from the tree by clicking on the Garbage Can icon in the manager.” 그의 단어 - "우리의 매니저로부터되지 않을 수있습니다 분명하지만 쉽게 제거하실 수있습니다 삭제된 문서 (영구)을 나무에 아이콘을 클릭하여 쓰레기통의 매니저합니다."