How To Truly Delete Pages in MODx 페이지를 삭제하는 방법을 진정으로 modx
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.” 그의 단어 - "우리의 매니저로부터되지 않을 수있습니다 분명하지만 쉽게 제거하실 수있습니다 삭제된 문서 (영구)을 나무에 아이콘을 클릭하여 쓰레기통의 매니저합니다."
Filed under 밑에 CMS Software cms 소프트웨어를 , Enterprise Software 엔터 프라이즈 소프트웨어를 , Headline News 헤드 라인 뉴스 , How To 하는 방법을 , Joomla joomla , Mambo 맘보 , Open Source Software 오픈 소스 소프트웨어 , Web 웹 , Web 2.0 웹 2.0 | |
| |
RSS 2.0 rss 2.0 | |
Trackback 트랙백 this Article | 이 문서 |
Email this Article 전자 우편이 문서
You may also like to read 같은를 읽을 수있습니다 |




December 17th, 2007 at 7:42 am 2007년 12월 17일에서 오전 7시 42분
Glad to see that you are enjoying MODx. 당신이 즐기는 modx 기쁘다. I have deployed dozens of sites using MODx since 0.9.2. modx를 사용하여 수십개의 사이트를 배포한 이후로 나는 0.9.2. 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. 그것의 매니저로부터되지 않을 수있습니다 분명하지만 쉽게 제거하실 수있습니다 삭제된 문서 (영구)을 나무에 아이콘을 클릭하여 쓰레기통의 매니저. This is the purge command and all deleted documents will no longer be in the tree and cannot be undone. 이것이 퍼지 명령 및 모든 삭제된 문서는 더 이상의 트리를 취소할 수없습니다. Alot easier than using phpMyAdmin. phpmyadmin를 사용하여보다 많은합니다.
Hope this helps, 희망이를 통해,
Jay 제이
December 18th, 2007 at 10:31 am 2007년 12월 18일에서 오전 10시 31분
Thanks for the simpler solution. 간단한 솔루션을 주셔서 감사합니다.