*

MB Themes

Osclass 8.3.0 Beta Testing is Opened!
« on: March 14, 2025, 11:43:00 AM »
Refer this post for setup:
https://forums.osclasspoint.com/osclass/alpha-beta-testing-comments-feedback-questions/

Please provide your feedback, errors and problems as separate thread so it's possible to track it!

Before you start, it make sense to enable debugs into files so you catch problems (if ther are any). Add to your config.php:
Code: [Select]
define('OSC_DEBUG', true);             // show PHP error logs and notices
define('OSC_DEBUG_DB', true);          // show DB queries
define('OSC_DEBUG_LOG', true);         // save PHP errors & logs to oc-content/debug.log
define('OSC_DEBUG_DB_LOG', true);      // save DB logs into oc-content/queries.log

Here is changelog for v8.3.0:

Code: [Select]
Osclass 8.3.0
------------------------
- IMPORTANT: Osclass now fully supports PHP 8.3 & PHP 8.4 version.
- IMPORTANT: Many core osclass functions has been rewritten and optimized in order to reduce loops and unnecessary database queries.
  Osclass preload categories, cities, regions and countries to session and search directly here instead of doing extra DB calls (only if amount of data is acceptable).
  Massive optimization of functions and queries to preserve results in session & cache and reduce amount of database queries.
- IMPORTANT: Added brand new feature that allows users to filter items on their user items page & user public profile page.
  Majority of standard search parameters are supported.
  Comes with friendly canonical URL features.
  Set of new functions has been added into models, helpers and controllers to support this feature.
- IMPORTANT: Optimization of search URL and osc_search_url() function:
  Order column dt_pub_date will not be included in url anymore as it's default order column.
  Order type DESC will not be included in url anymore as it's default sort.
- IMPORTANT: Major feature "Custom search rules" has been added into Settings > Permalinks.
  It is now possible to create 26 custom search rules based on params those are active in search.
  These rules can be strict or fuzzy - accepting also params not specified in rule settings.
  There is full support for plugin/theme custom parameters and custom field parameters (meta) as well.
  Custom search rules are fully compatible with subdomains.
  Custom rules has top priority above canonical rules. Rules are prioritized (Z - top priority, A - lowest priority)
  Examples:
    > {sCity}/{sCategory} -> /a/bremen/for-sale
    > {sRegion}/{sCity}/{sCategory} -> /b/alabama/bremen/for-sale
    > cat:{sCategory}/city:{sCity}/min-{sPriceMin}-eur -> /c/category:for-sale/city:bremen/min-55-eur
  Examples with fuzzy logic, where extra params are enabled:
    > {sCity}/{sCategory} with {sRegion} -> /a/bremen/for-sale/region,alabama
    > {sRegion}/{sCity} with {sCategory} and {sShowAs} -> /b/alabama/bremen/category,for-sale/view,grid
  This feature is for advanced users and improper setup can cause unexpected behaviour!
- IMPORTANT: Osclass now supports EMOJI!
  This includes change in connection, database and table charset. All these are changed by Osclass upgrade, but read carefuly!
  Some tables those has foreign key to table t_locale cannot be automatically converted and must be done manually by user that is looking for Emoji support.
  These are for example pages, category and user description tables and keywords table (Item description is converted by Osclass).
  For new installations, everything is created in charset utf8mb4, collate utf8mb4_unicode_ci.
  In case your DB would not support this charset/collate, you must migrate to one that supports it!
- Canonical search URL as combination of category_city and category_region, that has been using underscore as delimiter, is now configurable via SEARCH_URL_CANONICAL_DELIMITER constant.
  Default value of SEARCH_URL_CANONICAL_DELIMITER has been changed to ":".
- Added option on search page to apply pattern in search without locale restriction.
  Means search works on all item title & descriptions no matter what is user locale.
