read over the thread y'll find the solution, please dont ask same issue again again and again
Having the same "waiting" issue, unable to find a relevant solution on the thread.read over the thread y'll find the solution, please dont ask same issue again again and again
Having the same "waiting" issue, unable to find a relevant solution on the thread.
there is solution, inspect from the old schedule.blast.php (wamd 4.1.1 or 4.2.1) for your referencesyou need to do a bit modification for blast.php
Remove sensitive data from image or delete image by editing your post.when I create a campaign, it sends the same message several times and doesn't stop waiting
'local' => [
'driver' => 'local',
'root' => public_path('storage'),
],
'public' => [
'driver' => 'local',
'root' => public_path('storage'),
'url' => env('APP_URL') . '/storage',
'visibility' => 'public',
],
Thx, nice solutionssolution for storage or file manager, i fix this problem:
Follow the steps below:
Create a folder in /public folder named /storage Move all folders from /storage/app/public/ to the folder you created /public/storage/ Open file config/filesystems.php and change the values as shown;
Code:'local' => [ 'driver' => 'local', 'root' => public_path('storage'), ], 'public' => [ 'driver' => 'local', 'root' => public_path('storage'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', ],
Now open file .env and change or create the values as shown below;
Code:AVATAR_DIR=avatars SIGNATURE_DIR=signatures LOGOS_DIR=logos MEDIA_DIR=media
Goto Cronjob in cPanel or any other panel.anyone help me with cron job for share hosting?
Thank You. Its workingGoto Cronjob in cPanel or any other panel.
Add this below command for every minute.
curl "https://yourdomain.com/schedule-run"
wow... new problemanyone have solution for double message sending?
which type of message that sent double?anyone have solution for double message sending?
research or read over the thread before ask pleaseget method in API, Can send message with url https://yourdomain/send-message?api_key=xxx&number=xxx&sender=xxx&message=xxx
the solution is so simple, in case your url is "http://example.com", so just make sure to include all query as a mention on API, here the example for
http://example.com/send-message?api...ere&number=numberofclient&message=yourmessage
make sure you use standard API data Aray to make it work