Skip to main content

Posts

Showing posts from October, 2016

Change Landing Page Yii Framework

In certain conditions , we want the first page of our application do directly into actual applications , but we want to explain in detail the application . To do that we can redirect the application to a specific page by changing main.php at the directory config . 'defaultController' = 'controller/action' , Example :     return array ( ...   ' defaultController ' =>home /index , ...   ); Thx

Export and import big data mysql with mysqldump

To export big data on mysql use this command: # mysqldump -u [username] -p [databasename] | gzip > [filename.sql.gz] To import big data on mysql First you must extract compress file  [filename.sql.gz] to [filename.sql] #mysql -u  [username] -p mysql> use [databasename]; mysql> source path/to/ [filename.sql];  If your data is too big, the import process can be used long time, wait until finished. If not you must try from Import process. Thx.