Run Command Shortcuts for Windows..

Web Hosting, Web Hosting Tutorials No Comments »

These are some quick and easy steps that you can use while you use the run prompt or command prompt. This you can use as a shortcut rather than using mmc control.

Accessibility Controls: access.cpl

Add Hardware Wizard: hdwwiz.cpl

Add/Remove Programs: appwiz.cpl

Administrative Tools: control admintools

Automatic Updates: wuaucpl.cpl

Bluetooth Transfer Wizard: fsquirt

Calculator: calc

Certificate Manager: certmgr.msc

Character Map: charmap

Check Disk Utility: chkdsk

Clipboard Viewer: clipbrd

Command Prompt: cmd

Component Services: dcomcnfg

Computer Management: compmgmt.msc

Date and Time Properties: timedate.cpl

DDE Shares: ddeshare

Device Manager: devmgmt.msc

Direct X Control Panel (If Installed)*: directx.cpl

Direct X Troubleshooter: dxdiag

Disk Cleanup Utility: cleanmgr

Disk Defragment: dfrg.msc

Disk Management: diskmgmt.msc

Disk Partition Manager: diskpart

Display Properties: control desktop

Display Properties: desk.cpl

Display Properties (w/Appearance Tab Preselected): control color

Dr. Watson System Troubleshooting Utility: drwtsn32

Driver Verifier Utility: verifier

Event Viewer: eventvwr.msc

File Signature Verification Tool: sigverif

Findfast: findfast.cpl

Folders Properties: control folders

Fonts: control fonts

Fonts Folder: fonts

Free Cell Card Game: freecell

Game Controllers: joy.cpl

Group Policy Editor (XP Prof): gpedit.msc

Hearts Card Game: mshearts

Iexpress Wizard: iexpress

Indexing Service: ciadv.msc

Internet Properties: inetcpl.cpl

IP Configuration (Display Connection Configuration): ipconfig /all

IP Configuration (Display DNS Cache Contents): ipconfig /displaydns

IP Configuration (Delete DNS Cache Contents): ipconfig /flushdns

IP Configuration (Release All Connections): ipconfig /release

IP Configuration (Renew All Connections): ipconfig /renew

IP Configuration (Refreshes DHCP & Re-Registers DNS): ipconfig /registerdns

IP Configuration (Display DHCP Class ID): ipconfig /showclassid

IP Configuration (Modifies DHCP Class ID): ipconfig /setclassid

Java Control Panel (If Installed): jpicpl32.cpl

Java Control Panel (If Installed): javaws

Keyboard Properties: control keyboard

Local Security Settings: secpol.msc

Local Users and Groups: lusrmgr.msc

Logs You Out Of Windows: logoff

Microsoft Chat: winchat

Minesweeper Game: winmine

Mouse Properties: control mouse

Mouse Properties: main.cpl

Network Connections: control netconnections

Network Connections: ncpa.cpl

Network Setup Wizard: netsetup.cpl

Notepad: notepad

Nview Desktop Manager (If Installed): nvtuicpl.cpl

Object Packager: packager

ODBC Data Source Administrator: odbccp32.cpl

On Screen Keyboard: osk

Opens AC3 Filter (If Installed): ac3filter.cpl

Password Properties: password.cpl

Performance Monitor: perfmon.msc

Performance Monitor: perfmon

Phone and Modem Options: telephon.cpl

Power Configuration: powercfg.cpl

Printers and Faxes: control printers

Printers Folder: printers

Private Character Editor: eudcedit

Quicktime (If Installed): QuickTime.cpl

Regional Settings: intl.cpl

Registry Editor: regedit

Registry Editor: regedit32

Remote Desktop: mstsc

Removable Storage: ntmsmgr.msc

Removable Storage Operator Requests: ntmsoprq.msc

Resultant Set of Policy (XP Prof): rsop.msc

Scanners and Cameras: sticpl.cpl

Scheduled Tasks: control schedtasks

Security Center: wscui.cpl

Services: services.msc

Shared Folders: fsmgmt.msc

Shuts Down Windows: shutdown

Sounds and Audio: mmsys.cpl

Spider Solitare Card Game: spider

SQL Client Configuration: cliconfg

System Configuration Editor: sysedit

System Configuration Utility: msconfig

System File Checker Utility (Scan Immediately): sfc /scannow

System File Checker Utility (Scan Once At Next Boot): sfc /scanonce

System File Checker Utility (Scan On Every Boot): sfc /scanboot

System File Checker Utility (Return to Default Setting): sfc /revert

System File Checker Utility (Purge File Cache): sfc /purgecache

System File Checker Utility (Set Cache Size to size x): sfc /cachesize=x

System Properties: sysdm.cpl

Task Manager: taskmgr

Telnet Client: telnet

User Account Management: nusrmgr.cpl

Utility Manager: utilman

Windows Firewall: firewall.cpl

Windows Magnifier: magnify

Windows Management Infrastructure: wmimgmt.msc