- IMPORTANT: New interface to browse, search and manage logs has been added into Backoffice > Tools > Action logs.
  Note that Osclass was always collecting logs and if logs are collected or not and if logs are automatically cleaned or not, was never available in Osclass.
  Admin is now able to enable/disable logging in Settings > General, setup automatic cleanup by daily cron and define retention policy (ie remove logs after 24 months).
  It is possible to remove single log, cleanup all old logs (in Tools > Data Cleanup) and search in action logs.
  Logs were also enriched with comment and detail fields those will be populated in future, when needed.
  We strongly recommend to every admin, check your logs, update settings and drop old logs those are not required at all - it may lot of database space and optimize performance.
- IMPORTANT: Alerts - subscriptions major improvements.
  Users can now change alerts frequency in user account area.
  Added extra fields like params, sql and trigger count, in general more options and details in backoffice.
  Improved trigerring of alerts, statistics capturing, search page url for alert, search title and more.
- Improvements to cron commands and it's parameters. You can now define following params:
  force - to run cron even it's not right time yet - for easier debugging. In this case type of cron must be specified! It will accept &type=all as well. Only available for logged-in admin.
  print - to print summary of cron to see if everything was OK. Only available for logged-in admin.
  type - or cron-type - both params are OK to specify which type of cron to run. New type "all" is supported if force=1.
  Sample URL: https://yourpage.com/index.php?page=cron&type=daily&force=1&print=1
- Enhanced search features in Backoffice > Users.
  Added search by phone and ZIP, by default search is now wildcard and supports exact match by using double quotes.
- Enhancements with TinyMCE in backoffice + design updates especially for fullscreen mode.
  Refactor of image uploader script.
  Images from clipboard can now be added for items as well now (same as for static pages & widgets) - only from backoffice!
- New features for Ban Rules:
  Hits - show number of hits for each ban rule. Each time ban rule is triggered, +1 hit is counted.
  Expire date - it is now possible to set expiration date for bans. Once expired, it is not applied anymore.
- Widget will now be wrapped into div with class widget and additional html attributes.
  To support widget customizations, new filter widget_content and widget_content_wrap has been added as well.
  Widgets now support paste image from clipboard.
- Enhanced category record management on listing & search page - reusing one from model instead of quering category table multiple times.
- Enhancements to osc_item_category_price_enabled function, besides that new functions created: osc_item_category_row, osc_premium_category_row, osc_premium_category_price_enabled.
- Added new filters for canonical URLs for easier support and customizations.
- New option to Enhance canonical tags, by using default language code in canonical URLs, removing pagination parameter, sorting parameters etc.
  With enhance canonical url disabled: https://website.com/de-DE/search/sOrder,i_price/iOrderType,asc/category,1
  With enhance canonical url enabled: https://website.com/en-US/category-one-slug
- Sigma theme: Sort option dt_pub_date desc (default) will now not be included in search filters.
  This change means that for default sort type, search URL get nicer without redundant parameters.
  Numerous design improvements and fixed.
  When price is disabled in category, price will be hidden everywhere in theme.
  Enhanced design for header - my account & logout, added user profile image as well.
- Function osc_user_public_profile_url() got 2 updates:
  Added 2nd parameter $user where is possible to pass user array and avoid extra database call.
  Added 3rd parameter $mode that supports "username" and "id" values. "username" is default, means that username will be used in public profile URL.
- Item views (stats) can now be set to count 1 view per page load or 1 view per session.
  Added item views into Sigma item page (below description).
- Expiration date of listing in backoffice has been moved below category and is now much easier to manage.
  Besides that, it is now possible to update item publish date as well.
- New function osc_get_theme_hook_compatibility() to get hooks compatibility from theme.
- New set of functions for Search model to easily remove location from search conditions. Added new function addZip to search by ZIP code.
- New hooks for structured data.
  Default structured data rating value (in case no comments exists) is now set to 3 instead of 0.
