see
functions.inc.php file. Note the two “/2″ additions.
Change:
// set max string size before writing to file
if (@ini_get(“memory_limit”)) $max_size=900000*ini_get(“memory_limit”);
else $max_size=$PMBP_SYS_VAR['memory_limit'];
To:
// set max string size before writing to file
if (@ini_get(“memory_limit”)) $max_size=900000*ini_get(“memory_limit”)/2;
else $max_size=$PMBP_SYS_VAR['memory_limit']/2;
SourceForge.net: Detail: 1774361 – Memory Exhasted Bug Fix Suggestion
+
PHP Fatal error: Maximum execution time of 60 seconds exceeded in {phpMyBackupPro}\functions.inc.php [ phpMyBackupPro v2.1]
Solution: To increase the execution time of PHP, You can modify the {phpMyBackupPro}\global_conf.php
Original code
$CONF['timelimit']=”60″;
Modified code
$CONF['timelimit']=”600″;
http://errerrors.blogspot.com/2007/09/php-fatal-error-maximum-execution-time.html
put in bashrc:
# don’t put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups
# … and ignore same sucessive entries.
export HISTCONTROL=ignoreboth
Bug #53095 in mc (Debian): “mc: each action pollutes .bash_history”
rsync -avz -e ssh remoteuser@remotehost:/remote/dir /this/dir//
rsync -avz --delete --numeric-ids -e ssh root@abc.ro:/media/self/ /mnt/sda2
/etc/ssh/ssh_config :
ServerAliveInterval 60
#
# dispatch-conf.conf
#
# Directory to archive replaced configs
archive-dir=/etc/config-archive
# Use rcs for storing files in the archive directory?
# (yes or no)
use-rcs=no
# Diff for display
# %s old file
# %s new file
#diff=”diff -Nu %s %s | less –no-init –QUIT-AT-EOF”
diff=”colordiff -u %s %s | less”
# Diff for interactive merges.
# %s output file
# %s old file
# %s new file
merge=”sdiff –suppress-common-lines –output=%s %s %s”
# Automerge files comprising only CVS interpolations (e.g. Header or Id)
# (yes or no)
replace-cvs=yes
# Automerge files comprising only whitespace and/or comments
# (yes or no)
replace-wscomments=yes
# Automerge files that the user hasn’t modified
# (yes or no)
replace-unmodified=yes
# Per-session log file of changes made to configuration files
log-file=/var/log/dispatch-conf.log
NOTE:
You can disable this feature by setting CONFIG_PROTECT=”-*” in /etc/make.conf.
Then, Portage will mercilessly auto-update your config files. Alternatively,
you can leave Config File Protection on but tell Portage that it can overwrite
files in certain specific /etc subdirectories. For example, if you wanted
Portage to automatically update your rc scripts and your wget configuration,
but didn’t want any other changes made without your explicit approval, you’d
add this to /etc/make.conf:
CONFIG_PROTECT_MASK=/etc/wget /etc/rc.d