Files
2024-10-25 14:16:28 +02:00

127 lines
5.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Documentation HTML Template</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href='https://fonts.googleapis.com/css?family=Merriweather:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./media/fancybox/jquery.fancybox.css">
<link rel="stylesheet" href="./media/style.css">
<link rel="stylesheet" href="./media/prism.css">
</head>
<body>
<div class="wrapper">
<header>
<div id="top" class="clearfix">
<div class="pull-left">
<h1><a href=""><img src="./media/ps-logo.png" alt="" /> <span>Documentation</span></a></h1>
</div>
</div>
<div id="header-title" class="container" class="clearfix">
<h2 class="lone-header">Manual title for PshowModule</h2>
</div>
</header>
<section>
<div class="container">
<!-- BEGIN MENU -->
<ul class="docs-nav">
<li class="subtitle"><strong>Getting Started</strong></li>
<li><a href="#welcome" class="active">Welcome</a></li>
<li><a href="#benefits">Benefits</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#license">License</a></li>
<li class="separator"></li>
<li class="subtitle"><strong>Customization</strong></li>
<li><a href="#image">Image</a></li>
<li><a href="#code_html">Code HTML</a></li>
<li><a href="#code_css">Code CSS</a></li>
<li><a href="#code_smarty">Code Smarty</a></li>
<li><a href="#code_js">Code JavaScript</a></li>
<li><a href="#code_php">Code PHP</a></li>
<li><a href="#code_all">Cała lista</a></li>
</ul>
<!-- END CONTENT -->
<div class="docs-content">
<p>
For starter you should know what it is SSH:
</p>
<p>
<i>
SSH is a communication protocol, which is used in computer networks TCP / IP. SSH is the successor to the Telnet protocol, is used for terminal connections with remote computers. The distinctive feature of the SSH is to transfer all data in encrypted form and to identify users in many different ways.
</i>
</p>
<p>&nbsp;</p>
<p>
<strong>
You can start importing any file using an SSH connection.
</strong>
</p>
<p>
<strong>
Benefits? Import time is many times smaller. Hour ordinary imports are usually a few minutes of imports carried out by SSH.
</strong>
</p>
<p>&nbsp;</p>
<p>
Below you will find a link to information on how to connect via SSH to your server using Putty:
</p>
<p>
<a href="https://www.siteground.com/tutorials/ssh/putty.htm" target="_blank">
https://www.siteground.com/tutorials/ssh/putty.htm
</a>
</p>
<p>&nbsp;</p>
<p>
When the connection must go to this module directory (/modules/pshowimporter/) and then perform a simple command:
</p>
<p>
php ./direct_import.php 'filename_to_import_without_extension'
</p>
<p>
<small>
You can find specified commands on files list.
</small>
</p>
<!-- END CONTENT -->
</div>
</div>
</section>
<footer>
<p>Copyright &copy; PrestaShow.pl 2014-2016 All rights reserved.</p>
</footer>
</div>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="./media/fancybox/jquery.fancybox.js"></script>
<script src="./media/prism.js"></script>
<script src="./media/layout.js"></script>
<script>
$('.image').fancybox({
openEffect: 'none',
closeEffect: 'none',
padding: 5,
autoSize: true,
autoWidth: true,
autoHeight: true,
fitToView: true
});
</script>
</body>
</html>