- User public profile page - it is now possible to enable public profile just for company users or all registered users.
  Added new configuration parameter to user settings to set minimum number of items, that users must have published to have public profile enabled.
  If user does not meet requirements on public profile page, it shows 404 page instead.
- New features in Appearance > Customization:
  Added new customization field "Custom Javascript", where customized javascript functions and codes can be placed. Content is placed between script tags.
  It is now possible to select hook to be used to show content in front office.
- Added new options to manage and clean latest searches. Besides hourly, daily and weekly, it's possible to purge latest searches also monthly and yearly.
- Created new function osc_get_user_row($id), osc_get_item_row($id), osc_get_category_row($id), osc_get_country_row($code), osc_get_region_row($id), osc_get_city_row($id), osc_get_locale_row($code), osc_get_currency_row($id) that retrieve object from database and save it into session to reduce number of DB queries.
- Improvements in Tools > Import Data:
  Now error message with code is shown in case import to database fail.
  Added support for variables /*TABLE_PREFIX*/ and /*LOCALE_CODE*/.
- TinyMCE editors has now much more features & options in backoffice that can be especially useful on static pages (no change in front-office).
- It is possible now to change user registration date from backoffice.
- It is now possible to stop mail sending via pre_send_mail_filter filter (if returns array('stop' => true)). Besides that function osc_sendMail now has 2nd optional parameter $type.
- Improvements to various functions & design across Osclass.
- Permalinks configuration page in backoffice has been redesign and is now much more intuitive.
- Major enhancements to installation process especially in case something is not supported or installation is failing.
  Improved installation error messages - from database - to provide more details.
- Default jQuery version is now 3.x (does not impact existing installations - only new).
- Fixed alerts bulk actions functionality.
- Fixed bulk action translations in backoffice.
- Function osc_query_items() now supports much more custom parameters and conditions.
- Added hooks user_recover_form and user_forgot_password_form.
- Added "Lookup IP" link into backoffice. It's possible to configure lookup IP service in config.php as constant IP_LOOKUP_SERVICE.
  By default IP_LOOKUP_SERVICE = https://whatismyipaddress.com/ip/{IP_ADDRESS}, where {IP_ADDRESS} is variable replaced by Osclass.
- Fixes and improvements to latest search functions.
- Fixed bug on search page, pagination, RLT (Arabic) languages, category search page - page 2 and higher was returning 404. This is now resolved.
- Fixed bug with category cascading drop downs, when there was more than 4 levels, it might result in incorrect behaviour when chaning categories.
- Fixed bug when native location names were not applied on regions/cities loaded via ajax.
- Fixed bug with latest searches purge by number of queries.
- Created new helper file for currency functions.
- AjaxUploader was updated to be able to work with it from plugins/themes side not just to upload item images.
- Cache features (memcache, memcached, redis, ...) are now completely disabled in backoffice.
- Improvements to backoffice top toolbar design.
- Added more options to work and control flash messages. New filters enables full control over adding and showing flash messages. Now messages has also keys and raw text.
- Improvements of market section in backoffice. It is now possible to filter products with expired support. These also get red background. Besides that expired products show price for extension, not full price.
- Instant alerts (subscriptions) are now executed with minutely cron (before not executed at all).
- Improvements to Uppy.io image uploader and it's compressor plugin. It is now possible to enable "optimize uploaded images" in media settings to compress original uploaded images (temp folder) and reduce it's dimension.
- Search page no longer use noindex,nofollow tags as canonical URL should always be provided.
- Refactor of breadcrumbs code, fixing bug with possibly wrong region and added country to search page breadcrumbs.
- Improved checks (for view counts and "mark item as") if visitor is real user or bot. Introduced new function osc_visitor_is_real_user() that unify checks.
- Change in Search class for subdomains - by default, if not explicitely disabled in constructor, every Search class object will get subdomain conditions & filters auto-applied.
  Means, if you are on country-based subdomain, Search class by default filter listings for this country only. Same for Region, City, User and Category.
