• The default language of any content posted is English.
Zaiproty - Property Management Laravel Script

Zaiproty - Property Management Laravel Script 3.5 NULLED

The problem has been resolved
Successfully
i have hostinger vps tested it , the value is taken from .env first even if u fill the form the final value is from .env so fill the .env and complete the installation it went thru well just tested it for u
 
anyone facing error -

/profile
showing error on example.com/profile (- owner login)

showing error on SQLSTATE[42S22]: Column not found: 1054 Unknown column 'owners.logo_id' in 'on clause'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'owners.logo_id' in 'on clause'
 

Attachments

  • pro.png
    pro.png
    189.3 KB · Views: 11
anyone facing error -

/profile
showing error on example.com/profile (- owner login)

showing error on SQLSTATE[42S22]: Column not found: 1054 Unknown column 'owners.logo_id' in 'on clause'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'owners.logo_id' in 'on clause'
yea same here i just tested it
 

Changlog Version 3.3​

- Code Optimized
- Security and patch update.
- Issue fix.

Changlog Version 3.2​

- Code Optimized
- Security and patch update.
- Issue fix.

@raz0r

Post automatically merged:

Zaiproty - Property Management SAAS Addon​

Changlog Version 1.6​

- Custom package system(Property, Unist, Tenant wise)
- Security and patch update.
- Optimize & issue fix.
 

Attachments

  • Zaiproty SAAS Addon-1.6.zip
    33.6 KB · Views: 66

Changlog Version 3.3​

- Code Optimized
- Security and patch update.
- Issue fix.

Changlog Version 3.2​

- Code Optimized
- Security and patch update.
- Issue fix.

@raz0r

*** Hidden text: cannot be quoted. ***

Post automatically merged:

Zaiproty - Property Management SAAS Addon​

Changlog Version 1.6​

- Custom package system(Property, Unist, Tenant wise)
- Security and patch update.
- Optimize & issue fix.
Hello,
I installed version 3.3 without problems, working as expected. But I cannot install any of the addons such as the SAAS version here. I suspect that the addoncontroller need to be updated. I tried to make a few changes but no success. Did anybody here managed to install an addo'n, any suggestions will be appreciated.

Regards
Dana
 
My friends, I tried more than once Addon upload
But it doesn't work and I get this message
Attached is the picture
Please help solve this problem
Screenshot 2023-12-01 031542.png
Screenshot 2023-12-01 031511.png
 
Hello Engmohd
Make sure you have version 3.3 installed; you will get this message if you are on a version before 3.3.
Once you installed 3.3 and attempt to install an addon you will get this message:
Something went wrong. Please try again
I made changes to the code and replaced lines 23 to 100 in the AddonUpdateController.php with:
public function addonSaasFileStore(Request $request)
{
$request->validate([
'update_file' => 'bail|required|mimes:zip'
]);
set_time_limit(1200);
$path = storage_path('app/addons/' . $request->code . '.zip');
if (file_exists($path)) {
File::delete($path);
}
try {
$request->update_file->storeAs('addons/', $request->code . '.zip');
} catch (Exception $e) {
return $this->error([], $e->getMessage());
}
}
public function addonSaasFileExecute(Request $request)
{
if ($request->licenseStatus == 1) {
$request->validate([
'email' => 'required',
'purchase_code' => 'required'
]);
}
$purchase_code = $request->purchase_code;
$code = $request->code;
try {
$returnResponse = $this->addonSaasFileExecuteUpdate($code, $purchase_code, $request->email, $request->fullUrl());
if ($returnResponse['success'] == true) {
Auth::logout();
return $this->success([], __('Addon Installed Successfully'));
}
return $this->error([], json_encode($returnResponse['message']));
} catch (Exception $e) {
return $this->error([], $e->getMessage());
}
}
This message is from the following lines in the controller

214 throw new Exception('Something went wrong. Please try again');
215 break;


If anybody have any recommendations please let me know. The configuration.php code may need to be updated as well


Regards
Dana
 
I have a second problem in version 3.3 when adding units
Since I cannot add and the message appears attached to the picture

Screenshot 2023-12-01 235858.pngScreenshot 2023-12-01 235908.png
 
Hello Engmohd
Make sure you have version 3.3 installed; you will get this message if you are on a version before 3.3.
Once you installed 3.3 and attempt to install an addon you will get this message:
Something went wrong. Please try again
I made changes to the code and replaced lines 23 to 100 in the AddonUpdateController.php with:
public function addonSaasFileStore(Request $request)
{
$request->validate([
'update_file' => 'bail|required|mimes:zip'
]);
set_time_limit(1200);
$path = storage_path('app/addons/' . $request->code . '.zip');
if (file_exists($path)) {
File::delete($path);
}
try {
$request->update_file->storeAs('addons/', $request->code . '.zip');
} catch (Exception $e) {
return $this->error([], $e->getMessage());
}
}
public function addonSaasFileExecute(Request $request)
{
if ($request->licenseStatus == 1) {
$request->validate([
'email' => 'required',
'purchase_code' => 'required'
]);
}
$purchase_code = $request->purchase_code;
$code = $request->code;
try {
$returnResponse = $this->addonSaasFileExecuteUpdate($code, $purchase_code, $request->email, $request->fullUrl());
if ($returnResponse['success'] == true) {
Auth::logout();
return $this->success([], __('Addon Installed Successfully'));
}
return $this->error([], json_encode($returnResponse['message']));
} catch (Exception $e) {
return $this->error([], $e->getMessage());
}
}
This message is from the following lines in the controller

