Introduction
Last updated: Recently
Thank you for choosing WowCodes! If you encounter any challenges with the code or documentation, please contact our team of Experts here. We appreciate your purchase and look forward to supporting you.
Last updated: Recently
Thank you for choosing WowCodes! If you encounter any challenges with the code or documentation, please contact our team of Experts here. We appreciate your purchase and look forward to supporting you.
Get started with WowCodes in just a few minutes. Follow the steps below to install the software, connect your database, and launch your business platform.
WowCodes is built using PHP and works on any standard hosting server with MySQL and PHP support.
app.yourdomain.com
or your main domain like yourdomain.com
.website.zip
file you downloaded from CodeCanyon.sandbox.sql
โ Clean install without sample dataproduction.sql
โ Comes with pre-filled sample users, orders, coins etc.Edit the database connection file:
includes/connection.php
DEFINE('DB_USER', 'your_db_user');
DEFINE('DB_PASSWORD', 'your_db_password');
DEFINE('DB_HOST', 'localhost');
DEFINE('DB_NAME', 'your_db_name');
Note: You only need to update this one file โ it connects the Website, Admin Panel, and Seller Panel automatically.
This section explains the features and flow available to users of your WowCodes platform. It is designed as a mobile-first PWA (Progressive Web App) and provides an app-like experience on smartphones without installation.
Users can recharge their wallet using any of the following methods:
Users can redeem voucher codes from the Gift Voucher section. If the voucher is valid and active, the associated coins are added to the user wallet immediately.
This section covers all settings and controls available in the backend panel for Admins and Sellers. The panel is accessible through a browser and requires login credentials assigned by the system owner.
You can edit your privacy policy content from the Admin Panel under "Settings" section, or directly in the database if needed.
WowCodes software's supports 1-click login with Google, Facebook, and Apple. These simplify the registration process and increase conversion. You can enable these from the Admin Panel > Social Login Settings.
Web application
.https://yourdomain.com/sso-login/google.php
Admin Panel > Settings > ๐ API's
easily.Troubleshooting: Ensure your domain is verified and redirect URL matches exactly.
yourdomain.com
) to App Domains.https://yourdomain.com/sso-login/facebook.php
Admin Panel > Settings > ๐ API's
easily.Troubleshooting: Ensure your app is in Live
mode, and the domain is added correctly.
https://yourdomain.com/sso-login/apple.php
tbl_credentials
:
client_id
(Services ID)team_id
key_id
private_key
(contents of .p8)Troubleshooting: Apple only returns user name once, so save it on first login. Make sure redirect URI is added to Services ID configuration.
WowCodes supports over 35+ payment gateways including international, crypto, wallets, Indian UPI/manual modes and more. You can enable/disable any gateway from Admin Panel > Settings > Payment Gateway.
In these methods, users submit transaction details manually and admins verify it from "Manual Payments" section before approving.
For each, obtain your Merchant ID
, API Key
, or Secret
and enter in Admin Panel > Payment Settings.
These require wallet addresses or API credentials from the crypto payment platforms. Some accept multiple crypto types.
Many of these serve users in specific countries. Be sure to test payment flow before going live.
Learn how to set up Live Chat using tawk.to for real-time customer support.
โ You can test the live chat by visiting your website support page and ensuring the chat bubble appears at the bottom right.
This section helps you solve common issues while installing or using WowCodes products. If your issue persists, please contact our support team.
website.zip
folder to your subdomain's root directory.includes/connection.php
index.php
:
ini_set('display_errors', 1);
error_reporting(E_ALL);
wowcodes.in
) and not a sub-folder like wowcodes.in/folder
.If you feel things are not getting done automatically like:
Here are the steps to setup cron jobs:
.php
) in the cron
folder, like
declare_auction-winner.php
or declare_lottery-winner.php
.
crontab -e
(on SSH).* * * * * /usr/bin/php /path/to/your/project/cron/declare_auction-winner.php >/dev/null 2>&1
This example runs every minute. Adjust the timing as needed.
*/5 * * * * ...
โ every 5 minutes0 * * * * ...
โ every hour/usr/bin/php
) matches your server. You can check it by running which php
in SSH.If you still can't resolve your issue, please: