Thank you for being one of our buyers. We are glad that you have joined us and that you are a user of our products. We hope you like it. As part of our support for our products, we have provided a complete user guide for our products. All you have to do is follow this guide step by step to install your site.
This item made by Vironeer under Envato Extended & Regular License
We don't provide free customizations or installations or server problems fixing, we can provide them as paid services.
First download the files from CodeCanyon and extract them in your computer
Script.zip
Script.zip
Script.zip
then click extract
After all files has been extracted now open your website URL and start installing
if your website URL cannot open or you see Error with code 500, its coming from your server side, please contact your server support, or check your server logs to know where is the problem.
Some servers is disabling this option or they have a problem on mysql database if you get any problem or 500 Server Error please use manual import to import your database.
Free plan does not expire for guest users, And its renewed automatically for registered users
A cron job is a Linux command used for scheduling tasks to be executed sometime in the future. This is normally used to schedule a job that is executed periodically – for example, to send out a notice every morning etc...
Swipgle is using cron job for subscriptions (renewal reminder, expiry reminder, renew free subscriptions, delete expired subscriptions files) and also for transfers (delete expired transfers files) and (delete temp files and chunks) and also used on transactions to (delete unpaid transactions).
There are some commands that you need to setup :
This command is for renewing the free subscription and inform the users via email.
* * * * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan subscriptions:renew-free >> /dev/null 2>&1
This command is used to send an email reminder every 2 days to the user in last 6 days of subscription.
0 0 */2 * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan subscription:renewal-reminder >> /dev/null 2>&1
This command is used to send an email reminder every 3 days to the user in when the subscription is expired.
0 0 */3 * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan subscription:expiry-reminder >> /dev/null 2>&1
* * * * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan subscriptions:delete-expired >> /dev/null 2>&1
This command is for deleting expired transfer files.
* * * * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan transfer:expired-files-delete >> /dev/null 2>&1
This commands is for deleting the files and chunks that uploaded by users and not transferred example : (when user left before upload completed).
25 * * * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan uploads:delete >> /dev/null 2>&1
/usr/local/bin/php /home/SERVER_PATH/Application/artisan uploads:clear >> /dev/null 2>&1
This command is for deleting the unpaid transactions.
25 * * * *
SERVER_PATH
to your path
/usr/local/bin/php /home/SERVER_PATH/Application/artisan transactions:unpaid-delete >> /dev/null 2>&1