Explorar el Código

0172: Install phpMyAdmin on LAMP (Linux Apache MySQL PHP)

i12bretro hace 3 años
padre
commit
3133b25d12
Se han modificado 1 ficheros con 26 adiciones y 14 borrados
  1. 26 14
      0172.html

+ 26 - 14
0172.html

@@ -12,9 +12,11 @@
             });
 
             $('li').each(function(i,e){
-              var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
-              $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
-              $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
+							if(!$(this).hasClass('noCheckbox')){
+								var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
+								$(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
+								$(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
+							}
             });
 
             $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
@@ -23,7 +25,7 @@
               theElement.empty();
               for(l=0;l<lines.length;l++){
                 if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
-									                  theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ lines[l].replace(/"/g, '&quot;') +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
+									                  theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ $.trim(lines[l].replace(/"/g, '&quot;')) +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
 									                } else {
                   theElement.append(lines[l]);
                 }
@@ -33,9 +35,15 @@
             $(document).on('click','input.copy-text',function(){
               theButton = $(this);
 														$('input.copy-text').attr('src','images/clipboard.png');
-							              $('span.copy-animation').removeClass('copy-animation');
+							              $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
               try {
-                $('#'+ theButton.attr('rel')).addClass('copy-animation');
+                if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
+                  $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
+								} else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
+									$('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
+                } else {
+                  $('#'+ theButton.attr('rel')).addClass('copy-animation');
+                }
                 navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
 																theButton.attr('src','images/clipboard_active.png');
 								              } catch(err) {
@@ -57,8 +65,8 @@
             });
 
             if(window.self !== window.top){
-              window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
-            }
+															window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
+							            }
           });
         </script>
         <link href="css/steps.css" rel="stylesheet" type="text/css" />
@@ -71,7 +79,11 @@
           </div>
           <div></div>
           <div id="content">
-          <p>This tutorial assumes a working Apache2, PHP and MySQL/MariaDB environment is already installed</p>
+          <h2>What is phpMyAdmin?</h2>
+
+<blockquote><em>phpMyAdmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. -<a href="https://www.phpmyadmin.net" target="_blank">https://www.phpmyadmin.net</a></em></blockquote>
+
+<p>This tutorial assumes a working Apache2, PHP and MySQL/MariaDB environment is already installed</p>
 
 <ol>
 	<li>Log into the Linux machine</li>
@@ -80,21 +92,21 @@
 	sudo apt update<br />
 	sudo apt upgrade<br />
 	# download latest phpMyAdmin<br />
-	wget&nbsp;https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-english.tar.gz<br />
+	wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-english.tar.gz<br />
 	# create phpmyadmin directory in web root<br />
 	sudo mkdir /var/www/html/phpmyadmin<br />
 	# extract the downloaded phpMyAdmin to the folder created<br />
 	sudo tar xvf phpMyAdmin-latest-english.tar.gz --strip-components=1 -C /var/www/html/phpmyadmin<br />
 	# create a copy of the sample config file<br />
-	<span style="display: none;">&nbsp;</span><span style="display: none;">&nbsp;</span><span style="display: none;">&nbsp;</span><span style="display: none;">&nbsp;</span>sudo cp /var/www/html/phpmyadmin/config.sample.inc.php /var/www/html/phpmyadmin/config.inc.php<br />
-	<span style="display: none;">&nbsp;</span><span style="display: none;">&nbsp;</span># set folder owner<br />
-	<span style="display: none;">&nbsp;</span><span style="display: none;">&nbsp;</span>sudo chown www-data:www-data /var/www/html/phpmyadmin<br />
+	<span style="display: none;"> </span><span style="display: none;"> </span><span style="display: none;"> </span><span style="display: none;"> </span>sudo cp /var/www/html/phpmyadmin/config.sample.inc.php /var/www/html/phpmyadmin/config.inc.php<br />
+	<span style="display: none;"> </span><span style="display: none;"> </span># set folder owner<br />
+	<span style="display: none;"> </span><span style="display: none;"> </span>sudo chown www-data:www-data /var/www/html/phpmyadmin<br />
 	# restart apache service<br />
 	sudo systemctl restart apache2<br />
 	# connect to MySQL and create a user to use with phpMyAdmin<br />
 	sudo su<br />
 	mysql -u root<br />
-	<span style="display: none;">&nbsp;</span>CREATE USER &#39;i12bretro&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;some_very_complex_password&#39;;<br />
+	<span style="display: none;"> </span>CREATE USER &#39;i12bretro&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;some_very_complex_password&#39;;<br />
 	GRANT ALL PRIVILEGES ON * . * TO &#39;i12bretro&#39;@&#39;localhost&#39;;<br />
 	FLUSH PRIVILEGES;</div>
 	</li>