214 throw new Exception('Something went wrong. Please try again');
215 break;


If anybody have any recommendations please let me know. The configuration.php code may need to be updated as well


Regards
Dana
I still can't install the addon please assist me.
 
I have a second problem in version 3.3 when adding units
Since I cannot add and the message appears attached to the picture

View attachment 22917View attachment 22918
Run THIS QUERY IN YOUR DB
DROP TABLE IF EXISTS `property_units`;
CREATE TABLE `property_units` (
`id` bigint(20) UNSIGNED NOT NULL,
`property_id` bigint(20) UNSIGNED NOT NULL,
`unit_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bedroom` int(11) NOT NULL,
`bath` int(11) NOT NULL,
`kitchen` int(11) NOT NULL,
`square_feet` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`amenities` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`condition` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`parking` int(11) NOT NULL,
`description` varchar(800) COLLATE utf8mb4_unicode_ci NOT NULL,
`general_rent` decimal(12,2) DEFAULT '0.00',
`security_deposit_type` tinyint(4) DEFAULT '0',
`security_deposit` decimal(12,2) DEFAULT '0.00',
`late_fee_type` tinyint(4) DEFAULT '0',
`late_fee` decimal(12,2) DEFAULT '0.00',
`incident_receipt` decimal(12,2) DEFAULT '0.00',
`rent_type` tinyint(4) DEFAULT NULL COMMENT '1=monthly,2=yearly,3=custom',
`monthly_due_day` int(11) DEFAULT NULL,
`yearly_due_day` int(11) DEFAULT NULL,
`lease_start_date` date DEFAULT NULL,
`lease_end_date` date DEFAULT NULL,
`lease_payment_due_date` date DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
 
anyone facing error -

/profile
showing error on example.com/profile (- owner login)

showing error on SQLSTATE[42S22]: Column not found: 1054 Unknown column 'owners.logo_id' in 'on clause'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'owners.logo_id' in 'on clause'
Update this sql table with old table
 

Attachments

  • owners update.zip
    870 bytes · Views: 30
Run THIS QUERY IN YOUR DB
DROP TABLE IF EXISTS `property_units`;
CREATE TABLE `property_units` (
`id` bigint(20) UNSIGNED NOT NULL,
`property_id` bigint(20) UNSIGNED NOT NULL,
`unit_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`bedroom` int(11) NOT NULL,
`bath` int(11) NOT NULL,
`kitchen` int(11) NOT NULL,
`square_feet` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`amenities` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`condition` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`parking` int(11) NOT NULL,
`description` varchar(800) COLLATE utf8mb4_unicode_ci NOT NULL,
`general_rent` decimal(12,2) DEFAULT '0.00',
`security_deposit_type` tinyint(4) DEFAULT '0',
`security_deposit` decimal(12,2) DEFAULT '0.00',
`late_fee_type` tinyint(4) DEFAULT '0',
`late_fee` decimal(12,2) DEFAULT '0.00',
`incident_receipt` decimal(12,2) DEFAULT '0.00',
`rent_type` tinyint(4) DEFAULT NULL COMMENT '1=monthly,2=yearly,3=custom',
`monthly_due_day` int(11) DEFAULT NULL,
`yearly_due_day` int(11) DEFAULT NULL,
`lease_start_date` date DEFAULT NULL,
`lease_end_date` date DEFAULT NULL,
`lease_payment_due_date` date DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Thnx i will try it
Post automatically merged:

Update this sql table with old table
Thnx i will try it
 
Zaiproty – Property management Bulk SMS/Email Addon. The “SMS/Email Addon for Zaiproty” is an invaluable extension that empowers businesses to streamline their customer communication by sending bulk SMS and emails. Designed as an addon for the Zaiproty platform, this powerful tool offers a range of features to enhance messaging capabilities and foster stronger connections with customers. But remember that for this addon working you need Zaiproty – Property Management Laravel Script.
Hola, al instalarlo sale este mensaje "your code is not up to date" y no deja instalarlo.

Hello, when installing it, this message appears "your code is not up to date" and it won't let you install it.

1702265271083.png
 
Anyone else having an issue where the CSS just doesn't work? I am guessing its a config error at my side but I just can't figure it out :O
 
Top