Notes
Page 1 of 3, showing 25 records out of 66 total, starting on record 1, ending on 25
| Title | Description | Body | Created | Actions |
|---|---|---|---|---|
| Uploading Image to this Notes' module. | how to upload images when an image is needed to illustrate a note. | To upload image just browse for the image using th... | 2009-07-07 13:57:11 | 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 |
| Allow/Deny User ssh login | AllowUsers and DenyUsers | in "/etc/ssh/sshd_config" i.e: AllowUsers root... | 2011-11-29 14:28:12 | View Edit Delete |
| Altering 2 tables on a single action-controller | Adding data on 2 tables without leaving the current controller. | I've just solve a problem i have on my login page,... | 2009-09-28 23:25:42 | View Edit Delete |
| Apache version | Command to determine the Apache version installed. | httpd -v... | 2010-03-10 12:39:02 | View Edit Delete |
| CakePHP: [this] keyword to access its child. | How to access an html element's child using "this" keyword. | jQuery("img", this); ... | 2010-06-24 11:04:59 | View Edit Delete |
| Captcha: Spam protection | Adding captcha on Symfony | @ /lib/form/YourPropelForm.class.php $this->wid... | 2011-08-11 10:28:20 | 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 |
| 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 |
| Clear Model Cache | Tips on changing cakePHP's tables | Ever wonder changing something on the database, li... | 2010-06-18 14:42:10 | View Edit Delete |
| Connect to secured router. | Basic requirments in connecting to a secured wireless router. | Be sure to have the following ready: .   We... | 2010-01-16 09:59:41 | 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 |
| CSS/HTML: Hide overflow on table's td | How to hide or clip overflow on a tables' td element | table { width:250px;table-layout:fixed; } table... | 2011-09-05 10:02:05 | 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 |
| Find time with days range and remove. | The example below finds all files within the same directory from 7 days ago to 3 days ago and deletes them... | find . -ctime +3 -a -ctime -7 -exec rm {} \; ... | 2011-02-21 09:10:26 | View Edit Delete |
| Finding files in linux | Find files modified at a specified time. | Find modified files starting 5 days ago. $ fi... | 2010-03-18 17:38:20 | 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 |
| 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 |
| 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 |
| How to fix: [CentOS 5.4] Timezone database is corrupt. | Troubleshooting a webserver having a fatal error with timezone. | Problem:If you get into trouble with your webserve... | 2010-07-26 17:17:53 | View Edit Delete |
| Install PEAR | PEAR Installation on Mac OS X Lion | $ php /usr/lib/php/install-pear-nozlib.phar $ p... | 2012-02-11 11:24:57 | View Edit Delete |
| Joomla Column Manipulation | How to remove a column | To remove a column in Joomla. For example the 'rig... | 2009-11-19 02:25:59 | 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 |
| Linux How-To: Add user | Add linux user and specify password | Execute the following commands on the terminal... ... | 2010-08-20 10:21:51 | View Edit Delete |
| Linux: sftp using a key file. | Sftp using a key file. Useful when transfering files to Amazon's EC2 instances. | sftp -o IdentityFile=my_key_file.pem lino@aws.your... | 2011-10-12 09:55:41 | View Edit Delete |