Problem:     JInstaller: :Install: File does not exist ./tmp/install_4ef3ba8237960/template_name/js  during the installation of your extensions specially Template this a common problem of a Joomla 1.7  Developers like the below screenshot.

Solution:  The solution of this problem is missing Blank HTML file among  your folder (index.html) copy and paste the index.html file from any Joomla template or type the below code and named index.html

<!DOCTYPE html><title></title>

And now you see all your template is installed successfully BOOM :)

When I started first Magento I can not install it locally,I just work on live server.But it’s so painful for me.I got a lot of installation tutorials on online but I don’t get any result.At last I find out it and share it for all who are the beginner and fall down problem to install Magento on local server.It’s not so hard for PHP programmers who have at least little knowledge of php.ini file of server.At first I suggest you to use Xampp it’s easy for beginner.So let’s start :

1. I use Xampp for this tutorial.Find the file from Xampp xampp/php/php.ini

2. Then open this file php.ini and change the change like below :

i)  First Download the latest version of Xampp.

ii)  Find ;extension=php_curl.dll and change it to extension=php_curl.dll (Just remove[;] commentof PHP)

ii) Find memory_limit = 32M and change it to memory_limit = 128M or more . I use  512M. 

iii) Find max_execution_time = 60 and change it to max_execution_time = 18000 or more . I use  18000.

iv) Find max_input_time = 60 and change it to max_input_time = -1 . 

After these changes save the file and restart your local Apache server.This is the pre-installation procedure to install Magento.

Problem : Few month ago I fall a great problem of wodpress that 28px top-spacing in html body.I can not solved it by CSS and last I find a solve from WordPress forum,I hope it’s very important to know of WordPress developer how to solve it.The problem is seen like the screenshot :

Solution : This not a problem of WordPress if you don’t add the admin panel into the function file of wordpress you face this problem after logout from the admin panel you don’t show this extra space.Have a solution if you don’t show the admin panel after login add the below code into function.php file :

function my_function_admin_bar(){ return false; }
add_filter( 'show_admin_bar' , 'my_function_admin_bar');

Sometimes we fall a problem how to change virtuemart default currency selector of Joomla.It’s so easy just follow the below instruction :

Login to Joomla Administrator Panel > Components > Virtumart > Store > edit store > Select your country and State..  and that’s all it needed..

it seems that the when you install virtumart it sets a default country and this overrides that default to your country and currency.. So easy :D

There are two ways to remove Powered by Kunena Link from footer:

1. For new version

2. For old version.

1. For new version :
Find the below code in the kunena.php file in components/com_kunena/

// Credits
echo ' ' . CKunenaLink::GetTeamCreditsLink ( $catid, JText::_('COM_KUNENA_POWEREDBY') ) . ' ' . CKunenaLink::GetCreditsLink ();
if ($this->params->get('templatebyText') !=''):
echo ' :: params->get('templatebyLink').'" rel="follow">' . $this->params->get('templatebyText') .' '. $this->params->get('templatebyName') ? $this->params->get('templatebyName') : '' .'';
endif;
echo '';

and change it to the code like below

// Credits

// display footer

 

2. For old version:

Find the code in the kunena.php file in components/com_kunena/  like below :

echo '<div class="fb_credits"> ' . CKunenaLink:: GetTeamCreditsLink($catid, _KUNENA_POWEREDBY) . ' ' . CKunenaLink:: GetCreditsLink();

 

and change it to the code like below

echo '<div class="fb_credits"> ';