Category: Ubuntu
-
Fatal error: Call to a member function addFieldToFilter() on a non-object in magento
Have you upgraded your magento version OR installed any module/extension manually? If you getting this error: “Fatal error: Call to a member function addFieldToFilter() on a non-object ……” after doing any step above then you have to following steps to solve: Step 1: Re-index the all tables. a) To re-index Go to your site admin…
-
Linux: How to use serach command in Linux?
In windows we can easily find the any file in the folder and it doesn’t matter that how many folders inside that folder.. and it is possible by pressing F3 key on the keyboard. But in the linux we have to use command prompt to find such type of searching. In ubuntu we can do…
-
PHP Motion: Captcha code is not working
When you install the phpmotion on your system you will find that captcha code is not showing on registration page. open includes/captcha.php and replace var $font = ‘DoradoHeadline.ttf’; by var $font = ‘./DoradoHeadline.ttf’; Tweet This Post
-
Ubuntu: How to start and stop LAMP server
To view any changes in php.ini file or some LAMP server files we should restart the apache server again. and you can do this by following commands: sudo /etc/init.d/apache2 stop sudo /etc/init.d/apache2 start Above both commands will stop the apache server and start again. But you can do restart apache server by single command only:…
-
Ubuntu: Installing Xdebug on Ubuntu LAMP
We are assuming that you have installed LAMP on your ubuntu operating system. But you are not getting errors in php files when file has any syntax or fatal error. So you see these errors by following below steps: Open you php.ini file by below command: sudo gedit /etc/php5/apache2/php.ini First confirm your php.ini file location…