| WordPress | Mark reviewed View change on page (view page history) |
- 24 February Admin made an edit with summary:
| Last seen |
Current |
| Line 18: |
Line 18: |
|
| |
|
| For example, you can quickly get a list of your users, with ID, login, display_name, user_email, user_registered and roles | | For example, you can quickly get a list of your users, with ID, login, display_name, user_email, user_registered and roles |
| <source lang="bash"> | | <syntaxhighlight lang="bash"> |
| sudo -u www-data wp user list | | sudo -u www-data wp user list |
| </source> | | </syntaxhighlight> |
|
| |
|
| The cli integrates with CiviCRM -- and even allows you to INSTALL CiviCRM into your WordPress site, not just manage it. For details: see [[CiviCRM/WordPress]] | | The cli integrates with CiviCRM -- and even allows you to INSTALL CiviCRM into your WordPress site, not just manage it. For details: see [[CiviCRM/WordPress]] |
|
| Lowercase files | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Fail2ban | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Using git with drupal | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Software Documentation | Mark reviewed View change on page (view page history) |
- 24 February Admin made an edit with summary:
| Last seen |
Current |
| Line 42: |
Line 42: |
| == Documenting other languages == | | == Documenting other languages == |
| Aside from the Python-specific PyDoc, there are [http://www.xs4all.nl/~rfsber/Robo/robodoc.html ROBODoc] (Windows and Fink) and [http://www.stack.nl/~dimitri/doxygen Doxygen] tools which should prove to meet all needs. For doxygen, you can | | Aside from the Python-specific PyDoc, there are [http://www.xs4all.nl/~rfsber/Robo/robodoc.html ROBODoc] (Windows and Fink) and [http://www.stack.nl/~dimitri/doxygen Doxygen] tools which should prove to meet all needs. For doxygen, you can |
| <source lang="bash"> | | <syntaxhighlight lang="bash"> |
| sudo apt-get install doxygen-gui doxygen doxygen-doc | | sudo apt-get install doxygen-gui doxygen doxygen-doc |
| </source> | | </syntaxhighlight> |
|
| |
|
| == Local Documentation Resources for your Operating System == | | == Local Documentation Resources for your Operating System == |
|
| File Upload | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Importing contacts | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Subversion/client | Mark reviewed View change on page (view page history) |
- 24 February Admin made an edit with summary:
| Last seen |
Current |
| Line 11: |
Line 11: |
| Each subversion client (such as tortoisesvn or kdesvn) is a separate project and so the availability of translated interfaces, and translated support information is dependent on that particular project. The command-line svn client is available in many languages as it the subversion book. | | Each subversion client (such as tortoisesvn or kdesvn) is a separate project and so the availability of translated interfaces, and translated support information is dependent on that particular project. The command-line svn client is available in many languages as it the subversion book. |
|
| |
|
| <source lang="bash"> | | <syntaxhighlight lang="bash"> |
| locate subversion.mo | | locate subversion.mo |
| </source> will tell you what translations for the svn client are installed on a linux host. | | </syntaxhighlight> will tell you what translations for the svn client are installed on a linux host. |
|
| |
|
| As you can see at http://tortoisesvn.net/translation_release_gui , TortoiseSVN is available in roughly 28 different languages, making it a good choice for non-English contributors. The documentation is similarly translated into many languages. | | As you can see at http://tortoisesvn.net/translation_release_gui , TortoiseSVN is available in roughly 28 different languages, making it a good choice for non-English contributors. The documentation is similarly translated into many languages. |
|
| Gluster | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Xrandr | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Opcache | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| MediaWiki/Upgrade/REL1 26 to REL1 27 | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Js | Mark reviewed View change on page (view page history) |
- 24 February Admin made an edit with summary:
| Last seen |
Current |
| Line 1: |
Line 1: |
| formChek.js | | formChek.js |
| from ~1997 | | from ~1997 |
| <source lang="javascript"> | | <syntaxhighlight lang="javascript"> |
| <!-- | | <!-- |
| // originally from Netscape. | | // originally from Netscape. |
| Line 905: |
Line 905: |
| } | | } |
| --> | | --> |
| </source> | | </syntaxhighlight> |
|
| |
|
| [[Category:JavaScript]] | | [[Category:JavaScript]] |
|
| Troubleshooting selinux | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| QualityBox/development | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| CiviCRM/debugging | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| FontAwesome | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| Software Collections | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|
| CiviCRM/Demo | Mark reviewed View change on page (view page history) |
- 24 February Admin made an edit with summary:
| Last seen |
Current |
| Line 152: |
Line 152: |
| # If you want to move Wordpress to it's own directory https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory | | # If you want to move Wordpress to it's own directory https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory |
| # If you want to get rid of the built-in "household" contact type (if you don't use it) since there is no configuration setting or UI to do this. | | # If you want to get rid of the built-in "household" contact type (if you don't use it) since there is no configuration setting or UI to do this. |
| <source lang="sql"> | | <syntaxhighlight lang="sql"> |
| UPDATE civicrm_contact_type SET is_active = 0 WHERE name = 'Household'; | | UPDATE civicrm_contact_type SET is_active = 0 WHERE name = 'Household'; |
| </source> | | </syntaxhighlight> |
| or, you can do it in the API explorer if you don't have database access.<ref>https://civicrm.stackexchange.com/questions/54/how-can-i-disable-households/57#57 </ref> | | or, you can do it in the API explorer if you don't have database access.<ref>https://civicrm.stackexchange.com/questions/54/how-can-i-disable-households/57#57 </ref> |
|
| |
|
|
| SELinux | View change on page (view page history) |
- 24 February Admin made an edit with summary:
|