| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/store.tiacyrusxxx.com/public_html/dev/model_admin/ |
Upload File : |
<?php
include("../config.php");
include("auth.php");
include("model-header.php");
$msgSystem = "";
if (isset($_SESSION['model_id'])) {
$sth = $dbh->prepare("SELECT * FROM `cms_members` WHERE model_id=?");
$sth->execute(array($_SESSION['model_id']));
$userinfo = $sth->fetch(PDO::FETCH_OBJ);
$length_set_check_sql = $dbh->prepare("SELECT * FROM `cms_cvpo_match` WHERE `model_id` = ? AND `cvpo_id` BETWEEN 1 AND 5 AND `active` = 1 AND `price` > 0");
$length_set_check_sql->execute(array($_SESSION['model_id']));
$length_set_check = $length_set_check_sql->rowCount();
$category_set_check_sql = $dbh->prepare("SELECT * FROM `cms_cvpo_match` WHERE `model_id` = ? AND `category_id` > 0 AND `active` = 1 AND `price` > 0");
$category_set_check_sql->execute(array($_SESSION['model_id']));
$category_set_check = $category_set_check_sql->rowCount();
$delivery_set_check_sql = $dbh->prepare("SELECT * FROM `cms_cvpo_match` WHERE `model_id` = ? AND `cvpo_id` >= 9 AND `active` = 1 AND `price` > 0");
$delivery_set_check_sql->execute(array($_SESSION['model_id']));
$delivery_set_check = $delivery_set_check_sql->rowCount();
if (isset($length_set_check) && $length_set_check > 0 && isset($category_set_check) && $category_set_check > 0 && isset($delivery_set_check) && $delivery_set_check > 0) {
} else {
$msgSystem .= msgSystem("You must enter your custom prices and select your categories before a customer will be able to order from you.", "error");
}
} else {
if (isset($_SESSION['email']) && isset($_SESSION['password'])) {
$sth = $dbh->prepare("SELECT * FROM `cms_members` WHERE email=? AND password=?");
$sth->execute(array($_SESSION['email'],$_SESSION['password']));
$userinfo = $sth->fetch(PDO::FETCH_OBJ);
}
}
?>
<div class="row">
<div class="large-12 columns">
<?php
if (isset($msgSystem) && $msgSystem != "") {
echo $msgSystem;
}
?>
<div class="row">
<div class="large-4 columns dash-buttons">
<a href="model-custom-video-pricing.php">
<h4>Custom Video Pricing</h4>
</a>
</div>
<div class="large-4 columns dash-buttons">
<a href="model-enter-custom-video.php">
<h4>Upload Custom Videos</h4>
</a>
</div>
<div class="large-4 columns dash-buttons">
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div style="font-size: 22px; color: grey; margin-bottom: 10px; margin-top: 20px;">Customs Library</div>
<div style="font-weight: bold; margin-bottom: 20px;">You can re-sell completed custom videos, click the red 'RE-SELL' button and simply add a re-sell price. This will add the custom video to your profile page to sell to your fans.</div>
<div>
<?php
$customVideos = 0;
if (isset($customVideos) && $customVideos > 0) {
} else {
echo '<div style="color: red; text-align: center;">The system was unable to find any Custom Videos.</div>';
}
?>
</div>
</div>
</div>
<?php
include("footer.php");