Category: phpmyadmin
Fatal error: Call to undefined method stdClass::onDisplay() in libraries/joomla/html/editor.php
| October 18, 2011 | Posted by Subikar under cms, joomla, module, php, phpmyadmin |
This kill my whole day so dev who ever have this problem you can do this quick fix from here. open this file in joomla libraries/joomla/html/editor.php find this line // Try to authenticate — only add to array if authentication is successful $resultTest = $plugin->onDisplay($editor); if ($resultTest) $result[] = $resultTest; And replace with this below…
How to manage Big Website with n number of subdomain
| March 15, 2011 | Posted by Subikar under php, phpmyadmin |
Hi all , After long time I came up with some new ideas. How to manage big website without using single database. I am sure you all know if a single database is using your big website with a lot of application someday it will crash and obviously it is very hard to manage everything.…
Import and export big db in linux
| September 14, 2009 | Posted by Subikar under linux, phpmyadmin |
Here is my short blog post lets share with my friends who are learning linux and want to import or export data to phpmyadmin using linux. So here is the code for that. Data Export in linux mysqldump -u dbusername -h dbhost -pdbpassword dbname > dbname.sql Data Import in linux mysql -u dbusername -h dbhost…