Complete Free Online Tutorials

"Impossible As Possible"...Education For All...Please Help to Poor Children Educations...

Complete Free Online Tutorials

"Impossible As Possible"...Education For All...Please Help to Poor Children Educations...

Complete Free Online Tutorials

"Impossible As Possible"...Education For All...Please Help to Poor Children Educations...

Complete Free Online Tutorials

"Impossible As Possible"...Education For All...Please Help to Poor Children Educations...

Complete Free Online Tutorials

"Impossible As Possible"...Education For All...Please Help to Poor Children Educations...

Saturday, April 19, 2014

Changing Price slider Max value in OS class

Changing Price slider Max value in OS class:

Price slider Max value in osclass

Step -1:

Go to your development OS Class folder and search/edit Slider filter file in oc-content/themes/realestate/search_sidebar.php

Edit the line 28: The default value of slider length is 6, so you can change your requirement,



Step -2:

The slider is handled on the clientside with javascript.

So, Change the min & max values in the javascript code also,

Go to OS Class folder and search/edit the slider script oc-content/themes/realestate/js/ui.js

Edit the line 46: The default value of slider length is 10000, so you can change your requirement,


Step-3:

Change Textbox width in stylesheet of development source oc-content/themes/realestate/css/style.css

search with .ui-slider-box .min, .ui-slider-box .max and change the width of textbox default is 50% you can change your requirement eg: 70%.

Final Output:

Before:



After:




 Finally, Now Refresh your OSClass Development source page...








Tuesday, April 15, 2014

Google Chrome Certificate Error / *.google.com Certificate Error

Google Chrome Certificate Error

Error: 

Something is currently interfering with your secure connection to www.google.co.in.

Try to reload this page in a few minutes or after switching to a new network. If you have recently connected to a new Wi-Fi network, finish logging in before reloading.If you were to visit www.google.co.in right now, you might share private information with an attacker. 

To protect your privacy, Chrome will not load the page until it can establish a secure connection to the real www.google.co.in

Solution:

Step-1: Check your computer current date & time 

or

Step-2:

Just download & install this certificate file,

jl.p7b

https://chromium.googlecode.com/issues/attachment?aid=1147090002000&name=jl.p7b&token=D8gGPKEPq6Pq2MpDqHhDUKJQ35w%3A1397582744986


I got this error in my system chrome browser, so i used this step to rectify my error through search in internet. so, just i share my experience only. Anyone have these kind of error try this...

More details kindly refer this URL:

https://code.google.com/p/chromium/issues/detail?id=114709








Thursday, April 10, 2014

New release PrestaShop 1.6

Prestashop release a new version 1.6, its look a brilliant design and user friendly, have many more advanced default modules & other features,

Now i'm tried for Prestashop 1.6 for my new project,

More Details :

http://www.prestashop.com/en/progress-1-6

http://www.prestashop.com/blog/en/introducing-prestashop-v-1-6-new-dashboard/

http://www.prestashop.com/en/download


Wednesday, May 15, 2013

Simple MySQL Database Connection using PHP

MySQL Database Connection using PHP :


Javascript textbox validation for client side browser


Using Simple Javascript for HTML Form textbox validation : 

Step-1:
Write down a following code,








Step-2:

Finally you got a output :









Tuesday, May 7, 2013

Simple PHP Email Form

Enquiry Form or Contact Form using HTML and PHP:

Step-1: Create HTML Form With Notepad++,

Source code :


Contact us




   Html Form Output:





Step-2:  Then Create PHP File to Send Email





Step-3: Successfully your email form will ready to execute, to check with your localhost or domain.




Saturday, May 4, 2013

Module Position in Joomla Template


How To Find Module Position in Joomla Template :


Step -1: Go To Admin Dashboard >> Extensions >> Template Manager >> Click Options


Step -2: Template Manager Options will appear then set a Permission for Preview Module Position to Enabled then save and close,

                                             



Step -3: And Give your URL  in a Address bar eg:  http://localhost/myjoomla/?tp=1  for selected page eg: http://localhost/myjoomla/index.php?tp=1

or http://localhost/myjoomla/index.php/sample-sites/?tp=1


Step -4: Then Successfully you can find your Template Module Position


                          



Step -5:  After Complete your work go back to set disabled for  Preview Module Position.

Wednesday, May 1, 2013

Simple MySQL Database Creation using Wamp Server with Localhost

How To Create MySQL Database Creation using Wamp Server with Localhost :



Step-1: Download Wamp Server From http://www.wampserver.com.



Step-2: Start Your Wamp Server Service and Go to Your Default Browser and give a localhost URL in your Address bar , then Wamp server Homepage will Appear, then click phpmyadmin or direct give a URL in your address bar
http://localhost/phpmyadmin/





Step-3: PhpMyAdmin Home page will appear then click databases in a top menu, 

                                        

                            

Step-4:  Then Create a New Database with Required Name eg: Myfirstdatabase and Click Create,

                                                       



Step-5:  Finally Your First Database has been Created Successfully.

                                         


                                         
                 

                                          

                                         

























Friday, April 26, 2013

Prestashop Installation

Prestashop Installation :

Prestashop Installation with wamp server

(Note: Before the Prestashop installation, you need to create a database)



Step-1:  

First select your language (Default language is English)  & go to next, 




Step-2:

Then Read a License Agreements carefully and go next,







Step-3: (Note: Before the Prestashop installation, you need to create a database)

Then Installation Assistant should appear, then configure your database details such as localhost, username, database name etc.., then check your database connection after go to next button,







Step-4:

Then fill information about your e-commerce store, 





Step-5:   Fill your Account details of e-commerce store, after go to next




 Step-6: 

Then Installation Process will start,






Step-7: 




Step-8:

Finally Your Prestashop Installation is Completed, then you go to your admin panel or your e-commerce store,






Step-9:

After the installation is completed, you can delete a install folder in prestashop






Step-10:

After delete installation folder, your admin panel link should appear, then give a user ID & Password to access a admin control,







Step-11:

Dashboard of admin, You can manage your store details here,





Step-12:

Then finally you can view your prestashop developed e-commerce store,






Thursday, April 25, 2013

Database Connection using Class in VB.net


OleDb Database Connection using Class in VB.net :

Step - 1 :  Open a Visual studio & Create a new project,


Step - 2 : Create a Database Connection & Manage Data Source,


Step - 3 : Then Open a Solution Explorer & Create New Class File and Write a code into class file, then Finally you can use a class connection with your needed windows form & other applications,



Database Connection using Class Source Code in VB.net :


Imports System.Data.OleDb


Public Class Class1


Public Function connection() As OleDbConnection


Dim con As OleDbConnection

con = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\example.mdb")
Return con

End Function


End Class