Pending reviews for User:Freephile

From Freephile Wiki
Pages reviewed by 5 or more people
Pages reviewed by 3 or more people
Pages reviewed by 0 - 2 people
PreviousNext

Freephile has 324 pending reviews

WordPressMark reviewed View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
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]]
Fail2ban View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Lowercase files View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Using git with drupal View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Software DocumentationMark reviewed View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
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 ==
Subversion/client View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
File Upload View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Importing contacts View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Gluster View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Xrandr View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Opcache View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
MediaWiki/Upgrade/REL1 26 to REL1 27 View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
JsMark reviewed View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
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: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
QualityBox/development View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
CiviCRM/debugging View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
FontAwesome View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
Software Collections View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
CiviCRM/DemoMark reviewed View change on page (view page history)
  • 24 February Admin made an edit with summary: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
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: Text replacement - "<(\/?)source" to "<$1syntaxhighlight"