To Find and display files last modified les than 90 days ago.
Code Select
find . -name "*" -mtime -90 -print
Free Image Hosting:
http://image-host.developers-heaven.net
Share your images free!!!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function SetNextCellFocus(source) {
var lastFocusCellName = source.name;
var els = document.getElementsByTagName("INPUT");
var lLength = els.length;
for (var i = 0; i < lLength; i++) {
if (els[i].name != null) {
if (els[i].name == lastFocusCellName && i + 1 < lLength) {
try {
els[i + 1].focus();
els[i + 1].select();
}
catch (err) { }
finally {
break;
}
}
}
}
}
ALTER TABLE dbo.TPURENTRY
DROP CONSTRAINT TPURENTRY_ADDITIONNALINFO_DF
GO
ALTER TABLE dbo.TPURENTRY
ALTER COLUMN ADDITIONNALINFO VARCHAR(MAX) NULL
GO
ALTER TABLE dbo.TPURENTRY
ADD CONSTRAINT TPURENTRY_ADDITIONNALINFO_DF DEFAULT '' FOR ADDITIONNALINFO
GO
[mysqld]
log-bin=mysql-bin
server-id=1
/etc/rc.d/init.d/mysql restart
mysql -u root -p
Enter password:
+---------------+----------+--------------+------------------+
| File | Position | Binlog_do_db | Binlog_ignore_db |
+---------------+----------+--------------+------------------+
| mysql-bin.006 | 183 | | |
+---------------+----------+--------------+------------------+
1 row in set (0.00 sec)
mysql> FLUSH TABLES WITH READ LOCK;
shell> mysqldump --all-databases --lock-all-tables >dbdump.db
shell> mysqldump --all-databases --master-data >dbdump.db
mysql> UNLOCK TABLES;
/etc/rc.d/init.d/mysql restart
shell> mysql -h master < dbdump.db
CHANGE MASTER TO MASTER_HOST='192.168.0.100', MASTER_USER='slave_user', MASTER_PASSWORD='<some_password>', MASTER_LOG_FILE='mysql-bin.006', MASTER_LOG_POS=183;
START SLAVE;
quit;
WARNING: channel "pear.php.net" has updated its protocols, use "channel-update pear.php.net" to update pear/Mail requires PEAR Installer (version >= 1.5.6), installed version is 1.5.0 No valid packages found install failed
pear channel-update "pear.php.net"
pear upgrade-all
pear/Mail requires PEAR Installer (version >= 1.5.6), installed version is 1.4.9
No valid packages found
install failed
pear upgrade --force pear
pear install --alldeps Mail
587 inet n - n - - smtpd
/etc/init.d/postfix restart
# /etc/init.d/mysql stop
# mysqld_safe --skip-grant-tables &
# mysql -u root
mysql> use mysql;
mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit
# /etc/init.d/mysql stop
[mysqld]
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
language = /usr/share/mysql/English
bind-address = 65.55.55.2
# skip-networking
....
..
....
# /etc/rc.d/init.d/mysqld restart
$ mysql -u root -p mysql
CREATE DATABASE foo;
mysql> GRANT ALL ON foo.* TO bar@'202.54.10.20' IDENTIFIED BY 'PASSWORD';
mysql> update db set Host='202.54.10.20' where Db='webdb';
mysql> update user set Host='202.54.10.20' where user='webadmin';
<?php
// Create a new image instance
$im = imagecreatetruecolor(100, 100);
// Make the background white
imagefilledrectangle($im, 0, 0, 99, 99, 0xFFFFFF);
// Draw a text string on the image
imagestring($im, 3, 40, 20, 'GD Library', 0xFFBA00);
// Output the image to browser
header('Content-type: image/gif');
imagegif($im);
imagedestroy($im);
?>
[message] => authentication failure [SMTP: Invalid response code received from server (code: 454, response: TLS currently unavailable)]
chown mail:mail /etc/exim.cert
chown mail:mail /etc/exim.key