Migrate Subdomains from Ensim to cPanel

Although Ensim has different directory structures  than cPanel however you can manually shift subdomain from Ensim to cPanel following this step for transfer.

*. First login to the ensim server from where you want to shift.
*. Go to subdomain directory for the domain you want to move: as
cd /home/virtual/domain.com/var/subdomain
*. Here you can see all the subdomains for this domain in the directory. Go
into each directory plus the html directory as
cd subdomainxx/html
* Now zip up the files
tar -czvf ../../subdomainname.tar.gz *
do the same procedure for all subdomains
you have to go up 3 levels to find the files due to symbolic
cd ../../..
*. FTP the files to the new server
ftp newserver
mput *.tar.gz
* On new server
Login to the domain’s cpanel account and create all the subdomains
* Go to the directory where the files were ftp uploaded.
cd /home/admin
* copy each file to the proper directory. You need to know the admin
username for the primary domain. If the domain user is bob123 and the
subdirectory (sudomain) is “forum” then you would copy the files like this:
mv forum.tar.gz /home/bob123/www/forum/
* After moving it to specific directory(sudomain) then unzip the files.
cd /home/bob123/www/forum/
tar -zxvf forum.tar.gz
rm forum.tar.gz
* Now change the permission and ownership for all files in that directory as
chown bobs123:bob 123 * -R
You will  finally notice that all subdomain get transfered from ensim to cpanel

Posted in Windows Hosting | Leave a comment

Useful shortcuts- Windows Application

These are the shortcuts for the windows application which you can run from start >> run, hope you find it useful!

Administrative Tools
control admintools

Automatic Updates
wuaucpl.cpl

Accessibility Controls
access.cpl

Add Hardware Wizard
hdwwiz.cpl

Add/Remove Programs
appwiz.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 Magnifiermagnify
magnify

Windows Management Infrastructure
wmimgmt.msc

Windows System Security Tool
syskey

Windows Update Launches
wupdmgr

Windows XP Tour Wizard
tourstart

Wordpad
write

Posted in Windows Hosting | Leave a comment

Mysql Dump Timer-MySQL database

Mysqldump program is used to dump the contents of a MySQL database and allow the transfer of a MySQL database and MySQL tables between different MySQL servers. The SQL statements can be redirected to a file though you should be sure that there is no activity going on while you do. Firewalls will not block the access to the MySQL database,  A small PHP script which has to be copied to the webserver encapsulates and encrypts the access to the MySQL database.

The mysqldump program supports the following options;

-#, –debug=[options] Output debug information to log. Generally ‘d:t:o,filename`. See Appendix C for further details.
-?, –help Display usage information and exit.
-c, –compleat-insert Generate complete insert statements. (Don’t exclude values that conform to the column default.)
-h, –host=[hostname] Connect to hostname.
-d, –no-data Export only schema information. (Exclude data.)
-t, –no-create-info Export only data, exclude table creation information. (The opposite of -d.)
-p, –password=[password] The password to use when connecting to the web server. Note there can be no space between the -p and the password.
-q, –quick Don’t buffer query results, dump directly to STDOUT.
-u, –user=[username] Username for login. mysqldump will assume you wish to use your current login name if this option is excluded from the command line.
-v, –verbose Print verbose information about the various execution stages of mysqldump.
-P, –port=[port] The port to use when connecting to
-V, –version Output mysqldump version information and exit.

It also enable you to pipe the output of mysqldump to the MySQL client program to replicate a database but you should make sure-no updates are taking place while you’re doing this.

EXAMPLE:
mysqladmin create foo
mysqldump mysql | mysql foo

Posted in MYSQL | Leave a comment

Joomla Hosting

Joomla! is widely known a powerful Content Management Systems in open source. It is quite popular CMS which are generally used for both simple websites and  complex corporate applications. Joomla is written in the simple PHP programming language and uses the MySQL database by default, it is  easy to install, simple to manage, and reliable.

Joomla CMS combine together many  parts, which are built to be as modular as possible, allowing you easy extensions and integrations easily like for example of these extensions called- Plugins are background extensions that add features for Joomla with  latest functionality. Similarly The WikiBot, allows the author of Joomla content to use “Wikitags” in Joomla articles which auto-create dynamic hyperlinks to Wikipedia articles when displayed. There are approximately over twenty seven thousands extensions are available  for Joomla  via the Extensions Directory, definitely these feature make Joomla so incredible content management system.

Joomla has lot of useful Plugins, there are wide-rang of extensions freely available like for example the “Components” allow authors to perform tasks to build a community by expanding user features, backup a website, translate content and create search engine friendly URL and using  “Modules” feature you can  perform display a calendar or allow custom code like Google AdSense etc which can be easily inserted within the pedestal of Joomla code.

Micfo.com support  Joomla web hosting, where you can get a high-speed and secure servers, with various extras, and high quality technical support 24×7!as CMS.

Posted in Web Hosting | Leave a comment