i find it troublesome that i couldn't alt click in my Virtualbox client.
one way to fix it is by resetting the alt key in the host file to super(windows) key.
Go to windows preferences in setting, and change "movement key" from "alt" to "Super"
Thursday, October 20, 2011
Wednesday, October 19, 2011
samba sharing on linux
After several frustration to get sharing working from linux,
finally found the root of the problem.
It is often that ubuntu / linux seems to add invalid charactor to the sharing name.
The solution is to remove them.
Exampke: user-intel (Linux mint)
Change to userintel
finally found the root of the problem.
It is often that ubuntu / linux seems to add invalid charactor to the sharing name.
The solution is to remove them.
Exampke: user-intel (Linux mint)
Change to userintel
Thursday, October 13, 2011
Qmail route email to external smtp relay
Edit
/var/qmail/control/smtproutescontent:
:hostname.com
Example:
:smtp.tm.net.my
References:
Monday, October 10, 2011
Kloxo Yum Gave Error... Trying Again
If you ever tried to install kloxo, and encounter this error,
and comment it off by adding #
Updated: 24 Sept 2012:
Okay, normally this error comes out when an installation is incomplete along the process.
So the system have been configured to reject system call, therefore reinstalling it is not possible.
Best way is to reformat your server and install from fresh again.
Normally happen to 64 bits os, best to fall back to 32bits.
it might be that you are trying to install kloxo on 64bits system.
Do a uname -m to see if its x86_64 (if yes, then its 64bits).
If its a i686, its not.
If you encounter that error, its likely that your /etc/php.ini is configured to disallow function "system".
Edit the php.ini and find for all line with:
disable_functions =exec,passthru,shell_exec,system...
Try to find for more of these line. Sometimes its been set more than once.
Updated: 24 Sept 2012:
Okay, normally this error comes out when an installation is incomplete along the process.
So the system have been configured to reject system call, therefore reinstalling it is not possible.
Best way is to reformat your server and install from fresh again.
Normally happen to 64 bits os, best to fall back to 32bits.
Tuesday, October 4, 2011
MySQL Lock tables and subqueries
Example error:
Table 'table' was not locked with LOCK TABLES
LOCK TABLES x write, y write;
select * from x; #works
select * from y; #works
But:
select *,
(select fieldname from y where fieldcond=x.field2) as yname
from x where field1='xxx'; #failed with
#y tables is not locked
Solution:
LOCK TABLES x write, y write, y as yalias write;
select *,
(select fieldname from y yalias where fieldcond=x.field2) as yname
from x where field1='xxx';
#WORKS!
Check system file changes from installed package
On redhat based system:
rpm --verify -all
On Debian based system:
dpkg -l \*|while read s n rest; do if [ "$s" == "ii" ]; then echo $n;
fi; done > ~/tmp.txt
for f in `cat ~/tmp.txt`; do debsums -s -a $f; done
Monday, October 3, 2011
select a field by first row via left join
There are times when we need to select first record of a table in a join tables.
Problem with mysql is that after joining tables together, there will be no indexing,
making query extremely slow.
First, makesure all inner join uses on query to limit the records instead of where condition.
This way, the record is filtered based on table indexes (make sure you index'em first) in the joining process.
2nd, to only populate a field by first row which matches the criteria, do a left join
select x.field1, x.field2 from table1 x inner join table2 x2 on x.field3=x2.field2
left join table2 x3 on x2.field1=x3.field1 and x3.fields=[some condition to filter to first row]
group by ...
Roundcube Error 500
It seems that kloxo always have issue updating roundcube.
Most of the time, the webmail is updated, but the database is not.
to fix it:
mysql -u root -p roundcubemail
source /home/kloxo/httpd/webmail/roundcube/SQL/mysql.update.sql
Subscribe to:
Posts (Atom)