Notes
Page 1 of 3, showing 25 records out of 64 total, starting on record 1, ending on 25
| Title | Description | Body | Created | Actions |
|---|---|---|---|---|
| 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 |
| SSH: public/private keys | Setting up SSH public/private keys. | Generate the private/public key. $ ssh-keyge... | 2012-01-27 16:25:00 | 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 |
| MySQL: restart/status of mysql in fedora 16. | MySQL restart, status, etc. in fedora 16 environment. | systemctl status mysqld.service systemctl start... | 2011-12-19 14:14:39 | 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 |
| 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 |
| 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 |
| 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 |
| 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 |
| yum/rpm check installation | Check for rpm installation | $ rpm -qa | grep httpd... | 2011-10-21 09:47:15 | 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 |
| 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 |
| SVN: Create SVN Branch, Switch to a Branch, commit changes, update from trunk, Merge with trunk. | Working on a project that requires huge change involving mulitple svn commits. | @setup... $ svn copy https://subversion.assembl... | 2011-08-26 17:04:50 | 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 |
| Windows 7: Disable IIS | Disable/Enable IIS | To disable IIS go to “Start>Control Panel>Progra... | 2011-07-07 10:53:48 | 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 |
| 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 |
| SVN: propedit command | Let svn ignore folders. | svn propedit svn:ignore export --editor-cmd vim ... | 2011-06-28 12:19:06 | 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 |
| MySQL : Add new user with privileges. | Add a user account having full privilege to one table only. | Add user... mysql> create user leo@localhost i... | 2011-03-07 09:21:59 | 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 |
| phpMyAdmin in HTTPS | Force SSL/https port when accessing "phpMyAdmin" | Options +FollowSymLinks RewriteEngine On Rewri... | 2011-02-18 09:45:54 | 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 |
| SSH Public/Private Keys | Enable secure ssh login using public/private keys. | First, create a public/private key pair on the cli... | 2011-01-17 11:11:31 | View Edit Delete |