Windows System Security Tool: syskey

Windows Update Launches: wupdmgr

Windows XP Tour Wizard: tourstart

Ways to repair a corrupt MySQL Table..

Cpanel Hosting, Web Hosting Tutorials No Comments »

Different ways to repair a corrupt MySQL table :=>

1] Check the permission and ownership of database i.e. it should be same below

drwx—— 2 mysql mysql cpanelusername_dbname.

2] If the permissions are correct but some error occurs then it seems that your database table may be corrupts then there are following way to repair the DB

a) Go to whm >>SQL Services >> Repair a Database >> select database name and click Repair Database.

b) Go to cpanel >> mysql section MySQL Account Maintenance >> search database then click on Repair.

3] You can get it repaired it through shell when mysqld server is running

i) login in mysql to that particular user by using following command

mysql>mysql –u databaseusername –p databasename

ii) select particular database

mysql> use databasename;

iii) Check whether database table is corrupted or not. If following command output shows null value then it should be corrupt otherwise it is fine

mysql>show table status like ‘table name’\G; Or
mysql>check table tablename ;

iv)If it is corrupts then use the following command to repair that particular database table.

mysql>repair table tablename;

4] Get it repaired through shell when mysqld server is not running

Repairing MyISAM mySQL Tables/Databases:

# cd /var/lib/mysql/DBNAME

# myisamchk tablename.MYI

Repairing ISAM mySQL Tables/Databases:

# cd /var/lib/mysql/DBNAME
isamchk tablename.MYI
where

-c –> check database is corrupted or not
-r –> recorver
-o –> optimise the database

How to split a single large file into several smaller files and back to the large file on Linux server.

Web Hosting Tutorials No Comments »

To split large file into several smaller files, you can use split command in linux. Just follow the steps below and you will be able to split large file into smaller files.

$ split –bytes=1m /path/to/large/file /path/to/output/file/prefix
You can change the output file size by changing the –bytes=1m to your preference. You can use b, k, or m. b represent bytes, k represent kilobytes, m represent megabytes.

To restore the original file, you can use cat command.
To join all the smaller file to restore the original file type:-

$ cat prefix* > newfilename

Proxy server

Web Hosting Tutorials 2 Comments »

A proxy server Share one internet connection with ALL the computers on your local network or it is a computer that offers a computer network service to allow clients to make indirect network connections to other network services. So basic work is like Proxy (proxy server) is a server that acts as mediator between the client (the computer of a user) and server (the computer on the other ends of network connection on which the information requested by the user appears for example web server site.) When clients request data from an Internet resource,traffic goes from your web browser/application first through the proxy before it reaches the requested sources and back through the proxy then the proxy will transmit the data to you.

Proxy server that sits between a client application, such as a Web browser, and a real server. It intercepts all requests to the real server to see if it can fulfill the requests itself. If not, it forwards the request to the real server.

Do not confuse a proxy server with a NAT (Network Address Translation). Although they appear to be very similar, a proxy server actually does the work of connecting to, responding to, and receiving traffic from the Internet. In other words, it acts on behalf of the client computer. A NAT, on the other hand, merely changes the origination address of traffic coming through it and passes it to the Internet. The computer behind the NAT,not the NAT itself, does the work. The NAT is intended to be transparent to the whole process.
For those who understand the OSI (Open System Interconnection) model of networking,the technical difference between a proxy and a NAT is that the proxy server works on the transport layer (layer 4), or higher of the OSI model, whereas a NAT works on the network layer (layer 3).
How Proxy Servers Work :

1. When a computer on the intranet makes a request out to the Internet-such as to retrieve a Web page from a Web server-the internal computer actually contacts the proxy server, which in turn contacts the Internet server. The Internet server sends the Web page to the proxy server, which then forwards the page to the computer on the intranet.

2. Proxy servers log all traffic between the Internet and the intranet. For example, a Telnet proxy server could track every single keystroke hit in every Telnet session on the intranet-and could also track how the external server on the Internet reacts to those keystrokes. Proxy servers can log every IP address, date and time of access, URL, number of bytes downloaded, and so on. This information can be used to analyze any attacks launched against the network. It can also help intranet administrators build better access and services for employees.

3. Some proxy servers must work with special proxy clients. A more popular approach is to use off-the-shelf clients such as Netscape with proxy servers. When such an off-the-shelf package is used, it must be specially configured to work with proxy servers from a configuration menu. Then the intranet employee uses the client software as usual. The client software knows to go out to a proxy server to get the data, instead of to the Internet.

4. Proxy servers can do more than relay requests back and forth between an intranet and the Internet. They can also implement security schemes. For example, an FTP proxy server could be set up to allow files to be sent from the Internet to a computer on the intranet,but to block files from being sent from the corporate network out to the Internet-or vice versa. In this way, intranet administrators can block anyone outside the corporation from downloading vital corporate data. Or they can stop intranet users from downloading files which may contain viruses.

