🎁 Ocean Membership • Lifetime Benefits

Choose Your OceanVPS Growth Path

Choose the option that fits your goal: save more on OceanVPS products with Gold Membership, or launch your own ready-made White Label Website as a genuine seller.
♾️ Lifetime Validity💳 One-Time Payment⚡ Instant Activation🔒 Secure Checkout

Gold Membership or White Label Website?

Two simple options: one for lifetime member savings, and one for building your own online selling business with a ready-made website setup.
👑

Gold Member

Best value for frequent shoppers
₹2,800
₹300 OFF on eligible products
  • ✓ Lifetime membership
  • ✓ One-time payment
  • ✓ No monthly charges
  • ✓ Highest member discount
  • ✓ Exclusive member benefits
🌐

White Label Website

For genuine sellers who want their own online business
ONE-TIME FEE
Ready-made website + business setup
  • ✓ Professional ready-made website
  • ✓ Product catalog and setup guidance included
  • ✓ Product sourcing & ordering process explained
  • ✓ Your own branding and customer pricing
  • ✓ No revenue share on your sales
  • ✓ Ongoing income depends on your own sales

Why Choose These Options?

Choose lifetime membership savings or build your own online business with a ready-made seller website.
💰

Lifetime Savings

Gold members get the configured discount on eligible OceanVPS products.
♾️

One-Time Membership

Pay once for Gold Membership; no recurring membership fee.

Ready-Made Website

White Label Website setup gives genuine sellers a professional online storefront.
🎁

Your Sales, Your Margin

You set your customer pricing and keep your sales margin; income depends on your sales.

How It Works

Choose Gold for savings, or White Label Website for your own seller business.
1

Choose Your Option

Select Gold Membership or White Label Website.
2

Complete Payment

Pay the applicable one-time fee through the available checkout process.
3

Get Access & Setup

Gold activates your membership; White Label sellers receive the website and setup information.
4

Start Saving or Selling

Use your Gold benefits or start selling through your own website.

Frequently Asked Questions

What is Gold Membership?

Gold Membership is a one-time lifetime membership that gives the configured discount on eligible OceanVPS products. The actual discount is controlled by the OceanVPS Membership system.

What is the White Label Website?

It is a ready-made website solution for genuine sellers who want to run their own online selling business. Website setup, product information and the product/order process are provided as part of the setup.

Where do the products come from?

The White Label setup includes the product catalog and guidance on where/how products are supplied or ordered. Product availability, pricing and seller terms can be updated by OceanVPS.

Does OceanVPS take a share of my sales?

The offer is designed without a revenue-share claim on your own sales. Your actual earnings depend on your selling price, costs, customer demand and sales volume.

Is income guaranteed?

No. A website or membership does not guarantee income. Earnings depend on your own sales and business performance.

Ready to Choose Your Path?

Get Gold Membership for lifetime savings, or explore the White Label Website for your own seller business.

🎁 Ocean Membership • Lifetime Benefits

Shop More. Save More. Stay Member Forever.

Choose your OceanVPS membership and unlock lifetime savings with a simple one-time payment.
♾️ Lifetime Validity💳 One-Time Payment⚡ Instant Activation🔒 Secure Checkout

Choose Your Membership

Select the plan that gives you the best value for your shopping needs.
🌊

Ocean Member

Perfect for regular shoppers
₹1,000
₹100 OFF on eligible products
  • ✓ Lifetime membership
  • ✓ One-time payment
  • ✓ No monthly charges
  • ✓ Member-only savings
  • ✓ Instant activation
👑

Gold Member

Best value for frequent shoppers
₹2,800
₹300 OFF on eligible products
  • ✓ Lifetime membership
  • ✓ One-time payment
  • ✓ No monthly charges
  • ✓ Highest member discount
  • ✓ Exclusive member benefits
🥈

Silver Member

Smart savings for shoppers
₹1,900
₹200 OFF on eligible products
  • ✓ Lifetime membership
  • ✓ One-time payment
  • ✓ No monthly charges
  • ✓ Member-only savings
  • ✓ Instant activation

Why Choose Ocean Membership?

Simple pricing. Long-term savings. No recurring subscription fee.
💰

Save Money

Get your member discount on eligible purchases.
♾️

Lifetime Validity

Pay once and keep your membership for life.

Instant Activation

Get started immediately after successful purchase.
🎁

Exclusive Benefits

Enjoy member-focused savings and offers.

How It Works

Four simple steps to start saving.
1

