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

No permission to download
v2.3.0 Untouched
01 September 2023

Rich (BB code):
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

Content of this hidden block can only be seen by members of: 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


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 databse.
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

View attachment test14_20230921_193646.zip

demo sql backend information





 
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);