5. Proxy servers can also be used to speed up the performance of some Internet services by caching data-keeping copies of the requested data. For example, a Web proxy server could cache many Web pages, so that whenever someone from the intranet wanted to get one of those Web pages, they could get it directly from the proxy server across high-speed intranet lines,instead of having to go out across the Internet and get the page at a lower speed from Internet lines.

The different types of Proxy Servers :

There are many different types of Proxy Servers out there. Depending on the purpose you can get Proxy Servers to route any of these common protocols, and many more ;
1)FTP Proxy Server:

Relays and caches FTP Traffic.

2)HTTP Proxy Server:

A one way request to retrieve Web Pages.

3)Socks Proxy Server:

A newer protocol to allow relaying of far more different types of data, whether TCP or UDP.

4)NAT Proxy Server:

This one works a little different, it allows the redirection of all packets without a Program having to support a Proxy Server.

5)SSL Proxy Server:

An extension was created to the HTTP Proxy Server which allows relaying of TCP data similar to a Socks Proxy Server. This one done mainly to allow encryption of Web Page
requests.

Furthermore, a Proxy Server can be split into another two Categories:

1)Anonymous:

An Anonymous Proxy Server blocks the remote Computer from knowing the identity of the
Computer using the Proxy Server to make requests.

2)Transparent:

A Transparent Proxy Server tells the remote Computer the IP Address of your Computer.
This provides no privacy.

Anonymous Proxy Servers can further be broken down into two more categories, Elite and Disguised. An Elite Proxy Server is not identifiable to the remote computer as a Proxy in any way. A Disguised Proxy Server gives the remote computer enough information to let it know that it is a Proxy, however it still does not give away the IP of the Computer it is relaying information for.

Popular proxy software:

Squid Web Proxy Cache (For OS: Linux)-

Has a nice set of options which make it one of the largest used Linux Proxy Servers.

Wingate Proxy Server (For OS: Windows)-

WinGate is a multi-protocol proxy server and NAT solution that can be used to redirect any kind of traffic on a Microsoft Windows host. It also provides firewall, VPN and mail server functionality. Its WWW proxy supports integrated windows authentication, intercepting proxy, and multi-host reverse-proxying.

Outlook Error Number: 0×800CCC67

Web Hosting Tutorials No Comments »

If you are facing an error while sending mails through outlook as:

An unknown error has occurred. Account: ‘me@mydomain.com’ (‘me@mydomain.com), Server: ‘mail.mydomain.com’, Protocol: SMTP, Server Response: ‘421 Too many concurrent SMTP connections; please try again later.’, Port: 25, Secure(SSL): No, Server Error: 421, Error Number: 0×800CCC67

Solution :
You will have to check for the settings in your outlook .
Click the check box next to “My outgoing server (SMTP) requires authentication”.
Also confirm that “Use same settings as my incoming mail server” is selected.

Sites pictures are boxed Xs (can’t see the images on the site)

Cpanel Hosting, Web Hosting, Web Hosting Tutorials No Comments »

Just comment the rule for :

RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ http://www.domain.com [R,NC] in your .htaccess.   Images will start working.

Jailshell

Cpanel Hosting, Web Hosting, Web Hosting Tutorials No Comments »

What is jailshell?

Jailshell is a very limited shell that allows clients to logon to your server via SSH. It limits them to their home directories, keeping the rest of your files on your server from being viewed.

How to enable jailshell from WHM?

You can enable jailshell as the default shell for new and modified accounts by going to Tweak Settings under Server Setup on the WHM main page. Scroll down to “System” and check the box next to ” Use jailshell as the default shell for all new accounts and modified accounts”.

“554 We do not accept unauthenticated email from hosts without reverse DNS”

Cpanel Hosting, Web Hosting Tutorials 2 Comments »

The error message means what it says – the email is arriving from a machine that does not have a properly configured reverse DNS (PTR record) set up.

How to disable webmail interface for single account?

Web Hosting, Web Hosting Tutorials No Comments »

If you want to disable ‘Horde’ user for eg: ‘user_1′

vi /var/cpanel/users/user_1

Then add the following lines ::

skiphorde = 1
skipneomail = 1

(Here ‘1′ is for disable and ‘0′ is for enable)

Then restart your cpanel service. Thats it .

server response ‘250 HELP’ Port; 25, Secure (SSL) Yes, Server Error 250, error number 0×800CCC7D.’

Cpanel Hosting, Web Hosting, Web Hosting Tutorials 2 Comments »

This problem happens because your version of Outlook Express is set up to use Secure Socket Layer (SSL), which the domain does not use.
To fix this problem, open Outlook Express, and click:
- Tools
- Accounts
- Then click on your mail account connection and click Properties
- Then click Advanced
- On this screen remove the checks from the boxes This server requires a secure connection for both Outgoing mail (SMTP) and Incoming mail (POP3).


WordPress Theme & Icons by N.Design Studio
Entries RSS Comments RSS Log in