Choose a Plan

Select Ocean, Silver or Gold.
2

Complete Payment

Pay once through checkout.
3

Membership Activated

Your membership is activated by the existing system.
4

Start Saving

Use your member benefits on eligible products.

Frequently Asked Questions

Is this a lifetime membership?

Yes. The plan is presented as a one-time lifetime membership.

Do I have to pay every month?

No. The membership cards are designed for a one-time purchase.

How do I buy a membership?

Click the Join button for your selected plan. Each button can be connected to its WooCommerce membership product.

Can I change the prices later?

Yes. Update the corresponding WooCommerce product price in WordPress.

Ready to Save More?

Choose your OceanVPS membership and start enjoying member benefits.

3128 Port Private Proxy IPs Auto Script

📄
🔥 Auto IP + Squid full integrated script
#!/bin/bash

echo "🔄 System update ho raha hai..."
sudo apt update -y

echo "⬇️ Squid install script download ho raha hai..."
wget -O squid-install.sh https://raw.githubusercontent.com/serverok/squid-proxy-installer/master/squid3-install.sh

echo "⚙️ Squid install ho raha hai..."
sudo bash squid-install.sh

echo "🔧 Squid port 3128 set kiya ja raha hai..."
sudo sed -i 's/http_port .*/http_port 3128/' /etc/squid/squid.conf

echo "🔁 Squid restart ho raha hai..."
sudo systemctl restart squid

echo "📊 Squid status:"
sudo systemctl status squid --no-pager

echo "👤 Ab naya Squid user add karein"
echo "👉 Username aur Password puchha jayega"
squid-add-user

echo "✅ Squid Proxy successfully setup ho gaya (PORT 3128)"
echo "📌 Proxy format: IP:3128:username:password"

3128 Port Private Proxy IPs Auto Script

📄
🔹 STEP 1: Script Create
nano squid-3128-only.sh
📄
🔹 STEP 2: Paste This Script (PRO VERSION)
#!/bin/bash

set -e

SQUID_CONF="/etc/squid/squid.conf"

echo "🔄 Updating system..."
apt update -y

echo "⬇️ Installing Squid (one time)..."
if ! command -v squid >/dev/null 2>&1; then
  wget -O squid-install.sh https://raw.githubusercontent.com/serverok/squid-proxy-installer/master/squid3-install.sh
  bash squid-install.sh
else
  echo "✅ Squid already installed"
fi

echo "🧾 Backing up squid.conf..."
cp $SQUID_CONF ${SQUID_CONF}.backup.$(date +%F-%H%M)

echo "🧹 Cleaning old http_port entries..."
sed -i '/^http_port/d' $SQUID_CONF

echo "🔧 Setting ONLY port 3128..."
cat <<EOF >> $SQUID_CONF

# ===== SINGLE PORT PROXY =====
http_port 3128
EOF

echo "🔁 Restarting Squid..."
systemctl restart squid

sleep 2

echo "📊 Squid status:"
systemctl status squid --no-pager | head -n 10

echo "🔥 Opening firewall port 3128..."
ufw allow 3128 || true
ufw reload || true

echo "👤 Add proxy user (username & password):"
squid-add-user

echo "✅ DONE!"
echo "📌 Proxy format: IP:3128:username:password"

🔹 STEP 3: Save & Exit

  • CTRL + O → Enter

  • CTRL + X

📄
🔹 STEP 4: Permission + Run
chmod +x squid-3128-only.sh
./squid-3128-only.sh
📄
🔹 STEP 5: Confirm Port
ss -lntp | grep squid

Expected output:

3128

📄
STEP 6: User Add (AFTER confirmation)
ss -lntp | grep squid
📄
📌 Final Proxy Format
IP:3128:username:password

✅ ONE-CLICK AUTO SCRIPT (3128 ONLY – PROFESSIONAL)

📄
🔹 STEP 1: Script file बनाइए
nano squid-3128-auto.sh
📄
🔹 STEP 2: पूरा script paste कीजिए
#!/bin/bash

set -e

SQUID_CONF="/etc/squid/squid.conf"

echo "=============================="
echo "🔄 Updating system..."
echo "=============================="
apt update -y

echo "=============================="
echo "⬇️ Installing Squid (if not installed)..."
echo "=============================="
if ! command -v squid >/dev/null 2>&1; then
  wget -O squid-install.sh https://raw.githubusercontent.com/serverok/squid-proxy-installer/master/squid3-install.sh
  bash squid-install.sh
