Job Vacancy Head System for Vectorshades

Job Profile : Head – Systems. — Contact at 9895527145 for applying

Salary is negotiable and could be anywhere around 30k

EDUCATION

• MBA–IT  / • Post Graduate Diploma in System Development (PGDSD) ,

CAREER SKILLS
• MIS Solution Development / MIS Reporting skills
• Software Development (PHP/ASP/MYSQL/MSSQL) &  Technical Support
• Systems Management
• Inventory control Systems
• Costing and negotiation skills
• Financial / Accounting knowledge
• Strong Programming / Networking / Management Concepts.
• Proficient in Data base concepts and Data Warehousing.
TECHNICAL SKILLS
• Windows NT/2000/2003, Linux (Ubuntu)
• MS SQL Server 7.0/2000/2005, MySQL, MS Access
• ASP.NET # VB, ASP, PHP, VB 6, HTML, DHTML, Java script, MSSQL, MYSQL
• MSOffice, Open Office, Outlook, FTP Applications, Adobe Photoshop, Dream viewer and Search engine optimization etc.
• Strong networking concepts on LAN, WAN, VPN Setups.
• Strong data warehousing and MIS skills.

configure perl in apache

In order to browse  perl files (.pl) through apache serer you need to  add few lines in apache configuration file ( httpd.conf)

Add the following in  httpd.conf

AddHandler cgi-script .cgi .pl

Now find the following section

<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>

Add   +ExecCGI to the options list. So it  looks like as follows now

Now find the following section

<Directory />
Options FollowSymLinks +ExecCGI
AllowOverride None
</Directory>

Now save httpd.conf and restart Apache server

Create a sample perl file called test.pl and add the following lines  and save it.

#!/usr/bin/perl
print “content-type: text/html \n\n”;
print “Hello, Perl!”;

Now browse the page

“HEY TO GET FREE CELLPHONE RECHARGE SEEE MY PROFILE”

Orkut account being cracked again !! Beware of it. DO NOT COPY AND PASTE ANY JAVASCRIPT IN TO YOUR  ORKUT ADDRESS BAR

You may get message or scraps from your very close friend  which says  that “HEY TO GET FREE CELLPHONE RECHARGE SEEE MY PROFILE”. When you click on that link it will take you to the profile of your friend where you can find a java script  and you will be asked to copy and paste the java-script in to your orkut address bar. If you  do that Your account is cracked and your profile  will  be acted  as a marketing tool where  the cracker will get your friends list and they will scrap to all and repeat the same

So Beware of it…Orkut account being cracked again !! Beware of it. DO NOT COPY AND PASTE ANY JAVASCRIPT IN TO YOUR  ORKUT ADDRESS BAR

httpd asking password when starting apache service

When starting httpd ( apache server ) it may ask a password to load the SSL certificate. And you may receive a message like given below

———————————-

[root@server SSL]# /etc/init.d/httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: Apache/2.2.11 mod_ssl/2.2.11 (Pass Phrase Dialog)
Some of your private key files are encrypted for security reasons.
In order to read them you have to provide the pass phrases.

Server www.example.com:443 (RSA)
Enter pass phrase:

—————————————-

When apache needs to load the ssl certificate it needs to read the private key and the crt file.  In some case if you encrypted the private key , in order to read the key file you need to provide the password that you used while created the private key.  If you wish to avoid this Pass Phrase Dialog you can decrypt the Key file  in the following way.

PLEASE KEEP A COPY OF ORIGINAL KEY FILE

cp www.example.com.key www.example.com.key.BAK
openssl rsa -in www.example.com.key -out www.example.com.key

Now start apache server ( httpd service ) and this time  you will not get the Pass Phrase Dialog

How to install Zend frame work on a Linux and test it

Note :  This guide is for Admins only , who  is going to install Zend for the first time

Here I simply describe about how to install Zend framework and create a sample project

My server is running on Fedora 9, PHP5

Step 1:

Download the Zend framework (MINIMAL PACKAGE).  I have downloaded http://downloads.zend.com/framework/1.10.0/ZendFramework-1.10.0-minimal.tar.gz

Step2:  Extract the package

Step3:  Create Sample Project using Zend

Go to the any web directory say, /var/www/html/test

Now call the zf.sh file in the bin folder of zend framework to create new project

In my case I extracted the zend framework in /var/ww/html/zend-framework

So I called the zf.sh file as follows

/var/www/html/zend-framework/bin/zf.sh create project zendtest

Now a project called called “ zendtest “  has been created in the current directory. This project will have four Sub folders.

Now we need to include the Libraries in the zend framework in our new project. To do that, just copy the folder called Zend from the library folder of our zend framework.  (in my case I copied /var/ww/html/zend-framework/library/Zend ).

That’s all, we have created a sample  project in Zend framework. We can test it using browsing the Public folder in the new project

http://localhost/ test/zendtest/public/


Fatal error: Call to undefined function wp_list_addonn() in /home/sites/customers/aneesh/systemadmin/blog/wp-content/themes/Grante/sidebar.php on line 106