Tuesday, November 20, 2012
Tuesday, October 30, 2012
MX Google Apps
Q:
I found error when
Delivery to the following recipient failed permanently:
xxxxx@bharatanet.com
Technical details of permanent failure:
Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 No Such User Here" (state 13).
A:
Please see refer to
http://support.google.com/a/bin/answer.py?hl=en&answer=33915
Wednesday, October 17, 2012
Wednesday, October 10, 2012
Thursday, August 30, 2012
phpmyadmin login forbidden
Q: Login without a password is forbidden by configuration (see AllowNoPassword) when using phpmyadmin login
A: Change file config.inc.php
Sunday, June 3, 2012
Check CSR File
If you have CSR file, you can decoder the information
with sintax
openssl req -in mycsr.csr -noout -text
http://www.sslshopper.com/csr-decoder.html
https://ssl-tools.verisign.com/#csrValidator
Tuesday, April 17, 2012
Mark and Reply Comment

When you want to auto comment in reply of message
Klik On the Tools menu, click Options.
then Click E-Mail Options, select the Mark my comments with check box, and then type the text that you want to use to identify your comments.
Note When you reply to a message, this text will be used to identify any comments you make in the body of the sender's original message.
Sunday, April 15, 2012
Database password phpmyadmin
Senayan is library application. You can access or update database in C:\wamp\apps\phpmyadmin3.2.1\config.inc.php
check username or password is right with you db access?
check username or password is right with you db access?
Wednesday, April 4, 2012
Display phpmyadmin
// ---------------------- this is file config.inc.php -----------------------
// ---------------- locate c:/wampp/apps/phpmyadmin3.2.0.1/ -----------------------
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.2.0.1/"
# to give access to phpmyadmin from outside
# replace the lines
#
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#
# by
#
# Order Allow,Deny
# Allow from all
#
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
#Allow from 172.30.118.130
Allow from all
// ---------------------- this is file phpmyadmin.conf -----------------------
// ---------------- locate c:/wampp/alias/phpmyadmin.conf -----------------------
/* Servers configuration */
$i = 0;
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
#$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
/* End of servers configuration */
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>PHP
// ---------------- locate c:/wampp/apps/phpmyadmin3.2.0.1/ -----------------------
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.2.0.1/"
# to give access to phpmyadmin from outside
# replace the lines
#
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
#
# by
#
# Order Allow,Deny
# Allow from all
#
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
#Allow from 172.30.118.130
Allow from all
// ---------------------- this is file phpmyadmin.conf -----------------------
// ---------------- locate c:/wampp/alias/phpmyadmin.conf -----------------------
/* Servers configuration */
$i = 0;
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
#$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
/* End of servers configuration */
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>PHP
Friday, March 30, 2012
Reset Password Joomla
UPDATE `jos_users` SET `password` = MD5( 'new_password' ) WHERE `jos_users`.`username` = "admin" ;
Wednesday, March 21, 2012
Excel: excel Cannot shift object off sheet
Warning : excel Cannot shift object off sheet
Sub Test()
Dim s As Shape
On Error Resume Next
For Each s In ActiveSheet.Shapes
s.Placement = xlMoveAndSize
Next
End Sub
Sub Test()
Dim s As Shape
On Error Resume Next
For Each s In ActiveSheet.Shapes
s.Placement = xlMoveAndSize
Next
End Sub
Tuesday, March 20, 2012
Tanda Tangan Digital
Bagaimana membuat tanda tangan digital? Di link berikut ini caranya
http://www.mylivesignature.com
http://www.mylivesignature.com
Tuesday, March 6, 2012
SELEKSI FILE DAN SHEET
NamaFile = Cells(2, 3).Value
NamaSheet = Cells(3, 3).Value
Windows(NamaFile).Activate
Sheets(NamaSheet).Select
NamaSheet = Cells(3, 3).Value
Windows(NamaFile).Activate
Sheets(NamaSheet).Select
Tuesday, February 7, 2012
Create Domain in Localhost
1. Edit File httpd.conf then create VirtualHost
ServerName wordpress
ServerAlias wordpress
DocumentRoot "G:/03.DATA.WEB/00A.Personal/020.warungilmu.info"
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
2. Edit file Hosts in C:\Windows\System32\drivers\etc\hosts
127.0.0.1 localhost
127.0.0.1 wordpress
3. Restart Apache
ServerName wordpress
ServerAlias wordpress
DocumentRoot "G:/03.DATA.WEB/00A.Personal/020.warungilmu.info"
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
2. Edit file Hosts in C:\Windows\System32\drivers\etc\hosts
127.0.0.1 localhost
127.0.0.1 wordpress
3. Restart Apache
Subscribe to:
Posts (Atom)