mustafamisir wrote:I mean that for files;
There are some files which comes from database. Like for my website, there is a database called "mysql" which includes the table called "tel_details" which covers all the information. I only put "tel_detay.MYI" or another files, I dont know this.
Huh? If I'm understanding you correctly (MYI is a MyISAM database file) you're trying to move the database files themselves to the server?
If I have that correct, you need to read up on database backups. The correct method is to take a "dump" of your database and then restore it to the database on your host.
You can take a dump using the mysqldump command from the command line.
Code: Select all
mysqldump databasename -u username -p > dumpfilename.sql
That dumps all the SQL code for the database into dumpfilename.sql
You then need to upload that to the other server and login to mysql and issue the command.
Code: Select all
mysql> \. /path/to/dumpfilename.sql
That will spit all the data back out to your other database.
d11
EDIT | You can do this via phpMyAdmin too
