File manager - Edit - /home/veronikagstoette/public_html/sp_scripts.tar
Back
aptop.py 0000755 00000002134 15246237042 0006251 0 ustar 00 #!/usr/bin/env python3 # Fetching Apache workers per domain utilizing curl and mod_status # Based on lstop.py by Tsvetan Gerov # aptop.py by Nikolay Ilchev # import requests import re from collections import defaultdict def main(): response = requests.get( 'http://127.0.0.1/whm-server-status', headers={'User-Agent': 'A2 User Agent OPS TEAM/4147 Gecko/20190813'} ) content = response.text response.raise_for_status() content = response.text domain_counts = defaultdict(int) for match in re.finditer(r'<td nowrap>([^<:]+)(?::\d+)?</td><td nowrap>', content): vhost = match.group(1).strip() domain_counts[vhost] += 1 sorted_domains = sorted(domain_counts.items(), key=lambda x: x[1]) print("| {:<70s} | {:>8s} |".format("Domain", "Workers")) print("|" + "-" * 72 + "|" + "-" * 10 + "|") for domain, count in sorted_domains: print("| {:<70} | {:8d} |".format(domain, count)) print("|" + "-" * 72 + "|" + "-" * 10 + "|") print("| {:<70s} | {:>8s} |".format("Domain", "Workers")) if __name__ == '__main__': main() audit.sh 0000755 00000014462 15246237042 0006225 0 ustar 00 #!/bin/bash set -euo pipefail # Pre-migration audit for a cPanel/WHM server: account totals, nameserver # locality, custom reseller nameservers, and accounts on dedicated IPs. for cmd in whmapi1 jq dig; do if ! command -v "$cmd" >/dev/null 2>&1; then echo "Error: required command '$cmd' not found." >&2 exit 1 fi done if [ "$(id -u)" -ne 0 ]; then echo "Error: this script must be run as root." >&2 exit 1 fi whm_call() { local json json=$(whmapi1 --output=json "$@") if [ "$(jq -r '.metadata.result' <<<"$json")" != "1" ]; then echo "Error: whmapi1 $1 failed: $(jq -r '.metadata.reason' <<<"$json")" >&2 exit 1 fi printf '%s' "$json" } acct_json=$(whm_call listaccts want=user,domain,owner,ip,diskused) ns_json=$(whm_call get_nameserver_config) ip_json=$(whm_call listips) printf 'Accounts: %s\nCustomer data: %.2f GiB\nServer nameservers:\n' \ "$(jq '.data.acct | length' <<<"$acct_json")" \ "$(jq '[.data.acct[].diskused | sub("M$";"") | (tonumber? // 0)] | (add // 0) / 1024' <<<"$acct_json")" resolve_host() { { dig +short A "$1" || true dig +short AAAA "$1" || true } | sed 's/\.$//' | { grep -E '^[0-9A-Fa-f.:]+$' || true; } | sort -u } # IPv4 comes from the WHM IP inventory (includes public IPs on NAT'd # servers); listips is IPv4-only, so IPv6 still comes from the kernel. server_ips=$( { jq -r '.data.ip[]?.ip' <<<"$ip_json" ip -o -6 addr show scope global 2>/dev/null | awk '{print $4}' | cut -d/ -f1 || true } | sed '/^$/d' | sort -u ) # Our global DNS cluster (StableDNS) is reachable under two brand # names; both resolve to the same cluster IPs. stabledns_ips=$( for i in 1 2 3 4; do resolve_host "ns${i}.stableserver.net" resolve_host "ns${i}.mysecurecloudhost.com" done | sort -u ) jq -r '.data.nameservers[]?' <<<"$ns_json" | while read -r ns; do resolved=$(resolve_host "$ns") if [ -z "$resolved" ]; then status="UNRESOLVED" elif grep -Fqx -f \ <(printf '%s\n' "$server_ips") \ <(printf '%s\n' "$resolved"); then status="LOCAL" elif [ -n "$stabledns_ips" ] && grep -Fqx -f \ <(printf '%s\n' "$stabledns_ips") \ <(printf '%s\n' "$resolved"); then status="STABLEDNS" else status="REMOTE/CLUSTER" fi printf ' %-35s %-15s %s\n' \ "$ns" \ "$status" \ "$(paste -sd, <<<"$resolved")" done # No WHM API getter exists for reseller nameservers (only # setresellernameservers), so read cPanel's backing file directly. custom_reseller_ns=$( awk -F: '{ ns=$2 gsub(/[[:space:]]/, "", ns) # The file has four fixed slots, so collapse the empty entries # left behind by unused slots (e.g. "ns1,ns2,,"). gsub(/,+/, ",", ns) sub(/^,/, "", ns) sub(/,$/, "", ns) if (ns != "") printf " %s: %s\n", $1, ns }' /var/cpanel/resellers-nameservers 2>/dev/null || true ) # One line per reseller, so the line count is the reseller count. if [ -n "$custom_reseller_ns" ]; then custom_reseller_ns_count=$(wc -l <<<"$custom_reseller_ns" | tr -d ' ') else custom_reseller_ns_count=0 fi printf '\nCustom reseller nameservers (%s reseller(s)):\n' \ "$custom_reseller_ns_count" if [ -n "$custom_reseller_ns" ]; then printf '%s\n' "$custom_reseller_ns" else printf ' None\n' fi # listips only flags an IP as "dedicated" when a single account uses it, # which misses IPs delegated to resellers as their shared IP. Instead, # report every account that is not on the server's main shared IP and # classify how its IP is used. server_shared_ip=$(whm_call get_shared_ip | jq -r '.data.ip // empty') if [ -z "$server_shared_ip" ] || [ "$server_shared_ip" = "~" ]; then # listips can flag several addresses as main on multi-interface # servers; only ever use one so later exact-match comparisons work. server_shared_ip=$( jq -r 'first(.data.ip[]? | select((.mainaddr | tonumber) == 1) | .ip) // empty' <<<"$ip_json" ) fi # Map of IP -> list of resellers using it as their shared IP. An IP # with multiple resellers is effectively a shared pool IP. reseller_shared_map=$( whm_call listresellers | jq -r '.data.reseller[]?' | while read -r reseller; do reseller_ip=$(whm_call get_shared_ip user="$reseller" | jq -r '.data.ip // empty') if [ -n "$reseller_ip" ] && [ "$reseller_ip" != "~" ] && [ "$reseller_ip" != "$server_shared_ip" ]; then printf '%s\t%s\n' "$reseller_ip" "$reseller" fi done | jq -Rn ' [inputs | split("\t") | {ip: .[0], reseller: .[1]}] | group_by(.ip) | map({key: .[0].ip, value: map(.reseller)}) | from_entries ' ) # Grouped by IP: an "H" line per qualifying IP followed by an "A" line # per account on it. The account JSON is streamed via stdin because it # can exceed the kernel argument-size limit on large servers. dedicated_ip_groups=$( jq -r \ --argjson reseller_shared "$reseller_shared_map" \ --arg shared_ip "$server_shared_ip" ' [ .data.acct[] | select(.ip != $shared_ip) | ($reseller_shared[.ip] // []) as $resellers # IPs shared between multiple resellers are treated as shared IPs # and skipped, like the main shared IP. | select(($resellers | length) <= 1) ] | group_by(.ip)[] | ($reseller_shared[.[0].ip] // []) as $resellers # With no reseller attached, the IP only counts as dedicated when a # single account uses it. | select(($resellers | length) == 1 or length == 1) | ( [ "H", .[0].ip, (if ($resellers | length) == 1 then "reseller-shared (" + $resellers[0] + ")" else "dedicated (owner: " + .[0].owner + ")" end), (length | tostring) ], (.[] | ["A", .user, .domain]) ) | @tsv ' <<<"$acct_json" ) if [ -n "$dedicated_ip_groups" ]; then dedicated_ip_count=$(grep -c '^H' <<<"$dedicated_ip_groups") else dedicated_ip_count=0 fi printf '\nDedicated IPs (single account or single reseller): %s\n' \ "$dedicated_ip_count" if [ "$dedicated_ip_count" -gt 0 ]; then while IFS=$'\t' read -r tag field1 field2 field3; do case "$tag" in H) printf '\n %s %s (%s account(s))\n' "$field1" "$field2" "$field3" printf ' %-16s %s\n' 'USER' 'DOMAIN' ;; A) printf ' %-16s %s\n' "$field1" "$field2" ;; esac done <<<"$dedicated_ip_groups" else printf ' None\n' fi phpmoves.sh 0000755 00000003141 15246237042 0006750 0 ustar 00 #!/bin/bash # phpmoves.sh - Generate a list of the cPanel users and their current PHP versions # Copyright 2023 World Host Group. # Tsvetan Gerov <tsvetan@worldhost.group> # Version 0.2 if [ ! -x /usr/bin/selectorctl ]; then echo "Error: This server is not using CloudLinux's PHP selector" exit 1 fi case $1 in generate) nativeVersion=$(selectorctl --show-native-version) serverHostname=$(hostname -f) CPUSERS=$(whmapi1 listaccts | grep user | awk '{print$2}') OUTPUT=${serverHostname}.txt truncate -s 0 $OUTPUT for CPUSER in $CPUSERS; do if getent passwd $CPUSER > /dev/null 2>&1; then PHPVER=$(selectorctl --user-current --user=${CPUSER} | awk '{print$1}') if [ $PHPVER == "native" ]; then PHPVER=$nativeVersion fi echo "$CPUSER : $PHPVER" | tee -a $OUTPUT fi done echo "Transfer $OUTPUT file to the new server and execute ./$(basename $0) load $OUTPUT" ;; load) FILE=$2 echo "Loading $FILE..." CPUSERS=$(cat $FILE | awk '{print$1}') for CPUSER in $CPUSERS; do if getent passwd $CPUSER > /dev/null 2>&1; then PHPVER=$(grep -w ^${CPUSER} $FILE | awk '{print$3}') echo "=> $CPUSER: Settings PHP version to $PHPVER" selectorctl --set-user-current=$PHPVER --user=$CPUSER else echo "--> User $CPUSER does not exists on this server." fi done ;; *) echo "Usage: $(basename $0) generate|load" echo "generate - generate a list with users and their curent php versions" echo "load <filename> - set a users php versions from a generated list" ;; esac sp_remote_sql.php 0000755 00000005374 15246237042 0010152 0 ustar 00 <?php $cnf = file_get_contents("/root/.my.cnf"); preg_match("/password=\"?(.*)\"?/", $cnf, $matches); $pass = str_replace('"', "", $matches[1]); $x = new mysqli('localhost', 'root', $pass, 'mysql'); if ($x->connect_errno) { die("MySQL error"); } $hostname = gethostname(); $hostname = $x->real_escape_string($hostname); $sql = "SELECT DISTINCT host from user where host != '127.0.0.1' and host != 'localhost' and host != '$hostname'"; $r = $x->query($sql); if (!$r) { die("MySQL error"); } $csfallowPath = "/etc/csf/remote_mysql.allow"; $csfallow = file_exists($csfallowPath) ? file_get_contents($csfallowPath) : ''; $allows = explode("\n", $csfallow); $addition = ''; $currentRules = []; $removedSomething = false; echo "Start...\n"; while ($row = $r->fetch_assoc()) { $host = $row['host'] ?? ($row['Host'] ?? ''); if (empty($host) || strpos($host, '*') !== false) { continue; } echo "Check $host - "; if (preg_match("/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.%$/", $host)) { $ip = str_replace(".%", ".0/24", $host); echo "Found a /24...$ip "; } elseif (preg_match("/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/", $host)) { $ip = $host; } else { if (!preg_match("/([a-zA-Z0-9_-]){5,60}/", $host)) { echo "Invalid host $host, skip\r\n"; continue; } $ip = gethostbyname($host); if (empty($ip) || $ip === $host || !preg_match("/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/", $ip)) { echo "Does not resolve, skip\r\n"; continue; } echo "Resolves to $ip. "; } $rule = "tcp:in:d=3306:s=$ip"; $currentRules[] = $rule; if (array_search($rule, $allows) !== FALSE) { echo "Already added\n"; } else { echo "Adding $rule\n"; $addition .= $rule . "\n"; } } // Cleanup: remove obsolete entries $updatedRules = []; foreach ($allows as $line) { $trimmed = trim($line); if ($trimmed === '') continue; if (!in_array($trimmed, $currentRules)) { echo "Removed rule $trimmed - no longer exists in MySQL\n"; $removedSomething = true; } else { $updatedRules[] = $trimmed; } } // Append new entries if needed if (!empty(trim($addition))) { $updatedRules = array_merge($updatedRules, explode("\n", trim($addition))); $updatedRules = array_unique(array_filter(array_map('trim', $updatedRules))); } // Save final file file_put_contents($csfallowPath, implode("\n", $updatedRules) . "\n"); // Restart CSF if needed if (!empty($addition) || $removedSomething) { echo "\n-> Changes applied, restarting CSF...\n"; shell_exec("/usr/sbin/csf -r"); echo "-> CSF restarted.\n"; } else { echo "\n-> No changes. CSF remains untouched.\n"; } jb5_to_cpanel_convertor.sh 0000755 00000033506 15246237042 0011724 0 ustar 00 #!/bin/bash # Convert the supplied JetBackup 5 backup file to a cPanel-compatible backup. # # Originally created by TheLazyAdmin, https://thelazyadmin.blog # # ** USE AT YOUR OWN RISK ** # MIT License # # Copyright (c) 2022 TheLazyAdmin # Copyright (c) 2023,2024 Christopher Handley # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. if [ "$EUID" -eq 0 ]; then echo "Error: This script must not be run as root." exit 1 fi function Error { echo "" echo "$1" exit 1 } function ErrorHelp { echo "" echo "$1" echo " How to use: jb5_to_cpanel_convertor.sh JETBACKUP5_BACKUP [DESTINATION_FOLDER] JETBACKUP5_BACKUP = Source JetBackup file DESTINATION_FOLDER = Optional destination folder for cPanel backup, defaults to /home/, if you are root, otherwise to ~/ e.g. jb5_to_cpanel_convertor.sh /home/download_jb5user_1663238955_28117.tar.gz " exit 1 } function Untar() { BackupPath="$1" DestPath="$2" tar -xf "$BackupPath" -C "$DestPath" Err=$? [[ $Err -gt 0 ]] && Error "Unable to untar the file '$BackupPath'" } function Extract() { FilePath="$1" gunzip $FilePath # FilePath not quoted so can expand wildcard Err=$? [[ $Err -gt 0 ]] && Error "Unable to extract files" } function MoveDir() { Src="$1" Dst="$2" echo "Converting folder '$Src'" mv $Src "$Dst" # Src not quoted so can expand wildcard Err=$? [[ $Err -gt 0 ]] && Error "An error occurred" } function Archive() { TarName="$1" echo "Creating archive '$DestDir/$TarName'" if [ -f "$DestDir/$TarName" ]; then rm "$DestDir/$TarName"; fi # Ensure create a new archive from scratch cd "$UnzipDest" || Error "Failed to CD to '$UnzipDest'" tar -czf "$DestDir/$TarName" "cpmove-$AccountName" >/dev/null 2>&1 Err=$? [[ $Err != 0 ]] && Error "Unable to create tar file" } function CreateFTPaccount() { DirPath="$1" ConfigPath="$2" HomeDir="$( cat "$ConfigPath/meta/homedir_paths" )" User="$( ls "$ConfigPath/cp/")" for FILE in $(ls -1 "$DirPath" | grep -iE "\.acct$"); do Username="$(grep -Po '(?<=name: )(\w\D+)' "$DirPath/$FILE")" Password="$(grep -Po '(?<=password: )([A-Za-z0-9!@#$%^&*,()\/\\.])+' "$DirPath/$FILE")" WebRootPath="$(grep -Po '(?<=path: )([A-Za-z0-9\/_.-]+)' "$DirPath/$FILE")" echo "Creating FTP account '$Username'"; printf "%s:%s:0:0:%s:%s/%s:/bin/ftpsh" "$Username" "$Password" "$User" "$HomeDir" "$WebRootPath" >> "$CPanelDir/proftpdpasswd" done } function CreateMySQLfile() { DirPath="$1" SQL_FilePath="$2" for FILE in $(ls -1 "$DirPath" | grep -iE "\.user$"); do Username="$(grep -Po '(?<=name: )([a-zA-Z0-9!@#$%^&*(\)\_\.-]+)' "$DirPath/$FILE")" Database="$(grep -Po '(?<=database `)([_a-zA-Z0-9]+)' "$DirPath/$FILE")" User="$(grep -Po '(?<=name: )([a-zA-Z0-9!#$%^&*(\)\_\.]+)' "$DirPath/$FILE")" Domain="$(echo "$Username" | grep -Po '(?<=@)(.*)$')" Password="$(grep -Po '(?<=password: )([a-zA-Z0-9*]+)' "$DirPath/$FILE")" Permissions="$(grep -Po '(?<=:)[A-Z ,]+$' "$DirPath/$FILE")" echo "Creating DB '$Database' & adding DB user '$User'" echo "GRANT USAGE ON *.* TO '$User'@'$Domain' IDENTIFIED BY PASSWORD '$Password';" >> "$SQL_FilePath" echo "GRANT$Permissions ON \`$Database\`.* TO '$User'@'$Domain';" >> "$SQL_FilePath" done } function CreateEmailAccount() { BackupEmailPath="$1" DestEmailPath="$2" echo "Creating email accounts" for JSON_FILE in $(ls -1 "$BackupEmailPath" | grep -iE "\.conf$"); do JsonFile="$BackupEmailPath/$JSON_FILE" MailUser="$(jq -r '.account' "$JsonFile" | base64 --decode)" MailDomain="$(jq -r '.domain' "$JsonFile" | base64 --decode)" MailPassword="$(jq -r '.password' "$JsonFile" | base64 --decode)" mkdir -p "$DestEmailPath/$MailDomain" echo "${MailUser}:${MailPassword}:::::::" >>"$DestEmailPath/${MailDomain}/shadow" done } function CreateDomains() { DirPath="$1" ConfigPath="$2" echo "Creating domains" # find primary domain PrimaryDomain="" for JSON_FILE in "$DirPath"/*.conf; do Domain="$(jq -r '.domain' "$JSON_FILE" | base64 --decode)" Type="$(jq -r '.type' "$JSON_FILE" | base64 --decode)" if [ "$Type" -eq 1 ]; then PrimaryDomain="$Domain" fi done if [ -z "$PrimaryDomain" ]; then Error "Failed to find the primary domain of account '$AccountName'"; fi # OR COULD JUST DO: PrimaryDomain="$( cat "$CPanelDir/cp/$AccountName" | grep -Po '(?<=DNS=)([A-Za-z0-9-.]+)')" # write info about sub-domains of the primary domain echo -n "" >"$ConfigPath"/sds echo -n "" >"$ConfigPath"/sds2 for JSON_FILE in "$DirPath"/*.conf; do #WebRoot="$(jq -r '.public_dir' "$JSON_FILE" | base64 --decode)" Domain="$(jq -r '.domain' "$JSON_FILE" | base64 --decode)" Type="$(jq -r '.type' "$JSON_FILE" | base64 --decode)" if [[ "$Type" -eq 3 && "$Domain" == *.$PrimaryDomain ]]; then # (sub-domain) echo " Adding sub-domain '$Domain'" echo "${Domain/./_}" >>"$ConfigPath"/sds echo "${Domain/./_}=$Domain" >>"$ConfigPath"/sds2 fi done # write info about addon & parked domains echo -n "" >"$ConfigPath"/addons echo -n "" >"$ConfigPath"/pds for JSON_FILE in "$DirPath"/*.conf; do #WebRoot="$(jq -r '.public_dir' "$JSON_FILE" | base64 --decode)" Domain="$(jq -r '.domain' "$JSON_FILE" | base64 --decode)" Type="$(jq -r '.type' "$JSON_FILE" | base64 --decode)" if [ "$Type" -eq 1 ]; then # (primary domain) so ignore it : elif [ "$Type" -eq 2 ]; then # (addon domain) echo " Adding addon domain '$Domain'" echo "$Domain=${Domain/./_}.$PrimaryDomain" >>"$ConfigPath"/addons echo "${Domain/./_}.$PrimaryDomain" >>"$ConfigPath"/sds echo "${Domain/./_}.$PrimaryDomain=$Domain" >>"$ConfigPath"/sds2 elif [ "$Type" -eq 3 ]; then # (sub-domain) so ignore for the moment : elif [ "$Type" -eq 4 ]; then # (parked/alias domain) echo "$Domain" >>"$ConfigPath"/pds else # (unknown domain type) Error "Domain '$Domain' has unknown type '$Type'" fi done # write info about sub-domains that are NOT of the primary domain for JSON_FILE in "$DirPath"/*.conf; do #WebRoot="$(jq -r '.public_dir' "$JSON_FILE" | base64 --decode)" Domain="$(jq -r '.domain' "$JSON_FILE" | base64 --decode)" Type="$(jq -r '.type' "$JSON_FILE" | base64 --decode)" if [[ "$Type" -eq 3 && ! "$Domain" == *.$PrimaryDomain ]]; then # (sub-domain) echo " Adding sub-domain '$Domain'" echo "${Domain/./_}" >>"$ConfigPath"/sds echo "${Domain/./_}=$Domain" >>"$ConfigPath"/sds2 fi done } function CreateSSLcerts() { DirPath="$1" ConfigPath="$2" echo "Creating SSL certifcates" # indicates the account will use WHM’s SSL Storage Manager feature (WHM » Home » SSL/TLS » SSL Storage Manager) # And without this, restoring the account will fail to install the SSL certificate, reporting "An error prevented adding a record of type “crt” ... That certificate is already installed as ..." touch "$ConfigPath"/has_sslstorage # with the above, the code below seems unnecessary, so I have disabled it return # loop through primary, addon & parked Domains for JSON_FILE in "$DirPath"/*.conf; do #WebRoot="$(jq -r '.public_dir' "$JSON_FILE" | base64 --decode)" Domain="$(jq -r '.domain' "$JSON_FILE" | base64 --decode)" Type="$(jq -r '.type' "$JSON_FILE" | base64 --decode)" if [[ "$Type" -eq 1 || "$Type" -eq 2 || "$Type" -eq 4 ]]; then echo " Creating SSL cert for '$Domain'" #echo "# Domain='$Domain', Type=$Type (1/2/3/4=Primary/Addon/Sub/Parked)" >/dev/stderr echo -n "" >"$ConfigPath"/apache_tls/"$Domain" # for the Domain, get the Modulus of it's most recent certificate Modulus="$(yq -r ".files.certificate | to_entries | map(select(.value.\"subject.commonName\" == \"$Domain\")) | sort_by(.value.created) | reverse[0].value.modulus" "$ConfigPath"/homedir/ssl/ssl.db)" #echo "# domain has Modulus='$Modulus'" >/dev/stderr # get the name of the Key with the matching Modulus Key="$(yq -r ".files.key | to_entries | map(select(.value.modulus == \"$Modulus\"))[] | .key" "$ConfigPath"/homedir/ssl/ssl.db)" #echo "# modulus has Key='$Key'" >/dev/stderr # read the corresponding Key & append it to apache_tls/Domain cat "$ConfigPath"/homedir/ssl/keys/"$Key".key >>"$ConfigPath"/apache_tls/"$Domain" echo "" >>"$ConfigPath"/apache_tls/"$Domain" # for the Domain, get the name of it's most recent Cert(ificate) Cert="$(yq -r ".files.certificate | to_entries | map(select(.value.\"subject.commonName\" == \"$Domain\")) | sort_by(.value.created) | reverse[0].key" "$ConfigPath"/homedir/ssl/ssl.db)" #echo "# domain has Cert='$Cert'" >/dev/stderr # read the Cert(ificate) & append it to apache_tls/Domain cat "$ConfigPath"/homedir/ssl/certs/"$Cert".crt >>"$ConfigPath"/apache_tls/"$Domain" echo "" >>"$ConfigPath"/apache_tls/"$Domain" # I don't append the CA (Certificate Authority) bundle’s root node, as I can't find it in the JB5 backup. # BUT it might be unnecessary as "In most cases, you do not need to supply the CA bundle because the server will fetch it from a public repository" fi done } function CreateDNSZones() { DirPath="$1" ConfigPath="$2" echo "Creating DNS zones" for FILE in "$DirPath"/*.zone; do FileName="${FILE##*/}" DstFile="$ConfigPath/dnszones/${FileName%.*}.db" echo " Creating '$DstFile'" mv "$FILE" "$DstFile" Err=$? [[ $Err -gt 0 ]] && Error "An error occurred" done } # Parse arguments FilePath="$1" DestDir="$2" # Sanity check ! [[ -f "$FilePath" ]] && ErrorHelp "Invalid file provided" [[ "$DestDir" == "/" ]] && ErrorHelp "Error :: Don't use root folder as destination" # Default arguments if [ -z "$DestDir" ]; then if [ "$(whoami)" == "root" ]; then DestDir=/home else DestDir=~ fi fi # Extract username #AccountName=$(echo "$FilePath" | grep -oP '(?<=download_)([^_]+)') AccountName="$(echo "${FilePath##*/}" | cut -d_ -f2)" if [ $(( $(du --block-size=1 "$FilePath" | cut -f1)*10 )) -lt $(df --block-size=1 --output=avail /tmp | tail -n1) ]; then # (Free space of /tmp is more than 10 times the compressed archive size) so should be safe to decompress there TmpDir=/tmp elif [ $(( $(du --block-size=1 "$FilePath" | cut -f1)*2 )) -gt $(df --block-size=1 --output=avail /tmp | tail -n1) ]; then # (Free space of /tmp is less than 2 times the compressed archive size) so definitely NOT enough space TmpDir=~ else echo "/tmp may not be big enough so checking the decompressed size of the archive..." if [ $(( $(time zcat "$FilePath" | wc -c)*2 )) -lt $(df --block-size=1 --output=avail /tmp | tail -n1) ]; then # (Free space of /tmp is more than 2 times the UNcompressed archive size) so definitely safe to decompress there TmpDir=/tmp else TmpDir=~ fi fi UnzipDest="$(mktemp --directory --tmpdir=$TmpDir "tmp_jb5_$AccountName.XXXXXXXX")" BackupPath="$FilePath" echo "Found backup path '$BackupPath'" echo "Found account '$AccountName'" echo "Creating temporary folder '$UnzipDest'" mkdir -p "$UnzipDest" || ErrorHelp "Destination directory error" ! [[ -d "$UnzipDest" ]] && ErrorHelp "Destination directory error" # Ensure we always clean-up the temporary dir Trap=":" Trap="$Trap; rm -r '$UnzipDest'" trap "trap '' EXIT SIGINT; $Trap" EXIT trap "trap '' EXIT SIGINT; $Trap; exit 130" SIGINT #echo "WARNING: Temp folder will NOT be deleted" echo "Untaring '$BackupPath' into '$UnzipDest'" Untar "$BackupPath" "$UnzipDest" ! [[ -d "$UnzipDest/backup" ]] && Error "JetBackup5 backup directory '$UnzipDest/backup' not found" CPanelDir="$UnzipDest/cpmove-$AccountName" JB5Backup="$UnzipDest/backup" echo "Converting account '$AccountName'" echo "Working folder '$CPanelDir'" if ! [[ -d "$JB5Backup/config" ]]; then ErrorHelp "The backup does not contain the config directory" else MoveDir "$JB5Backup/config" "$CPanelDir/" fi if [[ -d "$JB5Backup/homedir" ]]; then if ! [[ -d "$CPanelDir/homedir" ]]; then MoveDir "$JB5Backup/homedir" "$CPanelDir" else rsync -ar "$JB5Backup/homedir" "$CPanelDir" fi fi if [[ -d "$JB5Backup/database" ]] ; then MoveDir "$JB5Backup/database/*" "$CPanelDir/mysql" Extract "$CPanelDir/mysql/*" fi [[ -d "$JB5Backup/database_user" ]] && CreateMySQLfile "$JB5Backup/database_user" "$CPanelDir/mysql.sql" if [[ -d "$JB5Backup/email" ]]; then MoveDir "$JB5Backup/email" "$CPanelDir/homedir/mail" [[ -d "$JB5Backup/jetbackup.configs/email" ]] && CreateEmailAccount "$JB5Backup/jetbackup.configs/email" "$CPanelDir/homedir/etc" fi [[ -d "$JB5Backup/ftp" ]] && CreateFTPaccount "$JB5Backup/ftp" "$CPanelDir" if [[ -d "$JB5Backup/jetbackup.configs/domain" ]]; then CreateDomains "$JB5Backup/jetbackup.configs/domain" "$CPanelDir" CreateSSLcerts "$JB5Backup/jetbackup.configs/domain" "$CPanelDir" fi if [[ -d "$JB5Backup/domain" ]]; then CreateDNSZones "$JB5Backup/domain" "$CPanelDir" fi echo "Creating final cPanel backup archive..."; Archive "cpmove-$AccountName.tar.gz" echo "Converting Done!" #echo "You can safely remove working folder at: '$JB5Backup'" echo -e "Your cPanel backup:\n$DestDir/cpmove-$AccountName.tar.gz" error_log 0000644 00000415701 15246237042 0006476 0 ustar 00 [16-Jun-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 07:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 10:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 13:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 15:00:07 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 16:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 17:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 18:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 20:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 22:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jun-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 03:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 04:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 05:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 07:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 10:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 12:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 14:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jun-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 00:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jun-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 07:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jun-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 05:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 07:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 10:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 12:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 15:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 18:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 19:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 20:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jun-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 02:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 04:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 20:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 22:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jun-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 07:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 12:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 19:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 22:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jun-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 03:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 07:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 10:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 15:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 16:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 19:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 20:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jun-2026 23:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 00:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 12:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 15:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 20:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 22:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jun-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 07:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 03:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 05:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 07:00:08 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 10:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 12:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 22:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Jul-2026 23:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 01:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 03:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Jul-2026 23:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 03:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 12:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 15:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 16:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 20:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 00:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 13:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [05-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [06-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 18:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 20:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [07-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 01:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 22:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [08-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 05:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 19:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [09-Jul-2026 23:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [10-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 01:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 03:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 04:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 05:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 08:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 12:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 13:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 15:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 20:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 22:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [11-Jul-2026 23:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 01:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 02:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [12-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [13-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 16:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [14-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 03:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 07:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 11:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 22:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [15-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [16-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 03:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [17-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [18-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 03:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 13:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 19:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 20:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [19-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 03:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 07:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 19:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 22:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [20-Jul-2026 23:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 00:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 01:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 04:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 05:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 08:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 10:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 12:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 13:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 15:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 19:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 20:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [21-Jul-2026 23:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 01:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 04:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 07:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 08:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 13:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 14:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 16:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 18:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 19:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 20:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [22-Jul-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 02:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 04:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 05:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 07:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 08:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 11:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 12:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 14:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 15:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 16:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 22:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [23-Jul-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 01:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 06:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 08:00:07 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 10:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 12:00:07 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 13:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 14:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 15:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 18:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 19:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 22:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [24-Jul-2026 23:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 00:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 01:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 03:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 04:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 06:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 07:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 08:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 09:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 10:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 16:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 17:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 18:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 19:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 20:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 21:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 22:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [25-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 00:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 01:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 03:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 04:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 05:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 06:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 08:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 09:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 13:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 14:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 17:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 19:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 20:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 21:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [26-Jul-2026 23:00:04 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 00:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 01:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 02:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 03:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 04:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 05:00:06 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 07:00:05 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [27-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [28-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 02:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 16:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 18:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [29-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 15:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [30-Jul-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 05:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 10:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [31-Jul-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 04:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 06:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 07:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 08:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 09:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 11:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 14:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 20:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [01-Aug-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 01:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 02:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 03:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 06:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 07:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 09:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 10:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 11:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 12:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 13:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 14:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 15:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 17:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 18:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 19:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 20:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 21:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 22:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [02-Aug-2026 23:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 00:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 03:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 05:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 08:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 12:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 13:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 14:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 15:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 16:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 17:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 18:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 19:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 20:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 21:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 22:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [03-Aug-2026 23:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 00:00:01 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 01:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 02:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 03:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 04:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 05:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 06:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 07:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 08:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 09:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 10:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 11:00:03 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 [04-Aug-2026 12:00:02 UTC] PHP Warning: Undefined variable $priv in /opt/sp_scripts/reseller_csf_priv.php on line 8 fix_cagefs 0000755 00000000761 15246237042 0006601 0 ustar 00 #!/bin/bash for account in $(cat /etc/userdomains | awk '{print $2}' | uniq); do homedir=$( getent passwd "$account" | cut -d: -f6 ); if [[ $account != system ]] && [[ $account != nobody ]] && [[ -d $homedir ]] && [[ ! -d $homedir/.cagefs ]]; then cagefsctl --validate-alt-php-ini $account; mkdir -p $homedir/.cagefs/{tmp,var}; chown -R $account:$account $homedir/.cagefs/; echo "$(date) User $account had missing .cagefs - fixed." >> /var/log/missing-cagefs.log; fi; done; accounts_audit.sh 0000755 00000002105 15246237042 0010113 0 ustar 00 #!/bin/bash # TG 2025 RESELLERS=$(cat /var/cpanel/resellers | cut -f 1 -d :) SERVER=$(hostname) echo "=== STANDARD USERS ===" CPUSERS=$(grep OWNER=root /var/cpanel/users/* | cut -f 1 -d : | xargs -n 1 basename) for CPUSER in $CPUSERS; do if grep -q -w $CPUSER /etc/passwd; then USED=$(whmapi1 --output=jsonpretty accountsummary user=$CPUSER | jq -r '.data.acct[].diskused' | sed 's/M//') USED_INT=${USED%.*} ACCOUNT_IP=$(grep ^IP /var/cpanel/users/$CPUSER | cut -f 2 -d =) if [ "$USED_INT" -gt "50000" ]; then echo "$SERVER;$ACCOUNT_IP;$CPUSER;$USED_INT" fi fi done echo "=== RESELLERS ===" for RESELLER in $RESELLERS; do USED=$(whmapi1 --output=jsonpretty resellerstats user=$RESELLER | jq -r .data.reseller.diskused | sed 's/M//') USED_INT=${USED%.*} ACCOUNT_IP=$(grep ^IP /var/cpanel/users/$RESELLER | cut -f 2 -d =) if [ "$USED_INT" -gt "150000" ]; then echo "$SERVER;$ACCOUNT_IP;$RESELLER;$USED_INT" fi done log_flood_block.sh 0000755 00000012720 15246237042 0010230 0 ustar 00 #!/bin/bash # anti-flood script # Example usage: ./log_flood_block.sh /home/portalwakatobika/access-logs/portal.wakatobikab.go.id-ssl_log # the script will: # - filter out any CloudFlare owned IPs and any IPs already present in /etc/csf/csf.deny # - anything else from that log file will be added to /etc/csf/csf.deny # - the access-log logfile will be truncated afterwards so the script don't have to process the same IPs again # - all IPs listed by LiteSpeed (in the /tmp/lshttpd/.rtreport* files under the BLOCKED_IP section) will be blocked, # excluding CloudFlare IPs and IPs that are already blocked # - it runs in a loop with 30 seconds pause per round until stopped, or auto-exits after # empty_run_max idle rounds (default 30 × 30s ≈ 15 minutes) # # 19-11-2023 lukasz@worldhost.group # 07-03-2025 added auto exit when the flood is over + removal of blocked ips within 24h # 25-04-2025 cleanup unused function, update selected fragments flagged by shellcheck, added domain check: # refuse to run if domain is behind cloudflare (provide .htaccess 500 hint); # added never_block list of IPs ## bin_grepcidr=$(which grepcidr) if [[ ! -x ${bin_grepcidr} ]]; then echo "grepcidr missing, try: yum install grepcidr (epel)" exit 1 fi # parse httpd log file, ban any non-cloudflare IPs function log_parse_and_ban() { csf_blocked=$(grep "^[1-9]" /etc/csf/csf.deny|awk '{print $1}'|grep ':' -v) for cur_logline in $(awk '{print $1}' "${log_file}" |sort|uniq|grep -Ev '(:|127.0.0)'); do # echo "processing ${cur_logline}" is_cf=$(${bin_grepcidr} 1>/dev/null -f /root/cf_ips.txt <<<"${cur_logline}";echo $?) is_never_block=$(grep -qw "${cur_logline}" <<<"${never_block}";echo $?) if [[ ${is_cf} -eq 0 ]]; then echo "${cur_logline} skipped, CloudFlare IP" elif [[ ${is_never_block} -eq 0 ]]; then echo "${cur_logline} skipped, IP on never_block list" else # echo -n "checking if ${cur_logline} is already in csf.deny: " is_csf_blocked=$(grep -Eq "^${cur_logline}$" <<<"${csf_blocked}";echo $?) if [[ ${is_csf_blocked} -eq 0 ]]; then echo "${cur_logline} already blocked, skipped" else new_block=1 echo "${cur_logline} # log_flood_block.sh: $(date)" >>/etc/csf/csf.deny echo "${cur_logline} blocked" fi fi done # flush log file to avoid processing the same IPs :>"${log_file}" } usage() { echo -e "\nusage: $0 <log_file> <domain>" echo "example: $0 /home/malakak2/access-logs/layanan.malakakab.go.id-ssl_log layanan.malakakab.go.id" exit 0 } ##main # get cloudflare ips log_file=$1 domain=$2 # never block IPs: never_block="77.95.113.232 65.181.111.253" # check CSF if [[ ! -d /etc/csf ]]; then echo "CSF not found, exiting." exit 1 fi # startup checks if [[ -z ${log_file} ]]; then usage; fi if [[ ! -f ${log_file} ]]; then echo "\"${log_file}\": no such file"; usage; fi if [[ -z ${domain} ]]; then usage; fi # get cloudflare ranges curl -s https://www.cloudflare.com/ips-v4 >/root/cf_ips.txt # make sure the domain is not behind cloudflare dm_ip=$(dig -t a "${domain}" +short|head -1) is_dm_cf=$(${bin_grepcidr} 1>/dev/null -f /root/cf_ips.txt <<<"${dm_ip}";echo $?) if [[ ${is_dm_cf} -eq 0 ]]; then echo "ERROR: domain ${domain} is behind CloudFlare - blocking IPs from the log would not block the flood, instead please add rewrite rule on top of relevant .htaccess file with the following content:" echo -e "\nRewriteEngine On\nRewriteRule .* - [R=500,L]\n" echo "exiting." exit 0 fi # report current DENY_IP_LIMIT value ip_limit=$(grep ^DENY_IP_LIMIT /etc/csf/csf.conf|awk '{print $NF}'|cut -d'"' -f2) if [[ ${ip_limit} -lt 7000 ]]; then echo "NOTE: csf.conf: DENY_IP_LIMIT is ${ip_limit}, if the flood has many IPs, this may need adjusting" else echo "NOTE: csf.conf: DENY_IP_LIMIT is ${ip_limit}" fi # initial flush to skip old entries :>"${log_file}" echo "starting in 5 seconds." ; sleep 5 sleep_time=$3 if [[ -z ${sleep_time} ]]; then sleep_time=30 fi empty_run=1 empty_run_max=30 # idle iterations before exit; wall-clock ≈ empty_run_max * sleep_time while true; do new_block=0 log_parse_and_ban if [[ ${new_block} -eq 1 ]]; then csf -r empty_run=1 else echo "nothing blocked, sleeping ${sleep_time}s (${empty_run} / ${empty_run_max})" (( empty_run++ )) fi # stop after empty_run_max idle iterations (default 30 × 30s sleep ≈ 15 minutes) # and schedule removal of blocked IPs in 24 hours if [[ ${empty_run} -gt ${empty_run_max} ]]; then idle_minutes=$(( empty_run_max * sleep_time / 60 )) echo "no new blocks for ${empty_run_max} idle iterations (~${idle_minutes} minutes), scheduling blocked IPs removal in 24hours" echo "sed -i '/log_flood_block.sh/d' /etc/csf/csf.deny && csf -r" |at now + 24 hours echo "done, exiting." exit 0 else echo -e "\nsleeping ${sleep_time}s..\n" sleep "${sleep_time}" fi done wellknown.sh 0000755 00000004756 15246237042 0007144 0 ustar 00 #!/bin/bash # 2023 (C) WorldHost Group # Tsvetan Gerov <tsvetan@worldhost.group> # THOLD="2G" DUCMD="du -sh -t ${THOLD}" DOCROOTS=$(grep DocumentRoot /etc/apache2/conf/httpd.conf | awk '{print$2}' | sort | uniq) CPUSERS=$(ls /var/cpanel/users) # Well-known cache/backups locations LOCATIONS=" /wp-content/updraft/ /wp-content/ai1wm-backups/ /wp-content/ebwp-backups/ /wp-content/backuply/ /wp-content/cache/ /var/log/ /.npm/cache/ /wp-content/cache/tmpWpfc/ /wp-content/cache/autoptimize/ /wp-content/litespeed/ /error_log " USERLOCATIONS=" /lscache/ /softaculous_backups/ " echo_header() { echo "========== $1 ==========" } # Locations under domain/subdomain echo_header "USER CONTENT" for DOCROOT in $DOCROOTS; do for LOCATION in $LOCATIONS; do if [ -d ${DOCROOT}${LOCATION} ]; then $DUCMD ${DOCROOT}${LOCATION} fi done done # Loctions inside user's homedir for CPUSER in $CPUSERS; do CPHOME=$(getent passwd $CPUSER | cut -f 6 -d :) if [ ! -z $CPHOME ]; then for USERLOCATION in $USERLOCATIONS; do if [ -d ${CPHOME}/${USERLOCATION} ]; then $DUCMD ${CPHOME}/${USERLOCATION} fi done fi done echo_header "SERVER CONTENT" $DUCMD /usr/local/jetapps/usr/jetbackup5/downloads/ $DUCMD /usr/local/jetapps/usr/jetbackup5/workspace/ $DUCMD /var/log/ echo_header "Oversized log files" find /var/log/ -size +1G -exec du -sh {} \; echo_header "Oversized MySQL databases" du -sh -t 10G /var/lib/mysql/* RESELLERS=$(cat /var/cpanel/resellers | cut -f 1 -d :) SERVER=$(hostname) echo_header "Standard users over 50GB" CPUSERS=$(grep OWNER=root /var/cpanel/users/* | cut -f 1 -d : | xargs -n 1 basename) for CPUSER in $CPUSERS; do if grep -q -w $CPUSER /etc/passwd; then USED=$(whmapi1 --output=jsonpretty accountsummary user=$CPUSER | jq -r '.data.acct[].diskused' | sed 's/M//') USED_INT=${USED%.*} ACCOUNT_IP=$(grep ^IP /var/cpanel/users/$CPUSER | cut -f 2 -d =) if [ "$USED_INT" -gt "50000" ]; then echo "$SERVER;$ACCOUNT_IP;$CPUSER;$USED_INT" fi fi done echo_header "Resellers over 150GB" for RESELLER in $RESELLERS; do USED=$(whmapi1 --output=jsonpretty resellerstats user=$RESELLER | jq -r .data.reseller.diskused) USED_INT=${USED%.*} ACCOUNT_IP=$(grep ^IP /var/cpanel/users/$RESELLER | cut -f 2 -d =) if [ "$USED_INT" -gt "150000" ]; then echo "$SERVER;$ACCOUNT_IP;$RESELLER;$USED_INT" fi done lstop.py 0000755 00000002306 15246237042 0006270 0 ustar 00 #!/usr/bin/env python3 # lsTop: LiteSpeed script to display top domains by requests/s. # Tsvetan Gerov <tsvetan@worldhost.group> # v0.1 import re import glob domain_info = {} directory = '/tmp/lshttpd/' file_pattern = '.rtreport*' files = glob.glob(directory + file_pattern) for filename in files: with open(filename, 'r') as file: content = file.read() matches = re.findall(r'REQ_RATE \[APVH_(.*?)\]: .* REQ_PER_SEC: ([0-9.]+)', content) for domain, requests_per_sec in matches: modified_domain = domain.split(':')[0] modified_domain = modified_domain.replace("APVH_", "") if modified_domain in domain_info: domain_info[modified_domain] += int(float(requests_per_sec)) else: domain_info[modified_domain] = int(float(requests_per_sec)) sorted_domains = sorted(domain_info.items(), key=lambda x: x[1]) print("| {:<70s} | {:<8s} |".format("Domain", "Req/s")) print("|" + "-" * 72 + "|" + "-" * 10 + "|") for domain, requests_per_sec in sorted_domains: print(f"| {domain:<70} | {requests_per_sec:8d} |") print("|" + "-" * 72 + "|" + "-" * 10 + "|") print("| {:<70s} | {:<8s} |".format("Domain", "Req/s")) uap.py 0000755 00000007523 15246237042 0005722 0 ustar 00 #!/usr/bin/env python3 import subprocess import json def execute_command(command): try: result = subprocess.run(command, shell=True, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) return result.stdout.strip() except subprocess.CalledProcessError as e: print(f"Command failed: {command}\nError: {e.stderr}") return None def check_mailboxes(): # Get the list of accounts accounts_command = "/usr/local/cpanel/bin/whmapi1 listaccts --output=json" accounts_output = execute_command(accounts_command) if not accounts_output: print("Failed to retrieve accounts.") return accounts_data = json.loads(accounts_output) accounts = accounts_data.get('data', {}).get('acct', []) for account in accounts: username = account.get('user') if not username: continue # Get mailbox usage for the account email_command = f"/usr/local/cpanel/bin/uapi --user={username} Email list_pops_with_disk --output=json" email_output = execute_command(email_command) if not email_output: print(f"Failed to retrieve email data for {username}.") continue email_data = json.loads(email_output) mailboxes = email_data.get('result', {}).get('data', []) for mailbox in mailboxes: email_address = mailbox.get('email') disk_used_mb = mailbox.get('diskused', 0) try: disk_used_gb = float(disk_used_mb) / 1024 # Convert MB to GB if disk_used_gb > 20: print(f"Mailbox {email_address} is over 20GB ({disk_used_gb:.2f}GB).") except ValueError as e: print(f"Error parsing disk usage for mailbox {email_address}: {e}") def check_resellers(): # Get the list of resellers resellers_command = "/usr/local/cpanel/bin/whmapi1 listresellers --output=json" resellers_output = execute_command(resellers_command) if not resellers_output: print("Failed to retrieve resellers.") return resellers_data = json.loads(resellers_output) resellers = resellers_data.get('data', {}).get('reseller', []) for reseller in resellers: # Get reseller usage usage_command = f"/usr/local/cpanel/bin/whmapi1 resellerstats user={reseller} --output=json" usage_output = execute_command(usage_command) if not usage_output: print(f"Failed to retrieve usage data for reseller {reseller}.") continue usage_data = json.loads(usage_output) total_usage_mb = usage_data.get('data', {}).get('reseller', {}).get('diskused', 0) child_accounts = usage_data.get('data', {}).get('reseller', {}).get('acct', []) try: total_usage_gb = float(total_usage_mb) / 1024 # Convert MB to GB if total_usage_gb > 400: print(f"Reseller {reseller} is over 400GB ({total_usage_gb:.2f}GB). Checking child accounts...") for child_account in child_accounts: child_username = child_account.get('user') disk_used_mb = child_account.get('diskused', 0) try: disk_used_gb = float(disk_used_mb) / 1024 # Convert MB to GB if disk_used_gb > 50: print(f"Child account {child_username} under reseller {reseller} is over 50GB ({disk_used_gb:.2f}GB).") except ValueError as e: print(f"Error parsing disk usage for child account {child_username}: {e}") except ValueError as e: print(f"Error parsing total disk usage for reseller {reseller}: {e}") if __name__ == "__main__": print("Checking mailboxes...") check_mailboxes() print("\nChecking resellers...") check_resellers() post_transfer_cleanup.sh 0000755 00000006436 15246237042 0011521 0 ustar 00 #!/bin/bash # # Post-Transfer Cleanup Script for cPanel Live Migration # Clears mail contents and document root files while preserving account structure # # Usage: ./post_transfer_cleanup.sh <username> [--dry-run] # Nikolay Ilchev 09/01/2026 CPUSER="${1:-}" DRY_RUN=0 [[ "${2:-}" == "--dry-run" ]] && DRY_RUN=1 if [[ -z "$CPUSER" ]]; then echo "Usage: $0 <username> [--dry-run]" exit 1 fi if [[ ! -f "/var/cpanel/users/$CPUSER" ]]; then echo "Error: $CPUSER is not a valid cPanel account" exit 1 fi BACKUP_FOUND=0 if [[ -d "/var/backuply" ]]; then BACKUPLY=$(find /var/backuply/backups/$CPUSER -name "*_backup_*_[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]_*.json" -mtime -7 -type f 2>/dev/null | head -1) if [[ -n "$BACKUPLY" ]]; then BACKUP_FOUND=1 echo "Backuply: $(basename "$BACKUPLY")" else echo "Backuply: No backup found, checking JetBackup..." fi else echo "Backuply: Not installed, checking JetBackup..." fi if [[ $BACKUP_FOUND -eq 0 ]] && command -v jetbackup5api &>/dev/null; then JB_DATA=$(jetbackup5api -F listAccounts -D "limit=1000" -O json 2>/dev/null | jq -r ".data.accounts[] | select(.username==\"$CPUSER\")") if [[ -n "$JB_DATA" ]]; then JB_ID=$(echo "$JB_DATA" | jq -r '._id') JB_FULL=$(echo "$JB_DATA" | jq -r '.backup_stats["511"]') if [[ -n "$JB_FULL" && "$JB_FULL" -gt 0 ]]; then BACKUP_FOUND=1 JB_LATEST=$(jetbackup5api -F listBackups -D "account_id=$JB_ID&type=1&contains=511&limit=200" -O json 2>/dev/null | jq -r '.data.backups | last | .created') echo "JetBackup: $JB_FULL full backups, latest: $JB_LATEST" fi fi fi if [[ $BACKUP_FOUND -eq 0 ]]; then echo "Error: No backup found for $CPUSER" exit 1 fi if [[ ! -f "/var/cpanel/suspended/$CPUSER" ]]; then echo "Error: Account $CPUSER is not suspended" exit 1 fi SUSPEND_REASON=$(cat "/var/cpanel/suspended/$CPUSER" 2>/dev/null) if [[ "$SUSPEND_REASON" != "User transferred to another server" ]]; then echo "Error: Wrong suspension reason: $SUSPEND_REASON" exit 1 fi HOMEDIR=$(grep "^$CPUSER:" /etc/passwd | cut -d: -f6) if [[ -z "$HOMEDIR" || ! -d "$HOMEDIR" ]]; then echo "Error: Cannot find home directory" exit 1 fi du -sh "$HOMEDIR" 2>/dev/null | awk '{print "Current usage: "$1}' DOCROOTS=$(grep DocumentRoot /etc/apache2/conf/httpd.conf | grep "/home/$CPUSER" | awk '{print $2}' | tr -d '"' | sort -u) echo "Cleaning document roots..." for docroot in $DOCROOTS; do [[ -d "$docroot" ]] && echo " $docroot" done echo "Cleaning mail directory..." [[ -d "$HOMEDIR/mail" ]] && echo " $HOMEDIR/mail" if [[ $DRY_RUN -eq 1 ]]; then echo "[DRY RUN] No changes made" exit 0 fi read -p "Proceed with deletion? (y/n): " CONFIRM if [[ "$CONFIRM" != "y" ]]; then echo "Aborted." exit 1 fi echo "Deleting..." for docroot in $DOCROOTS; do if [[ -d "$docroot" ]]; then su - "$CPUSER" -s /bin/bash -c "find '$docroot' -type f ! -name '.htaccess' -delete 2>/dev/null" su - "$CPUSER" -s /bin/bash -c "find '$docroot' -mindepth 1 -type d -empty -delete 2>/dev/null" fi done if [[ -d "$HOMEDIR/mail" ]]; then su - "$CPUSER" -s /bin/bash -c "find '$HOMEDIR/mail' -type f -delete 2>/dev/null" fi du -sh "$HOMEDIR" 2>/dev/null | awk '{print "New usage: "$1}' echo "Done."
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings