- Posts: 17
- Thank you received: 0
OS Property support center
SOLVED !!! Fatal error: Class 'Folder' not found
- Yu Nakamura
- Topic Author
- Offline
- New Member
-
Less
More
8 years 8 months ago - 8 years 8 months ago #87198
by Yu Nakamura
SOLVED !!! Fatal error: Class 'Folder' not found was created by Yu Nakamura
on using OSProperty ver. 3.0.1, I met an error, saying:
At the line 4263,
should be
So do the line 4266, 4269.
Code:
Fatal error: Class 'Folder' not found in [my_public_html]/components/com_osproperty/classes/listing.php on line 4263
Code:
Folder::exists(...
Code:
JFolder::exists(...
Last edit: 8 years 8 months ago by Mr. Dam.
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
8 years 8 months ago #87199
by Mr. Dam
Replied by Mr. Dam on topic Fatal error: Class 'Folder' not found
Hi,
To solve the issue, you can follow these steps
1. Open file:
and change to
Good luck
Dam
To solve the issue, you can follow these steps
1. Open file:
2. Find:root > components > com_osproperty > classes > listing.php
Code:
if(! Folder::exists(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id)){
JFolder::create(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id);
}
if(! Folder::exists(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id.DS."thumb")){
JFolder::create(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id.DS."thumb");
}
if(! Folder::exists(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id."medium")){
JFolder::create(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id.DS."medium");
}
and change to
Code:
if(! JFolder::exists(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id)){
JFolder::create(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id);
}
if(! JFolder::exists(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id.DS."thumb")){
JFolder::create(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id.DS."thumb");
}
if(! JFolder::exists(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id."medium")){
JFolder::create(JPATH_ROOT.DS."images".DS."osproperty".DS."properties".DS.$id.DS."medium");
}
Good luck
Dam
Please Log in or Create an account to join the conversation.
- Yu Nakamura
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 17
- Thank you received: 0
8 years 8 months ago #87204
by Yu Nakamura
Replied by Yu Nakamura on topic Fatal error: Class 'Folder' not found
I have already fixed.
My post aimed to report the bug and the fix.
Anyway, thank you.
My post aimed to report the bug and the fix.

Anyway, thank you.
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
8 years 8 months ago #87207
by Mr. Dam
Replied by Mr. Dam on topic Fatal error: Class 'Folder' not found
This issue is also fixed in OS Property 3.0.1 (just released the patch some near days)
Thanks
Dam
Thanks
Dam
Please Log in or Create an account to join the conversation.
Moderators: Mr. Dam, Nguyen Phu Quan
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.