HTML TemplatesFlash TemplatesWordPress ThemesDrupal Themese107 ThemesFree Joomla TemplatesXOOPS ThemesphpBB StylesFree SMF ThemesMagento ThemesOpenCart ThemesosCommerce TemplatesPrestaShop TemplatesVirtueMart TemplatesZen Cart TemplatesTumblr Themes
Website Templates | Coupons | Blog | News | Reviews | Tutorials | Login

News

Error message

  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->fetch_data() (line 1536 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->fetch_data() (line 1536 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).
  • User warning: ./cache is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable. in SimplePie->init() (line 1369 of /home/wf/themebot.com/a/simplepie/library/SimplePie.php).

2024 Update - Site Sunset

I will soon lock down the b2evolution.net site. It will become read only and neither you nor me will be able to post new content to it.

  • I will keep the read-only site up for reference for as long as practical. I might convert it to all static pages at some point (and still retain the content).
  • I will post future updates on stateoftheevolution.com.
  • You may continue to discuss issues on GitHub.

Original post blogged on b2evolution.

Read more...

Posted July 10, 2024 | 2:51 pm

View all b2evolution News...

Drupal 11.1.0 is now available

New in Drupal 11.1

The first feature release of Drupal 11 improves the recipe system, introduces support for hooks written as classes, makes Workspaces more flexible and enhances performance.

Recipe system improvements

The Recipe system allows packages to be configured with dependencies in a repeatable way. Drupal 11.1 now allows recipes to take user input (for example, API keys for remote services). Recipes can now also use configuration actions to add new blocks, enable layout builder for content types, clone configuration entities, and so on.

Hooks can be written as classes

Drupal's unique hook system allows modifying forms, data updates, site processes, render structures, and even the ordering of other hooks. After long-running efforts by many contributors, it is now possible to also define hooks and hook implementations with object-oriented techniques that are more in line with modern PHP code design practices. This will also make Drupal's code easier to understand for PHP developers familiar with other projects. All runtime core hooks have been converted to object-oriented implementations.

With this new functionality, magic global functions like the following will no longer be needed:

function hook_entity_insert(EntityInterface $entity) {
 // DO STUFF
}

Instead, developers can use the new Hook attribute on methods:

class ExampleHooks {

 #[Hook('entity_insert')]
 public function entityInsert(EntityInterface $entity): void {
  // DO STUFF
 }
}

New icon management API

A dedicated API has been added to allow modules and themes to define icon packs. Within each pack is a series of icons each with a unique identifier that the system can then use. Modules and themes can alter icon packs.

Workspaces user interface separated into its own module

As part of a larger plan to use workspaces for content moderation, the user interface of the Workspaces module was moved to a separate Workspaces UI module. For new sites, if you want to enable Workspaces with the user interface, you now need to install this module.

Improvements to the initial experience after installation

We revisited Drupal core's default configuration to better reflect most user's needs. In this release, date formats were made easier to read. The user registration process also now defaults to administrator-created accounts, in order to avoid new sites being flooded with spam accounts in the moderation queue. When creating a new node type, Drupal core will no longer automatically add a body field, allowing site builders to choose their own content model without having to delete defaults they don't want first and reducing potential conflicts for platforms built on Drupal core such as Drupal CMS and the upcoming Experience Builder.

New views entity reference filter

A new generic entity reference views filter has been added, which makes it possible to render exposed views filters as a select list or autocomplete of available entities. This may now be used by contributed modules and will be enabled for core entity types in future releases.

Render caching for forms

Forms built with form API can now opt-in to render caching, improving page loading performance in a variety of situations. We will be gradually opting forms into Drupal core into render caching, and may opt-in all forms to render caching by default in a future major release.

Improved browser and CDN caching for JavaScript and CSS

Drupal's asset aggregation algorithm has been improved to reduce variation in CSS and JavaScript aggregates. Differences between pages which may have produced different but similar aggregates in the past, for example because libraries were requested in a different order, will now result in a single file instead. This improves CDN cache hit rates and reduces the amount of JavaScript and CSS that visitors will download when visiting multiple pages on a site. This builds on several previous recent improvements to Drupal core's asset aggregation since Drupal 10.1 and also unblocks further improvements which are planned for future minor releases.

PHP 8.4 is supported

The PHP team is doing a fantastic job of improving the language and performance of PHP. PHP 8.4 was released in November, and Drupal 11.1 fully supports it.

Drupal CMS 1.0 will be based on Drupal 11.1

Drupal 11.1 will be the basis of Drupal CMS 1.0, which will be released on January 15 on Drupal's 24th birthday. Many of the underlying improvements introduced in Drupal core will help compose an improved user experience in Drupal CMS. The first release candidate of Drupal CMS was already based on Drupal 11.1 RC. Stay tuned!

Drupal 10.4 will be available soon

The next Long-Term Support (LTS) release of Drupal 10 will be released this week. Drupal 10 will be supported until the release of Drupal 12 in mid- to late 2026. Long-Term Support for Drupal 10 is managed with a new maintenance minor release every 6 months that receives twelve months of support. This allows the maintenance minor to adapt to evolving dependencies. And it gives more flexibility for sites to move to Drupal 11 when they are ready.

The same will happen when Drupal 10 is end-of-life and Drupal 12 is released: Drupal 11 will transition to Long-Term Support, with its own maintenance minors every six months. This release schedule allows sites to move from one LTS version to the next if that is the best strategy for their needs..

Core maintainer team updates

Since Drupal 11.0, Adam Hoenich has stepped down from being a Migrate subsystem maintainer as he moved on to be a key committer for Drupal CMS. We thank Adam for his contributions!

Want to get involved?

If you are looking to make the leap from Drupal user to Drupal contributor, or you want to share resources with your team as part of their professional development, there are many opportunitzies to deepen your Drupal skill set and give back to the community. Check out the Drupal contributor guide. You are more than welcome to join us at DrupalCon Atlanta in March 2025 to attend sessions, network, and enjoy mentorship for your first contributions.

Read more...

Posted December 16, 2024 | 9:50 am

View all Drupal News...

e107 v2.3.3 Bootstrap CMS Released

The wait is finally over! e107 v2.3.3 Bootstrap CMS is finally out. This marks the last release that will support PHP 5.6.
This release supports all versions of PHP from 5.6 through to 8.2.

Enjoy!

Features

  • Add missing setMetaTitle() method to e_admin_response #5112
  • Change length of newsfeed_image field in db #5108
  • Add option to alt_auth plugin #5107
  • Improve system notifications handling in the admin area. #5106
  • Display current time when settings timezone in admin preferences. #5099
  • Add option to e_file::getRemoteFile() to prevent time out on larger files or slow connections. #5098
  • Allow developers to choose which fields to export in e107Export(). #5094
  • Render favicon in admin area the same way as on frontend #5062
  • Add option to email any critical error message to an admin #4986
  • Add {NEWS_MODIFIED} shortcode for modified date #4978
  • Add FontAwsome 6 support #4969
  • Add support for PUT or JSON POST to e_file::initCurl() method #4941
  • Provide more options to resize the rich text editor. (bbarea, Tinymce) #4927
  • Allow plugins to provide their own routing for notifications. #4922
  • Allow plugins to use their own email templates when using e107::getEmail()->sendEmail(); #4919
  • Improved Database SQL Verify page use of space by using 3 columns. #4907
  • Admin-UI: Allow for entry of Primary ID in create/edit modes if needed. #4906
  • Enhance e107 to allow for third-party email address validation. #4900
  • Update plupload #4887
  • Add eventName to Featurebox like News #4841
  • Add dedicated Pages/Menus "delete" perms #4827
  • Allow plugins to create siteLinks in areas other than the main navigation. #4810
  • Exclude the currently viewed news item for the 'latest news' menu. #4786
  • Custom SEO title for News and Pages #4783
  • Add This Week, This Month and This Year to Admin-UI date filtering options. #4778
  • Allow developers to set the URL that users will be directed to after they log out #4777
  • Add support for images in plugin-generated sitemaps. #4760

Fixes

  • Comments without ajax issue #5111
  • Cron Schedule might not trigger with some timezones set in the preferences. #5096
  • Admin-UI: Using the label 'True' or 'False' in a select (dropdown) displays incorrect labels. #5093
  • Plugin Builder - Generated customPage method contains an error. #5092
  • Errors showing up in error_log when running cron. #5091
  • Admin-UI: renderValue() of type boolean ignores custom true/false readParm string values when inline editing is not enabled. #5089
  • activatejavascript.org as found in default header is a broken link #5087
  • Array order not being retained by x-editable inline dropdown/checkbox list. #5083
  • PHP 8.1 - Fatal error: Uncaught Error: Undefined constant "USERNAME" in ***ehandlersmail.php on line 451 #5080
  • "Force user to update settings" breaks home page for logged in users on PHP 8 #5052
  • An Admin with only "Quick Add User" permission can see all users and access inline edit for all #5045
  • Force user to update settings causes fatal error im PHP 8.2 #5041
  • sendEmail() may render an 'info' message "Could not access file:" under some circumstances. #5020
  • Emptying browser cache adds "Empty Thumbnail Cache" to the system logs. #5017
  • Admin-UI: Setting readonly=true for a field containing an array value, posts 'Array' in the form results. #5016
  • e107 corrupts form-submitted array values when GET method is used. #5005
  • Canonical URL is not consistent when parked domains are in use. #4994
  • Fatal errors - userposts.php - IMODE is not defined #4966
  • Banner plugin - banner_campaign is saving only first campain #4959
  • $_GET contains 'configure' key on all pages of admin area. #4945
  • Flexpanel layout is not working #4940
  • Cron 'Last-Run' value in admin area is always empty #4933
  • National characters in title are not converted to sef url correctly. #4925
  • sendMail() not using latest PHPMailer methods. #4924
  • data-modal-submit attribute fails when an input tag is used instead of a button tag #4923
  • Anomoly with some plugins losing their entry from e_url_list after upgrading others. #4917
  • FAQs - PHP 8 error #4916
  • Bootstrap-notify won't display alerts in admin area #4915
  • Wrong HTML markup for date field in advanced search #4904
  • PHP 8 - Fatal error LAN_PLUGIN_DOWNLOAD_NAME in comment's search #4890

User Contributions

  • Bump guzzlehttp/guzzle from 7.4.3 to 7.4.4 in /e107_tests by @dependabot #4791
  • Bump guzzlehttp/guzzle from 7.4.4 to 7.4.5 in /e107_tests by @dependabot #4796
  • Some corrections by @yesszus #4788
  • 4844: File Inspector: Do not traverse above the base directory by @Deltik #4845
  • 4830: Sensible no delete log in admin_log_ui::maintenanceProcess() by @Deltik #4831
  • Add support for wrappers in contact menu by @Jimmi08 #4850
  • Fix for #4860 and correct fix for #3983 - correct second authorization by @Jimmi08 #4864
  • Login flow consistency: Do not use redirect in admin area login box by @Deltik #4865
  • sef-url for RSS news - category news #4868 by @Jimmi08 #4870
  • Add support for wrapper in custom menus by @Jimmi08 #4873
  • Bump twig/twig from 3.4.1 to 3.4.3 in /e107_tests by @dependabot #4877
  • Fix #4847 - mistypo in route by @Jimmi08 #4882
  • add wrapper support on fpw page #4883 by @Jimmi08 #4884
  • Fix for #4895 - wrong message chatbox plugin by @Jimmi08 #4896
  • 4897 class parameter for CB_AVATAR shortcode by @Jimmi08 #4898
  • Tests: MDEV-29446 workaround: Ignore COLLATE clause in SHOW CREATE TABLE by @Deltik #4913
  • Hotfix for tests failing after PHP 8.2 released by @Deltik #4921
  • missing national character from toAscii() by @Jimmi08 #4926
  • 4929: Fix type mismatch in usage of e107forum::getForumClassMembers() by @Deltik #4931
  • 4938: Workaround for PHP 8.2.0 segmentation fault / assertion error by @Deltik #4939
  • Reintroduce automated acceptance tests by @Deltik #4943
  • fix for ranks in top.php #4967 by @Jimmi08 #4975
  • Fix news category breadcrumbs by @RichardBarrell #4982
  • deprecated static::method() calls for PHP 8.2 by @Jimmi08 #4988
  • news: Fix category link in both breadcrumb and menu by @Deltik #4984
  • 4991: Fix improper array access in sc_signup_extended_user_fields by @Deltik #4993
  • Bump guzzlehttp/psr7 from 2.4.3 to 2.5.0 in /e107_tests by @dependabot #4995
  • partial fix #4517 - fix for settings of plugin.xml by @Jimmi08 #5029
  • Fix #5025: Type error when sending a PM without the attachment field by @Deltik #5027
  • Fix #5013 False Error if UEF type DBField has no records by @Jimmi08 #5014
  • fix #5031 for false error when deleting plugin DB field by @Jimmi08 #5032
  • Fix #4517 UEF settings in plugin.xml - fix for parms by @Jimmi08 #5033
  • Fix #5000 user profile UEF change added to event by @Jimmi08 #5036
  • fix for feed logo image #4866 by @Jimmi08 #5015
  • fix for type checkboxes and filtering #4474 by @Jimmi08 #5048
  • Missing preferences in bootstrap5 #4683 by @Jimmi08 #5058
  • db_verify::getIndex(): Support index_col_name optional parts by @Deltik #5055
  • Unify logic of e_user_model::checkAdminPerms() and getperms() by @Deltik #5070
  • install.php: PHP 8.2 exception handler signature compatibility by @Deltik #5073

New Contributors

  • @RichardBarrell made their first contribution #4982

Full Changelog: https://github.com/e107inc/e107/compare/v2.3.2...2.3.3


Read more...

Posted November 23, 2023 | 1:08 pm

View all e107 News...

Geeklog Plugins that Support v2.2.2

Here is a list of the latest plugins to receive updates since the release of Geeklog v2.2.2. Some of these plugins will require this version.

Please note, we will continue to add to this list as plugins are released.

Here is a list of updated plugins expected to be release in the next few months:

  • Downloads Plugin v1.2.3.1

These updated plugins support PHP 8.1 and also contain new features and bug fixes as well. Please visit the download page of the specific plugin to find out more information. The plugins above can also be found on Github in our Geeklog Plugins Repository.

For a list of plugins that where updated after Geeklog 2.2.1sr1 was released back in April 18 2020, please see the article titled: Geeklog Plugins that Support v2.2.1.

All of these older plugins will work with Geeklog v2.2.2 as well.

Developers if you have a plugin which supports Geeklog v2.2.2 which has not been included in the list above please comment on this article to give us more information, and we will add it in. Remember you can also submit an article (and upload the file) about your plugin and after review (and editing if required) we will post it on Geeklog.net.

Read more...

Posted October 3, 2022 | 6:38 am

View all Geeklog News...

View all Joomla News...

View all Nucleus News...

phpBB 3.3.14 Release

Greetings everyone,

We are pleased to announce the release of phpBB 3.3.14 “Bertie All Along”. This version is a maintenance release of the 3.3.x branch which introduces a number of improvements aimed at enhancing the user experience and overall stability of the software and resolves some issues noticed in previous releases.

The improvements include the introduction of separate lists for disabled and not installed Extensions in the ACP as well as the addition of the ability to force reparsing BBCodes via the command line interface (CLI).

We fixed an issue that resulted in AJAX errors when deleting cookies on some pages and added proper handling of E_USER_ERROR in PHP 8.4. Furthermore, an issue with occasionally incorrect results displaying in the trace permission feature and non-working pages when testing out user’s permissions have been resolved. Another issue that resulted in missing buttons for approving new topics or posts has also been fixed.

The full list of changes is available in the changelog file within the docs folder contained in the release package. You can find the key highlights of this release below and a list of all issues fixed on our tracker at https://tracker.phpbb.com/issues/?filter=16691

The packages can be downloaded from our downloads page.

The development team thanks everyone who contributed code to this release: rxu, Daniel James, Jeff Verkoeyen, Matt Friedman, battye

If you have any questions or comments, we'll be happy to address them in the discussion topic.

- The phpBB Team

Read more...

Posted November 20, 2024 | 7:59 am

View all phpBB News...

View all Plone News...

¿En qué consiste en desarrollo web con PHP y MySQL?

Más del 50% de las webs que visitas están creadas con PHP y MySQL. Si tienes curiosidad acerca de cómo estas dos tecnologías se integran

Read more...

Posted January 4, 2023 | 7:29 am

View all PHPNUKE News...

Re: Forum Not Appearing after changing DNS

Just checked, if you're running SMF version earlier than 2.0.19 you'll get the Subs.php error in php 8.2.  You'll need to upload a clean set of 2.0.19 files, or upgrade to 2.1.4, or drop your php version to 7.4.

Read more...

Posted January 25, 2025 | 8:13 pm

View all SMF News...

Joost/Karim Fork

Making great software, great product that stands the test of time and not just survives but thrives through monumental technological shifts is incredibly hard. That challenge is part of the reason I love doing it. There is never a dull day, and the reward of seeing the code you wrote used by the most amazing […]

Read more...

Posted January 10, 2025 | 6:06 pm

View all WordPress News...

XOOPS PHPMailer Security Patches Released

The XOOPS Development Team is pleased to announce the release of security patches for XOOPS 2.5.8 and XOOPS 2.5.7.2.

These patches includes the latest version of PHPMailer to address a serious vulnerability. All XOOPS users are encouraged to update as soon as possible.

Both full distributions and patch files (from the most recent prior release) for both the 2.5.7 and 2.5.8 series are available.

Any users that are running older XOOPS versions are advised to update to XOOPS 2.5.8.1 now.


Get XOOPS 2.5.8.1

Release files are available on GitHub.

The 2.5.8.1 files are also mirrored on the XOOPS File Repository on SourceForge

Get XOOPS 2.5.7.3

Release files are available on the XOOPS File Repository on SourceForge

Read more...

Posted January 1, 2017 | 12:51 am

View all XOOPS News...

About | Contact | FAQ | Privacy Policy | Terms of Use

© 2006-2025 überbytes LLC