TruelySell - On-demand Service Marketplace, Nearby Service Finder and Bookings (Web + Android + iOS)
Nullifié 

TruelySell - On-demand Service Marketplace, Nearby Service Finder and Bookings (Web + Android + iOS) 2.4.4 Nulled

Vous n'avez pas l'autorisation de télécharger
  • Auteur du fil de discussion Auteur du fil de discussion Boooob
  • Date de début Date de début
Lv.6
Bronze Member
Inscrit(e) le
Oct 9, 2021
Messages
156
Score de réaction
1,002
Credits
$228
Boooob submitted a new resource:

TruelySell - On-demand Service Marketplace, Nearby Service Finder and Bookings (Web + Android + iOS) - TruelySell provides a multiple on-demand service based on nearby locations

preview%20%20banner.jpg



Read more about this resource...
 
v2.3.0 Untouched
01 September 2023

Rich (code BB):
Web Application-Fixed : Payment Gateway issues.
-Fixed : Console error.
-Fixed : Chat issue.
-Fixed : Notification - pagination and delete issue.
-Fixed : Delete Account page design.
-Fixed : Bug fixing.
IOS:
- Fixed : Email login bugs fixed
- Fixed : Notification list Updation
- Fixed : APNS notification Updation
Android:
-Added : Chat With Emoji
-Added : Delete Account
-Fixed : Subscription Changes
-Fixed : Theme Change Issue.
-Fixed : Add service issue.
-Fixed : Forgot Password Issue.
-Fixed : Design Issues
-Fixed : Bug fixing.
-Fixed : Service List Reload Issue

Le contenu de ce bloc masqué est accessible uniquement aux membres des groupes suivants : Administrative, Moderating
 
thanks to dear member updated TruelySell - On-demand Service Marketplace, Nearby Service Finder and Bookings (Web + Android + iOS) with a new update entry:

01 September 2023

Web Application-Fixed : Payment Gateway issues.
-Fixed : Console error.
-Fixed : Chat issue.
-Fixed : Notification - pagination and delete issue.
-Fixed : Delete Account page design.
-Fixed : Bug fixing.

IOS:

- Fixed : Email login bugs fixed
- Fixed : Notification list Updation
- Fixed : APNS notification Updation

Android:

-Added : Chat With Emoji
-Added : Delete Account
-Fixed : Subscription Changes
-Fixed : Theme Change Issue.
-Fixed : Add service issue.
-Fixed : Forgot Password Issue...

Read the rest of this update entry...
 
Tested:
web script have bug ,can not run it with php 8.0 for backend,only php 7.4 ,but this script composer was request php8.0
sql have bug was fixed.and now you can use new database for save time

1. import database.
2.change application/config/config.php with your information
3.some hosting can not support session file,you need change it with
$config['sess_save_path'] = "storage/cache";
demo sql in here



demo sql backend information

2023-09-211925510013.jpg

2023-09-211929440014.jpg

2023-09-211930100015.jpg
 
Dernière modification par un modérateur:
1.php was request 8.1 .but lots of issue ,like admin/dashboard
2. if you are touch 500 issue for .htaccess auto update to new like
error demo:
Code:
RewriteEngine On
RewriteBase
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

right demo:
Code:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

you need to disable auto update in file
application/config/config.php
from
PHP:
$rule = $folder_name.'index.php [L]';
$data = <<<EOF
RewriteEngine On
RewriteBase $folder_name
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . $rule
EOF;
file_put_contents('.htaccess', $data);

to
PHP:
$rule = $folder_name.'index.php [L]';
$data = <<<EOF
RewriteEngine On
RewriteBase $folder_name
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . $rule
EOF;
//file_put_contents('.htaccess', $data);
 
Haut