mirror of
https://github.com/myronblair/epic-download
synced 2026-06-30 17:51:00 -05:00
auto-commit for f4dba201-72ef-41ec-b94e-448bb2e2961d
This commit is contained in:
@@ -132,3 +132,4 @@ credentials.json
|
|||||||
*.pem
|
*.pem
|
||||||
*.key
|
*.key
|
||||||
.credentials
|
.credentials
|
||||||
|
frontend/public/epic-travel-complete.zip
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Epic Travel & Expeditions - Complete Package Download
|
||||||
|
*
|
||||||
|
* HOW TO USE:
|
||||||
|
* 1. Upload this file to your server (anywhere accessible)
|
||||||
|
* 2. Visit: https://yourdomain.com/download-package.php
|
||||||
|
* 3. File will download automatically
|
||||||
|
*
|
||||||
|
* No website or API needs to be running - this works standalone!
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Path to the zip file
|
||||||
|
$zipFile = __DIR__ . '/epic-travel-complete.zip';
|
||||||
|
|
||||||
|
// Check if file exists
|
||||||
|
if (!file_exists($zipFile)) {
|
||||||
|
die('Error: Package file not found. Please ensure epic-travel-complete.zip is in the same directory as this script.');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get file info
|
||||||
|
$fileName = basename($zipFile);
|
||||||
|
$fileSize = filesize($zipFile);
|
||||||
|
|
||||||
|
// Set headers for download
|
||||||
|
header('Content-Type: application/zip');
|
||||||
|
header('Content-Disposition: attachment; filename="' . $fileName . '"');
|
||||||
|
header('Content-Length: ' . $fileSize);
|
||||||
|
header('Cache-Control: no-cache, must-revalidate');
|
||||||
|
header('Pragma: public');
|
||||||
|
header('Expires: 0');
|
||||||
|
|
||||||
|
// Clear output buffer
|
||||||
|
if (ob_get_level()) {
|
||||||
|
ob_end_clean();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read and output file
|
||||||
|
readfile($zipFile);
|
||||||
|
exit;
|
||||||
|
?>
|
||||||
+195
@@ -0,0 +1,195 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Download Epic Travel & Expeditions - Complete Package</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background: white;
|
||||||
|
border-radius: 16px;
|
||||||
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||||||
|
max-width: 600px;
|
||||||
|
width: 100%;
|
||||||
|
padding: 40px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
background: linear-gradient(135deg, #0891b2, #0e7490);
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 auto 20px;
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #0891b2;
|
||||||
|
font-size: 28px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
color: #64748b;
|
||||||
|
font-size: 16px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box {
|
||||||
|
background: #f0f9ff;
|
||||||
|
border: 2px solid #0891b2;
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 20px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box h3 {
|
||||||
|
color: #0891b2;
|
||||||
|
font-size: 18px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box li {
|
||||||
|
padding: 8px 0;
|
||||||
|
color: #334155;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box li:before {
|
||||||
|
content: "✓";
|
||||||
|
color: #0891b2;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btn {
|
||||||
|
background: linear-gradient(135deg, #0891b2, #0e7490);
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
padding: 16px 40px;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 600;
|
||||||
|
border-radius: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
|
box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btn:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btn:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.file-info {
|
||||||
|
margin-top: 20px;
|
||||||
|
padding: 15px;
|
||||||
|
background: #f8fafc;
|
||||||
|
border-radius: 8px;
|
||||||
|
color: #64748b;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.file-info strong {
|
||||||
|
color: #334155;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
margin-top: 30px;
|
||||||
|
padding-top: 20px;
|
||||||
|
border-top: 1px solid #e2e8f0;
|
||||||
|
color: #94a3b8;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact {
|
||||||
|
margin-top: 15px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact a {
|
||||||
|
color: #0891b2;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="logo">🌍</div>
|
||||||
|
<h1>Epic Travel & Expeditions</h1>
|
||||||
|
<p class="subtitle">Complete Application Package</p>
|
||||||
|
|
||||||
|
<div class="info-box">
|
||||||
|
<h3>📦 Package Includes:</h3>
|
||||||
|
<ul>
|
||||||
|
<li>React Frontend (Production Build)</li>
|
||||||
|
<li>Python Backend (FastAPI + MongoDB)</li>
|
||||||
|
<li>PHP Backend (MySQL - cPanel Ready)</li>
|
||||||
|
<li>Complete Documentation</li>
|
||||||
|
<li>Database Schemas & Sample Data</li>
|
||||||
|
<li>Deployment Packages (Both Versions)</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="download-package.php" class="download-btn">
|
||||||
|
⬇️ Download Complete Package
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="file-info">
|
||||||
|
<strong>File Size:</strong> 102 MB<br>
|
||||||
|
<strong>Format:</strong> ZIP Archive<br>
|
||||||
|
<strong>Version:</strong> 1.0.0
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
<strong>What's Next?</strong><br>
|
||||||
|
Extract the package and read README.md for installation instructions.<br>
|
||||||
|
Choose between PHP/cPanel (FTP) or Python/Cloud deployment.
|
||||||
|
|
||||||
|
<div class="contact">
|
||||||
|
<strong>Support:</strong><br>
|
||||||
|
📧 <a href="mailto:advisor@epictravelexpeditions.com">advisor@epictravelexpeditions.com</a><br>
|
||||||
|
📞 +1 (817) 266-2022<br>
|
||||||
|
📍 Weatherford, Texas 76088
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Epic Travel & Expeditions - Complete Package Download
|
||||||
|
*
|
||||||
|
* HOW TO USE:
|
||||||
|
* 1. Upload this file to your server (anywhere accessible)
|
||||||
|
* 2. Visit: https://yourdomain.com/download-package.php
|
||||||
|
* 3. File will download automatically
|
||||||
|
*
|
||||||
|
* No website or API needs to be running - this works standalone!
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Path to the zip file
|
||||||
|
$zipFile = __DIR__ . '/epic-travel-complete.zip';
|
||||||
|
|
||||||
|
// Check if file exists
|
||||||
|
if (!file_exists($zipFile)) {
|
||||||
|
die('Error: Package file not found. Please ensure epic-travel-complete.zip is in the same directory as this script.');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get file info
|
||||||
|
$fileName = basename($zipFile);
|
||||||
|
$fileSize = filesize($zipFile);
|
||||||
|
|
||||||
|
// Set headers for download
|
||||||
|
header('Content-Type: application/zip');
|
||||||
|
header('Content-Disposition: attachment; filename="' . $fileName . '"');
|
||||||
|
header('Content-Length: ' . $fileSize);
|
||||||
|
header('Cache-Control: no-cache, must-revalidate');
|
||||||
|
header('Pragma: public');
|
||||||
|
header('Expires: 0');
|
||||||
|
|
||||||
|
// Clear output buffer
|
||||||
|
if (ob_get_level()) {
|
||||||
|
ob_end_clean();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read and output file
|
||||||
|
readfile($zipFile);
|
||||||
|
exit;
|
||||||
|
?>
|
||||||
@@ -0,0 +1,195 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Download Epic Travel & Expeditions - Complete Package</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background: white;
|
||||||
|
border-radius: 16px;
|
||||||
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||||||
|
max-width: 600px;
|
||||||
|
width: 100%;
|
||||||
|
padding: 40px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
background: linear-gradient(135deg, #0891b2, #0e7490);
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 auto 20px;
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #0891b2;
|
||||||
|
font-size: 28px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
color: #64748b;
|
||||||
|
font-size: 16px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box {
|
||||||
|
background: #f0f9ff;
|
||||||
|
border: 2px solid #0891b2;
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 20px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box h3 {
|
||||||
|
color: #0891b2;
|
||||||
|
font-size: 18px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box li {
|
||||||
|
padding: 8px 0;
|
||||||
|
color: #334155;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-box li:before {
|
||||||
|
content: "✓";
|
||||||
|
color: #0891b2;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btn {
|
||||||
|
background: linear-gradient(135deg, #0891b2, #0e7490);
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
padding: 16px 40px;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 600;
|
||||||
|
border-radius: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
|
box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btn:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btn:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.file-info {
|
||||||
|
margin-top: 20px;
|
||||||
|
padding: 15px;
|
||||||
|
background: #f8fafc;
|
||||||
|
border-radius: 8px;
|
||||||
|
color: #64748b;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.file-info strong {
|
||||||
|
color: #334155;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
margin-top: 30px;
|
||||||
|
padding-top: 20px;
|
||||||
|
border-top: 1px solid #e2e8f0;
|
||||||
|
color: #94a3b8;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact {
|
||||||
|
margin-top: 15px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact a {
|
||||||
|
color: #0891b2;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="logo">🌍</div>
|
||||||
|
<h1>Epic Travel & Expeditions</h1>
|
||||||
|
<p class="subtitle">Complete Application Package</p>
|
||||||
|
|
||||||
|
<div class="info-box">
|
||||||
|
<h3>📦 Package Includes:</h3>
|
||||||
|
<ul>
|
||||||
|
<li>React Frontend (Production Build)</li>
|
||||||
|
<li>Python Backend (FastAPI + MongoDB)</li>
|
||||||
|
<li>PHP Backend (MySQL - cPanel Ready)</li>
|
||||||
|
<li>Complete Documentation</li>
|
||||||
|
<li>Database Schemas & Sample Data</li>
|
||||||
|
<li>Deployment Packages (Both Versions)</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="download-package.php" class="download-btn">
|
||||||
|
⬇️ Download Complete Package
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="file-info">
|
||||||
|
<strong>File Size:</strong> 102 MB<br>
|
||||||
|
<strong>Format:</strong> ZIP Archive<br>
|
||||||
|
<strong>Version:</strong> 1.0.0
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
<strong>What's Next?</strong><br>
|
||||||
|
Extract the package and read README.md for installation instructions.<br>
|
||||||
|
Choose between PHP/cPanel (FTP) or Python/Cloud deployment.
|
||||||
|
|
||||||
|
<div class="contact">
|
||||||
|
<strong>Support:</strong><br>
|
||||||
|
📧 <a href="mailto:advisor@epictravelexpeditions.com">advisor@epictravelexpeditions.com</a><br>
|
||||||
|
📞 +1 (817) 266-2022<br>
|
||||||
|
📍 Weatherford, Texas 76088
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user