mirror of
https://github.com/myronblair/parkerslingshotrentals
synced 2026-06-30 17:50:31 -05:00
Fix deployment target — site runs at parkerslingshot.epictravelexpeditions.com
- All files were being deployed to parkerslingshotrentals.com which has no active domain; actual live URL is parkerslingshot.epictravelexpeditions.com - SITE_URL constant added to db.php - DB credentials updated to epic_parkersling database - CORS origin and email links use SITE_URL constant - Schema (bookings, blocked_dates, admin_tokens) created in epic_parkersling DB - URL token admin auth works at new location; login: admin / Parker2026! Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+2
-2
@@ -2,7 +2,7 @@
|
||||
require_once __DIR__ . '/db.php';
|
||||
|
||||
header('Content-Type: application/json');
|
||||
header('Access-Control-Allow-Origin: https://parkerslingshotrentals.com');
|
||||
header('Access-Control-Allow-Origin: ' . SITE_URL . '');
|
||||
header('Access-Control-Allow-Methods: POST, OPTIONS');
|
||||
header('Access-Control-Allow-Headers: Content-Type');
|
||||
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { http_response_code(204); exit; }
|
||||
@@ -111,7 +111,7 @@ $confirmHtml = "<div style='max-width:600px;margin:0 auto;font-family:Arial,sans
|
||||
<div style='margin:20px 0;padding:16px;background:#fff7ed;border:1px solid #fed7aa;border-radius:10px;text-align:center'>
|
||||
<p style='margin:0 0 10px;font-size:14px;font-weight:700;color:#111'>Next Step: Sign Your Rental Agreement</p>
|
||||
<p style='margin:0 0 14px;font-size:13px;color:#6b7280'>Once your booking is confirmed you'll sign our digital waiver online — no printer needed. Your link:</p>
|
||||
<a href='https://parkerslingshotrentals.com/waiver.php?ref={$ref}' style='display:inline-block;background:#f97316;color:#fff;text-decoration:none;padding:10px 24px;border-radius:6px;font-weight:700;font-size:14px'>Sign Rental Agreement →</a>
|
||||
<a href='' . SITE_URL . '/waiver.php?ref={$ref}' style='display:inline-block;background:#f97316;color:#fff;text-decoration:none;padding:10px 24px;border-radius:6px;font-weight:700;font-size:14px'>Sign Rental Agreement →</a>
|
||||
</div>
|
||||
<p style='color:#374151'>Questions? Call or text <strong>(817) 555-0199</strong> or reply to this email.</p>
|
||||
<p style='color:#374151'>Ride on,<br><strong>The Parker County Slingshot Team</strong></p>
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
<?php
|
||||
define('SITE_URL', 'https://parkerslingshot.epictravelexpeditions.com');
|
||||
|
||||
define('PARKER_DB_HOST', 'localhost');
|
||||
define('PARKER_DB_NAME', 'parker_db');
|
||||
define('PARKER_DB_USER', 'parker_user');
|
||||
define('PARKER_DB_PASS', 'Pk4rk3r_2026!Tx');
|
||||
define('PARKER_DB_NAME', 'epic_parkersling');
|
||||
define('PARKER_DB_USER', 'epic_parkersling');
|
||||
define('PARKER_DB_PASS', 'Joker1974!!!');
|
||||
|
||||
define('ADMIN_USER', 'admin');
|
||||
define('ADMIN_PASS', '$2y$10$ynnk3RfarOD7VIJizC30kuXqu6tQ3gotNrlp5y33afh5fPOgnAMU6'); // Parker2026!
|
||||
|
||||
Reference in New Issue
Block a user