else
  echo "✅ Squid already installed"
fi

echo "=============================="
echo "🧾 Backup squid.conf"
echo "=============================="
cp $SQUID_CONF ${SQUID_CONF}.backup.$(date +%F-%H%M)

echo "=============================="
echo "🧹 Cleaning old ports"
echo "=============================="
sed -i '/^http_port/d' $SQUID_CONF

echo "=============================="
echo "🔧 Setting port 3128"
echo "=============================="
cat <<EOF >> $SQUID_CONF

# ===== SINGLE PORT PROXY =====
http_port 3128
EOF

echo "=============================="
echo "🔁 Restarting Squid"
echo "=============================="
systemctl restart squid
sleep 2

echo "=============================="
echo "📊 Checking listening ports"
echo "=============================="
ss -lntp | grep squid || {
  echo "❌ Squid not listening. Exiting."
  exit 1
}

echo "=============================="
echo "🔥 Opening firewall port 3128"
echo "=============================="
ufw allow 3128 || true
ufw reload || true

echo "=============================="
echo "👤 ADD PROXY USER NOW"
echo "=============================="
echo "👉 Username aur Password puchha jayega"
squid-add-user

echo "=============================="
echo "✅ SETUP COMPLETE"
echo "=============================="
echo "📌 Proxy format: IP:3128:username:password"

🔹 STEP 3: Save & Exit

  • CTRL + O → Enter

  • CTRL + X

📄
🔹 STEP 4: Permission + Run (बस यही command डालनी है)
chmod +x squid-3128-auto.sh
./squid-3128-auto.sh

🟢 Script क्या-क्या AUTO करेगा (Clear List)

✔ System update
✔ Squid install (one time)
✔ Old config backup
✔ Sirf 3128 port set
✔ Squid restart
ss -lntp | grep squid auto check
✔ Firewall open
User add prompt
✔ Final proxy ready

Multi-Port Private Proxy IPs Script

📄
STEP 1: Fresh Ubuntu Ready Ubuntu 20 / 22 / 24 Root login Koi Squid installed nahi
squid -v

🟢  Agar command not found → ✅ perfect

📄
🟢 STEP 2: System Update
apt update -y
📄
🟢 STEP 3: Squid Install (ONE TIME) Sirf multi-port ke liye
wget https://raw.githubusercontent.com/serverok/squid-proxy-installer/master/squid3-install.sh
bash squid3-install.sh

🟢  ⏳ 1–2 minute ✔️ Squid install ✔️ Default 3128 open

📄
🟢 STEP 4: Multi-Port Script Banao
nano squid-5port.sh
📄
✅ SAFE + CLEAN MULTI-PORT SCRIPT (USE THIS)
#!/bin/bash

SQUID_CONF="/etc/squid/squid.conf"

echo "Starting Squid Multi-Port Setup..."

# Backup
cp $SQUID_CONF $SQUID_CONF.backup

# Remove old ports
sed -i '/^http_port/d' $SQUID_CONF

# Add ports
cat <<EOF >> $SQUID_CONF

# ===== MULTI PORT CONFIG =====
http_port 3128
http_port 8000
http_port 9000
http_port 10000
http_port 11000
EOF

# Restart squid
systemctl restart squid

sleep 2

systemctl status squid --no-pager | head -n 10

echo "SUCCESS!"

🟢 Save:  CTRL + O → Enter  |   CTRL + X

📄
🟢 STEP 5: Permission + Run
chmod +x squid-5port.sh
./squid-5port.sh
📄
🟢 STEP 6: Ports Confirm Karo
ss -lntp | grep squid
🟢 Output me ye hone chahiye:

3128
8000
9000
10000
11000

📄
🟢 STEP 7: Firewall Open (VERY IMPORTANT)
ufw allow 3128
ufw allow 8000
ufw allow 9000
ufw allow 10000
ufw allow 11000
ufw reload
📄
🟢 STEP 8: Proxy User Add
squid-add-user
📄
🟢 Final Proxy Format
IP:3128:user:pass
IP:8000:user:pass
IP:9000:user:pass
IP:10000:user:pass
IP:11000:user:pass

03-Column with Solid Color Style

Showcase colorful green style icons on your header and boost your sales.

Basic

$ 6.99 /Month
  • 15 Email Account
  • 100 GB Space
  • 1 Domain Name
  • 300 GB Bandwidth
  • 00 Mysql Databases
  • Enhanced Security