Its not a very good idea to copy and paste Mysql data that way, use mysqldump command instead mysqldump -u [username] -p [database name] > output.sql there are options to select which database to output. when you have the sql file just execute it in the mysql console to import it to your target.
its also not a good idea to make /var/www 777 while it does not matter if you are working in single user PC but its better to follow the best practices. There is a group that have all the access the /var/www folder. Add your user to that group. or you can use userdir mod using that you can keep all your code in your home folder, you have to edit your apache config file for that, but its very useful ;) -------------- Mahmood Arena Mobile, Bangladesh -- ubuntu-bd mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bd
