Yesterday I got a chance to write sample build.xml for one of my colleague. He has default build.xml for his project which is written by someone based on random directories (similar to war directory structure). This build.xml is used to pack the directory sturctures and place it into the tomcat server webapp directory. In this type scenario he did not able to debugging his application from eclipse.
I advised them to create one more build.xml based...
1:48:00 AM
Achappan Mahalingam
No comments
By using ob_start(), the page and headers aren't sent to the browser until they've loaded completely, or until we call ob_end_flush(...
1:42:00 AM
Achappan Mahalingam
No comments
Wow! I got this error when i am creating a below table with FULLTEXT indices. The reason for this exception is "Full-Text Search is supported only with MyISAM Engine before MySQL version 5.6"
CREATE TABLE comment( commentid int unsigned NOT NULL AUTO_INCREMENT, userid int unsigned NOT NULL, comment text NOT NULL, PRIMARY KEY (commentid), FULLTEXT KEY comment...
5:04:00 PM
Achappan Mahalingam
No comments
TLS is the new name for SSL. Namely, SSL protocol got to version 3.0;
TLS 1.0 is "SSL 3.1". TLS versions currently defined include TLS 1.1
and 1.2. Each new version adds a few features and modifies some internal
details. We sometimes say "SSL/TLS".
HTTPS is HTTP-within-SSL/TLS.
SSL (TLS) establishes a secured,
bidirectional tunnel for arbitrary binary data between two hosts.
HTTP
is a protocol for sending requests and receiving answers,...
1:43:00 PM
Achappan Mahalingam
No comments

I tried to install a GRUNT (which a javascript task runner to perform repetitive tasks like minification, compilation, unit testing, linting, etc...) but getting network proxy configuration settings error. So started googling to get a solution and found out the below steps to rectify this error.
C:\Users\amahalingam>npm config set proxy http://hostname:80
C:\Users\amahalingam>npm...
4:24:00 PM
Achappan Mahalingam
No comments

v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
I want to use javascript on my
ongoing moodle development work. But the latest version of moodle 2.8
supporting to YUI library. Now there is no use of YUI because yahoo ceased that
api due to transitioning (http://yahooeng.tumblr.com/post/96098168666/important-announcement-regarding-yui)
The...
3:20:00 PM
Achappan Mahalingam
No comments
[root@achappan htdocs_8085]# find . -type f | wc -l14626[root@achappan htdocs_8085]#
Explanation:
find . -type f finds all files ( -type f ) in this ( . ) directory and in all sub directories, the filenames are then printed to standard out one per line.
This is then piped | into wc (word count) the -l option tells wc to only count lines of its input.
Together they count all your files...
1:49:00 PM
Achappan Mahalingam
No comments
You can create a tar archive on two ways like below.
To create an archive of a directory and its contents:
tar -cvf name.tar /path/to/directory
To create an archive of certfain files:
tar -cvf name.tar /path/to/file1 /path/to/file2 /path/to/file3
...
Subscribe to:
Posts (Atom)