Notes
Page 1 of 3, showing 25 records out of 66 total, starting on record 1, ending on 25
| Title | Description | Body | Created | Actions |
|---|---|---|---|---|
| yum/rpm check installation | Check for rpm installation | $ rpm -qa | grep httpd... | 2011-10-21 09:47:15 | View Edit Delete |
| SVN: --username | Change SVN's default user as saved in linux profile. | $ svn commit --username [your_uname] -m "[commit_n... | 2011-04-11 13:32:14 | View Edit Delete |
| Edit/Restart Apache Settings | Alter Apache settings. |    At the terminal execute the commands as... | 2009-11-05 17:14:15 | View Edit Delete |
| SELinux:[CentOS 5.4] MySQL-PHP Remote Database script error fix. | Fixing PHP script unable to connect to remote MySQL database. |    If you haven't disabled SELinux, by def... | 2010-07-27 09:23:35 | View Edit Delete |
| Setting CakePHP's webroot as document root. | tips on deploying CakePHP as main web page. |     A CakePHP application has 3 import... | 2009-11-10 03:15:48 | View Edit Delete |
| SVN: How to fix Obstructed changes. | Fixing Obstructed("~") changes in SVN. | - Move the obstucted file to a temporary location ... | 2010-11-05 10:31:33 | View Edit Delete |
| Service Network Restart | restart network connections/services. | ..#]> service network restart... | 2009-06-13 01:20:21 | View Edit Delete |
| Recursive String Search | Find string in files recursively through a specified directory... | ..]#> grep --color -r "COUNT" modules/ OR ..... | 2009-06-13 01:07:25 | View Edit Delete |
| MySQL: Get and Set a Table's auto_increment value. | Query mySQL table's status to determine its auto_increment value. | 1. SHOW TABLE STATUS LIKE '[tablename]'; 2. ALTER... | 2010-06-29 22:40:00 | View Edit Delete |
| Get Next Auto Increment Value | cakePHP: Retrieving next auto increment value from a model before adding the another record. |  $findResult= $this->MODEL->find('first', ... | 2010-06-04 13:09:25 | View Edit Delete |
| Add sudoer. | Add a sudo authorization to a normal user . | ..]#> cd \etc -go to "/etc" directory. ..]#> vis... | 2009-07-03 12:43:40 | View Edit Delete |
| GiT: SSH Install and startup. | Setting up a quick GiT server on ssh protocol. | @ the server(probably remote)... $ cd /usr/s... | 2011-10-31 10:56:19 | View Edit Delete |
| SSH: public/private keys | Setting up SSH public/private keys. This is specially useful on Amazon EC2 setups. | Generate the private/public key. $ ssh-keyge... | 2012-01-27 16:25:00 | View Edit Delete |
| MySQL: Loading data from CSV file. | How to import data from a CSV file to a new MySQL table. | This example below shows an auspost data import... | 2010-08-11 17:00:22 | View Edit Delete |
| SSH/SFTP: Add non-root server login | Adding non-root access to server using ssh key file. | 1. Login as root. 2. Run: adduser webuserwhere ... | 2011-11-23 12:06:21 | View Edit Delete |
| SELinux: httpd_sys_content_t vs httpd_sys_content_rw_t | Allow webserver to add attributes to files on the web content. | By default anything on the webroot(/var/www/html... | 2012-02-01 14:59:20 | View Edit Delete |
| GiTweb: Installing GitWeb | How to setup/install GiTweb on RHEL/Fedora | It is assumed that you already have Git-core and... | 2012-01-27 16:42:56 | View Edit Delete |
| redhat RHEL: Troubleshooting sendmail. | Fixing permission denial on using sendmail. | Ever wonder when your PHP script cannot send email... | 2011-10-24 10:12:05 | View Edit Delete |
| jQuery: input | Get all input and determine if checked or not. | jQ("#ProfSearch :input").each(function(){ if... | 2011-07-05 11:21:26 | View Edit Delete |
| Start/Stop MySQL | Start/Stop MySQL on Mac OSx | $ /usr/local/mysql/support-files/mysql.server st... | 2012-02-11 10:42:03 | View Edit Delete |
| CentOS 5.6: Install APC for PHP | Install APC, accelerator for PHP. | $ yum install gcc httpd-devel php-pear $ yum in... | 2011-06-30 13:50:25 | View Edit Delete |
| PHP: Debugging/Logging | Dumping values to a file when frontend display is not possible. | $fp = fopen('data.txt', 'w'); fwrite($fp, 'crea... | 2011-12-23 10:16:51 | View Edit Delete |
| CentOS: security and SELinux | Command prompt gui for selinux/security settings. | /usr/bin/system-config-securitylevel Or /usr/b... | 2011-02-15 11:47:52 | View Edit Delete |
| Vim: Search Pattern | Search string and count total searches. | :%s/pattern//gn OR :%s/pattern//n "omit 'g' t... | 2011-10-27 14:31:18 | View Edit Delete |
| CPU/Mem info | Command to get CPU or memory info | cat /proc/cpuinfo cat /proc/meminfo lspci ... | 2011-01-11 16:07:59 | View Edit Delete |