- Redesigned function osc_subdomains_filter_conditions($item_table = '') to simplify it's usage in order to apply subdomain conditions and filters.
  New functions create to support this:
  > osc_subdomains_filter_to_search($mSearch, $item_table = '') - use on Search object to instantly apply correct conditions.
  > osc_subdomains_filter_to_dao($object, $item_table = '') - use on DAO object to instantly apply correct conditions.
  It is possible to apply subdomain filters on listing search just by running 'custom_item_query' hook on specific DAO query.
- Premium views (stats) are now not counted only if user is not admin, is real visitor and is not owner of premium listing.
- Added support for attachments in web contact form of Sigma theme.
- Enhanced attachment check when uploading files to contact form. Added file validation to item contact form attachments (mime type).
- Item expiration notification has been enhanced. It is now possible to set notification 0 days before expiration (-1 to disable). Query getting expiring items has been optimized and redesigned.
- Sigma theme function osc_uploads_url defined in functions.php must be removed or renamed! It is clashing with core Osclass function and might cause logo not to be correctly displayed. Rename it or update Sigma manually.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

MB Themes

Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #1 on: March 14, 2025, 11:43:06 AM »
FYI - no action needed on this, just info.
List of all database queries from upgrade process:
Code: [Select]
REPLACE INTO oc_t_preference (s_name, s_value, s_section, e_type) VALUES ('update_core_json', '', 'osclass', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'search_pattern_locale', '1', 'BOOLEAN');
INSERT INTO oc_t_preference VALUES ('osclass', 'item_stats_method', 'SESSION', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'user_public_profile_enabled', 'ALL', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'user_public_profile_min_items', 0, 'INTEGER');
INSERT INTO oc_t_preference VALUES ('osclass', 'enhance_canonical_url_enabled', '1', 'BOOLEAN');
INSERT INTO oc_t_preference VALUES ('osclass', 'custom_css_hook', '', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'custom_html_hook', '', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'custom_js', '', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'custom_js_hook', '', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'optimize_uploaded_images', '1', 'BOOLEAN');
INSERT INTO oc_t_preference VALUES ('osclass', 'logging_enabled', '1', 'BOOLEAN');
INSERT INTO oc_t_preference VALUES ('osclass', 'logging_auto_cleanup', '0', 'BOOLEAN');
INSERT INTO oc_t_preference VALUES ('osclass', 'logging_months', 24, 'INTEGER');
ALTER TABLE oc_t_ban_rule ADD i_hit INT DEFAULT 1 AFTER s_email;
ALTER TABLE oc_t_ban_rule ADD dt_expire_date DATE DEFAULT NULL;
ALTER TABLE oc_t_alerts ADD s_name VARCHAR(255) AFTER pk_i_id;
ALTER TABLE oc_t_city_area ADD fk_i_region_id INT(10) UNSIGNED NULL AFTER fk_i_city_id;
ALTER TABLE oc_t_city_area ADD fk_c_country_code CHAR(2) NULL AFTER fk_i_region_id;
ALTER TABLE oc_t_city_area ADD s_name_native VARCHAR(60) NULL AFTER s_name;
ALTER TABLE oc_t_city_area ADD s_slug VARCHAR(60) NOT NULL DEFAULT "" AFTER s_name_native;
ALTER TABLE oc_t_city_area ADD b_active TINYINT(1) NOT NULL DEFAULT 1 AFTER s_slug;
ALTER TABLE oc_t_city_area ADD d_coord_lat DECIMAL(20, 10) AFTER b_active;
ALTER TABLE oc_t_city_area ADD d_coord_long DECIMAL(20, 10) AFTER d_coord_lat;
ALTER TABLE oc_t_city_area ADD INDEX fk_i_region_id (fk_i_region_id);
ALTER TABLE oc_t_city_area ADD INDEX fk_c_country_code (fk_c_country_code);
ALTER TABLE oc_t_city_area ADD INDEX idx_s_name_native (s_name_native);
ALTER TABLE oc_t_city_area ADD INDEX idx_s_slug (s_slug);
ALTER TABLE oc_t_city ADD INDEX idx_s_name_native (s_name_native);
ALTER TABLE oc_t_region ADD INDEX idx_s_name_native (s_name_native);
ALTER TABLE oc_t_country ADD INDEX idx_s_name_native (s_name_native);
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order', 'order', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order_type', 'sort', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order_by_price', 'price', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order_by_pub_date', 'pub-date', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order_by_relevance', 'relevance', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order_by_expiration', 'expiration', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_order_by_rating', 'rating', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_price_min', 'price-min', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_price_max', 'price-max', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_with_picture', 'with-picture', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_premium_only', 'premium-only', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_with_phone', 'with-phone', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_show_as', 'view', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_page_number', 'pn', 'STRING');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_custom_rules_enabled', '0', 'BOOLEAN');
INSERT INTO oc_t_preference VALUES ('osclass', 'rewrite_search_custom_rules_strict', '1', 'BOOLEAN');
ALTER TABLE oc_t_log ADD s_detail TEXT NULL AFTER s_data;
ALTER TABLE oc_t_log ADD s_comment VARCHAR(512) NULL AFTER s_detail;
ALTER TABLE oc_t_log ADD INDEX idx_s_section (s_section);
ALTER TABLE oc_t_log ADD INDEX idx_s_action (s_action);
ALTER TABLE oc_t_alerts ADD s_param VARCHAR(1000) AFTER s_search;
ALTER TABLE oc_t_alerts ADD s_sql VARCHAR(1000) AFTER s_param;
ALTER TABLE oc_t_alerts ADD i_num_trigger INT(10) DEFAULT 0 AFTER e_type;
ALTER TABLE oc_t_alerts MODIFY s_search TEXT;
ALTER DATABASE osclass_db DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;
ALTER TABLE oc_t_item_description CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE oc_t_item_comment CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE oc_t_item_meta CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE oc_t_widget CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE oc_t_preference CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE oc_t_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
REPLACE INTO oc_t_preference (s_name, s_value, s_section, e_type) VALUES ('version', 830, 'osclass', 'STRING');
REPLACE INTO oc_t_preference (s_name, s_value, s_section, e_type) VALUES ('admin_theme', 'omega', 'osclass', 'STRING');
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

