undefined function session_name()
undefined function session_name() to fix this on freebsd: you must install: /usr/ports/www/php5-session
undefined function session_name() to fix this on freebsd: you must install: /usr/ports/www/php5-session
How do we tar a directory and mail it as an attachment in redhat? tar -cf data.tar .; mutt -s “Logs” -a . [email protected] < tar directory mail attachment redhat
Note If you just want to see the yum command for Redhat install uuencode skip to the end. Background Information Uuencoding is a form of binary-to-text encoding that originated in the Unix program uuencode, for encoding binary data for transmission…
Problem I went nuts trying to figure out what “staged build to a non-staged build” meant when my windows server 2008 sp2 to r2 upgrade kept failing. Why is this happening? Here’s what happening. Your original install was a staged…
PAYWARE Ultra Edit (win + linux) – Beyond Compare (win + linux) – Araxis Merge (win + osX) – ExamDiff Pro (win) – ECMerge (win, osX, linux) – MergePlant (win) – Changes (OSX) …
Linux ifconfig Example Type the following command: ifconfig | grep ‘inet addr:’| grep -v ‘127.0.0.1’ | cut -d: -f2 | awk ‘{ print $1}’ FreeBSD/OpenBSD ifconfig Example Type the following command: ifconfig | grep -E ‘inet.[0-9]’ | grep -v ‘127.0.0.1’…
I needed to rename a bunch of apache virtual hosts to *:80 and *:443. Here’s an example that renames to httpd.confr and changes :80 and :443 to *:80 and *:443: # sed -ir ‘s/VirtualHost [0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}:80/VirtualHost *:80/’ # sed…
Instructions First try this: Run the following from run prompt: cmd /c “echo off | clip” Next try this: 1 Click the “Start” menu and “Control Panel.” 2 Double-click the “Administrative Tools” icon. If the “Administrative Tools” icon is not available,…
from Did you ever loose Clipboard functionality (copy/paste) while working with several Terminal Server sessions? I think everyone that works a lot with Terminal Server has experienced this from time to time. It’s caused by badly behaving applications. Dimitry…
How can you automate command line linux ? Using Pexpect of course! Pexpect is a pure Python module that makes Python a better tool for controlling and automating other programs. Pexpect is similar to the Don Libes `Expect` system, but…