In Feburary 2016 23,
Launch Joomla. The interface will pull up several tabs.
Click on the template builder tab. This will drop down four settings groups. Select each setting of choice.
Below each group there will be a build template button. Once the build template button is clicked for whichever group chosen, it will load all settings in the preview link. Located in the preview and download tab.
Click on the live preview button to get a live preview of the template. It will pop up another window with the preview. To make changes, click the adjust settings button. Click build template button. Click live preview to view changes.
Click the select all button on preview and download screen. Copy and then paste the template configuration into the template_config.php file. Save file. Upload to server. This will generate the settings to the website.
In Feburary 2016 23,
Showing posts with label load. Show all posts
Showing posts with label load. Show all posts
Tuesday, 23 February 2016
Sunday, 14 February 2016
How to Change Transfer Files Mode in Total CommanderIn Feburary 2016 14,
In Feburary 2016 14,
Launch Total Commander.
Click on the 'Configuration' menu, and then click 'Options.' This will load the program's options in a new window.
Select the 'FTP' option on the left and check the 'Use passive mode by default' box. Click the 'OK' button to save the settings.
In Feburary 2016 14,
Launch Total Commander.
Click on the 'Configuration' menu, and then click 'Options.' This will load the program's options in a new window.
Select the 'FTP' option on the left and check the 'Use passive mode by default' box. Click the 'OK' button to save the settings.
In Feburary 2016 14,
Tuesday, 2 February 2016
How to Connect VB.Net With MySQLIn Feburary 2016 02,
In Feburary 2016 02,
Click the Windows 'Start' button on your VB.NET developer computer. Click 'All Programs,' then click 'Microsoft .NET Framework.' Click 'Visual Studio' to open the software. Double-click your VB.NET project to load the code.
Type the MySQL library import statement at the top of the page. The library contains the connection functions and properties needed to connect. Type the following code in your VB.NET file:Imports MySql.Data.MySqlClient
Create the connection string. A connection string contains the database, server name and user name and password needed to connect to MySQL. Below is an example of a connection string:Dim ConnectionString As StringConnectionString = 'database=database_name';server=server_name;user id=user;password=pass'Replace each value with your own MySQL information.
Connect to the database. Type the following code to use the connection string to connect to the MySQL server:Dim conn As New MySqlConnectionconn.ConnectionString = ConnectionStringconn.Open()
In Feburary 2016 02,
Click the Windows 'Start' button on your VB.NET developer computer. Click 'All Programs,' then click 'Microsoft .NET Framework.' Click 'Visual Studio' to open the software. Double-click your VB.NET project to load the code.
Type the MySQL library import statement at the top of the page. The library contains the connection functions and properties needed to connect. Type the following code in your VB.NET file:Imports MySql.Data.MySqlClient
Create the connection string. A connection string contains the database, server name and user name and password needed to connect to MySQL. Below is an example of a connection string:Dim ConnectionString As StringConnectionString = 'database=database_name';server=server_name;user id=user;password=pass'Replace each value with your own MySQL information.
Connect to the database. Type the following code to use the connection string to connect to the MySQL server:Dim conn As New MySqlConnectionconn.ConnectionString = ConnectionStringconn.Open()
In Feburary 2016 02,
Subscribe to:
Comments (Atom)