Estimados,
He conseguido que ejecute el .PRG desde el HTML
Así:
Code: Select all
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Adhemar Cuéllar R.">
<meta name="copyright" content="AcrSoft © System">
<link rel="shortcut icon" href="http://190.171.250.70/MovieCenter/images/moviecenter.ico">
<title>MovieCente - Séptimo arte</title>
<meta name="generator" content="Jekyll v3.8.5">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js"></script>
</head>
<body class="py-4">
<style>
.myhead {
padding: 5px;
background-color: white;
margin-bottom: 2px;
}
.myhead>span {
font-family: times, Times New Roman, times-roman, georgia, serif;
font-size: 28px;
line-height: 40px;
letter-spacing: -1px;
color: #444;
}
nav {
width: 100%;
height: 20px;
background: rgb(187, 175, 175);
color: black;
display: flex;
align-items: center;
}
nav a {
font-family: times, Times New Roman, times-roman, georgia, serif;
font-size: 12px;
color: rgb(35, 8, 185);
text-decoration: none;
display: inline-block;
padding: 0 15px;
}
</style>
<div class="container">
<div class="myhead">
<a href="https://adhemarcr.github.io/acrsoft/" target="_blank"><img
src="http://190.171.250.70/MovieCenter/images/poster.jpg" width="110" height="110"></a>
<span>MovieCenter - Séptimo arte</span>
<a href="https://adhemarcr.github.io/acrsoft/" target="_blank"><img
src="https://acrsofts.github.io/moviecenter/images/lAcrSoft.jpg" width="120" height="65"></a><br><br>
<a href="index.html"target="_blank"><img
src="http://190.171.250.70/MovieCenter/images/todas.jpg" width="80" height="40"></a>
<a href="AyS.html" target="_blank"><img
src="https://acrsofts.github.io/moviecenter/images/AyS.jpg" width="80" height="40"></a><br>
<nav>
<a href=index.html> Todas</a>
<a href=AyS.html>Acción y Suspenso</a>
</nav>
</div>
<div class="row">
<div class="col-sm-12">
<table id="muestra" class="table table-striped table-bordered" style="width:100%">
<thead>
<tr>
<th>NOMBRE</th>
<th>DURACION</th>
<th>REPARTO</th>
</tr>
</thead>
</table>
</div>
<script>
$(document).ready(function () {
$('#muestra').DataTable({
"ajax": "todas.prg",
"scrollCollapse": true,
"paging": true,
"columns": [{
"data": "nombre"
},
{
"data": "duracion"
},
{
"data": "reparto"
}
]
});
});
</script>
<footer id="footer" class="row align-items-end">
<a href="https://adhemarcr.github.io/acrsoft/" target="_blank"><img
src="https://acrsofts.github.io/moviecenter/images/lAcrSoft.jpg" width="120" height="65"></a>
<h7>By Adhemar Cuéllar R. <br> AcrSoft System ©2020 </h7>
<table border="0" align="right" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" align="right">
<h9> Powered by ModHarbour</h9>
<a href="https://winhotel.space/modharbour/modharbouronline.prg" target="_blank"><img
src="https://acrsofts.github.io/moviecenter/images/hfw.jpg" width="70" height="70" class="opacity"></a>
</td>
</tr>
</table>
</footer>
</body>
</html>
Funciona en el LocalHost y con IP pública
http://190.171.250.70/MovieCenter/
No he logrado hacerlo funcionar con mi repositorio de Github
https://acrsofts.github.io/moviecenter/ no encuentra la BASE
Mi repositorio es:
https://github.com/acrsofts/moviecenter
Preguntas:
Cómo se hace para mostrar caractes especiales áéíóúñ (OemToAnsi)?
Cómo se hace para que sea un sitio seguro y funcione con https?
Lo he hecho un poco repetitivo. Todo consejo y ayuda es bienvenida.
Con la extensión Live Server (Go live) funciona. Pero al ejecutar el prg sale que no encuentra la base, el mismo error que genera desde el acrsofts.github.io/moviecenter
Muchas gracias por la ayuda