tomi327

  • ***
  • 68 posts
Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #2 on: March 15, 2025, 06:20:47 AM »
Woow...great job.  ;)

Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #3 on: March 17, 2025, 04:49:11 AM »
Thank you!

*

mwindey

  • *****
  • 496 posts
Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #4 on: March 19, 2025, 01:32:30 PM »
Looks like i have no errors on this version so great work! :D

*

MB Themes

Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #5 on: March 22, 2025, 08:04:57 AM »
You will find something no worry....but there is so much changes that it may take time  ;)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

morpheus93

  • **
  • 10 posts
Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #6 on: March 26, 2025, 08:15:41 PM »
Is it recommended to directly start out with a beta version like the latest 8.3.0 or is it to risky to set up a new classifieds site with this one and better stick to the latest release version?

And should all addons and themes from older versions work with this latest beta or are there any points to keep in mind?

*

MB Themes

Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #7 on: March 27, 2025, 03:58:41 PM »
Safer to start with 8.2.1 and update 8.3 once it's ready
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Wiz

  • ****
  • 164 posts
Re: Osclass 8.3.0 Beta Testing is Opened!
« Reply #8 on: March 31, 2025, 09:05:43 PM »
Great job with osclass 8.3  8) addresses many old stagnant issues though not all. I hope to see plugin search integration with core search as this is a pain area.

Keep it up!
« Last Edit: March 31, 2025, 09:10:31 PM by Wiz »