Search This Blog

Monday, March 31, 2014

Administrator Login Username and Password Retrieve ?

Welcome to Designers Dairy blog here i have posted How to find the Joomla website administrator

username and password

Step1:

Go to Phpmyadmin -> Select the Database - the wild side - Select k7lt0_users ( users)


Step2:

Click on  k7lt0_users ( users) -> You can see the username and password of the administrator 

login



Step3:

You can click  and see the given username and password which the password was encrpted


Step4:

So u have to create a new password using below link

 
 http://www.teachmejoomla.net/joomla-mambo-tutorials-and-howtos/general-questions/how-to-change-or-recover-joomla-administrator-password.html





Step5:

Copy the General sql string password ="22bf59bcca5b77263b4021cf469528"

and paste in php myadmin and press GO





Step6:

The  new password will be updated . Now u can go to login panel and access the username with  new

password




 Step 7:

Enjoy Folks
 


 



 

Thursday, March 27, 2014

How to Move a Joomla Site from Live Server to local

Welcome to Designers Dairy blog here i have posted How to Move a Joomla Site from Live Server

to local serve

Step1:

Download the Joomla site from live server with joomla installation

Step2:

After that  Export the database  from PHP MySQL - example (thewildside)


Step3:

Go to the localhost ->  PhpMyAdmin -> Create the new database wildside -> Export the Database

as the zip  file




Step4:


Change the Configuration.php file
  
    public $host = 'localhost';    -   Change the local host  ( as per local server setting)
    public $user = 'root';            -   Change the root  ( as per local server setting)
    public $password =" '';        -    Change the  password  ( as per local server setting)
    public $db = 'wlidside';        -   it remains same as live server  


Step5 :


Now go to the particular file set  and click  site will be open as per  live site url



Step6:

Enjoy folks






 

Tuesday, March 25, 2014

Mobile Drop Down menu using jquery

Welcome to Designers Dairy blog here i have posted how to design the Drop down menu bar in


Mobile

Step1:
 
We have to take backup our project files in virtual machine.

Step2:

<!doctype html>
<html>
<head>
<meta charset="utf-8">


<title>Untitled Document</title>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"> </script>

<script type="text/javascript">

function menu()
{
    $('.show').hide();
   
    $("#list-type").toggle();
   
  
}
$(function()
{
   
        $('li').click(function(e) {  
       
    $('.show').hide();
       
        });
   
       $('.trigger').click(function(e) {
       
        $('.show').hide();
       
           $(this).next(".show").toggle();
       
        });
   
});
</script>

<style type="text/css">
*
{
    margin:0px;
    padding:0px;
}
#menu
{
    background-color:#D3CCCC;
    padding:8px 0px 8px 23px;
    cursor:pointer;
    margin:0px 0px 0px 0px;
}
#list-type
{

    margin-left:23px;
    display:none;
position: relative; float: left; margin-right: 50px;
   
}
#list-type li
{
    display: block;
}
#list-type li  a
{
    font-size:13px;
    color:#666;
    line-height:30px;
    padding:10px 200px 10px 0px;
    border-bottom:solid 1px #ccc;
    text-decoration:none;
   
}
.show li  a
{
    font-size:13px;
    color:#666;
    display:inline-block !important;
    float:left !important;
    padding:0px !important;
    border:none !important;
    text-decoration:none;
   
}

ul li
{
    list-style-type:none;
   
}
.show
{
    display:none; float: left;
    margin-left: 80px;
    margin-top:-30px;
   width:100%;

   
}

</style>

</head>

<body>

<div id="menu" onClick="menu()"> Menu </div>

<div id="list-type">
<ul>
<li> <a href="#"> item1  </a> </li>
<li> <a href="#"> item2  </a> </li>
<li> <a href="#"> item3  </a> </li>

<li class="trigger"> <a href="#" > item4 </a>   </li>

<ul class="show">

<li> <a href="#"> sub-item 3  </a> </li>
<li> <a href="#"> sub-item 4  </a> </li>
</ul>

<li class="trigger"> <a href="#" > item5 </a>   </li>

<ul class="show">

<li> <a href="#"> sub-item 5  </a> </li>
<li> <a href="#"> sub-item 4  </a> </li>
</ul>

<li> <a href="#"> item6  </a> </li>

</ul>

</div>

</body>
</html>


Step3:


Output



Validating to select in sequencial order using angular

    < input type = "checkbox" (change) = "handleSelectTaskItem($event, taskItem)" [checked] = " taskItem . i...