- IT Techhie ( 10 feeds / 1 sources )
- AMD launches Trinity APUs to take on Intel's Ivy Bridge - InfoWorld
- It's Official: Cellphone Owners Love Apple Hardware - Wired News
- Technology accessibility is improving, but big challenges lie ahead - Bangor Daily News
- Nvidia Makes the GPU Virtual - PCWorld
- Identive to Present Latest Trends in NFC Technology at NFC Solutions Summit - MarketWatch (press release)
- Pano Logic Transforms PCs Into Zero Client Desktops - MarketWatch (press release)
|
Pano Logic Transforms PCs Into Zero Client DesktopsMarketWatch (press release)The newest version of the Pano System also features enhanced security, incorporating RSA SecureID's two-factor authentication for Pano Remote users, further securing mobile employee access. The Pano Virtual Client creates an important new conversion ...and more » |
- Motorola Releases Latest Enhancements to its KreaTV Operating System for IPTV ... - The FINANCIAL
- Intel Launches New Generation of Secure Processors - eSecurity Planet
- Tizen Devices to Utilize Hardware of Samsung Galaxy S3 - Planet Insane
- Roundup: Apple MacBook rumors - CNET
- ... more feeds
- Joomla News ( 14 feeds / 5 sources )
- First Enterprise Migration of Drupal to Joomla! CMS - Virtual-Strategy Magazine
|
First Enterprise Migration of Drupal to Joomla! CMSVirtual-Strategy MagazineCNP Integrations is proud to present a new webinar and discussion focused their unique process for the migration of an enterprise Drupal portal to a Joomla! CMS. This webinar will offer an inside peak of the data migration and restructuring of content ...and more » |
- Students Contribute to Joomla! CMS Core and Platform During Google Summer of Code - MarketWatch (press release)
- Best Hosting For Joomla 2012 Announced By TCWH - Houston Chronicle
|
Best Hosting For Joomla 2012 Announced By TCWHHouston ChronicleThe leading web hosting review site Top-Cheap-Web-Hosting.com announces the Best Hosting for Joomla for 2012 based on the Joomla hosting compatibility, speed, reliability, technical support and price. The web hosting review site TCWH announces the Best ...and more » |
- joomla%%%% Man Utd vs Sunderland live Streaming Braclys Premier League soccer ... - RenewableEnergyWorld.com (blog)
- BlueHost Joomla Hosting Review Released By TCWH - San Francisco Chronicle (press release)
|
BlueHost Joomla Hosting Review Released By TCWHSan Francisco Chronicle (press release)TCWH releases the review for BlueHost Joomla hosting from the Joomla hosting compatibility, performance, reliability, technical support, and price. San Francisco, CA (PRWEB) April 28, 2012 The leading web hosting review site Top-Cheap-Web-Hosting.com ...and more » |
- Joomla plugin best practices - ITworld.com
|
Joomla plugin best practicesITworld.comITworld has 5 copies of Joomla! Programming to give to some lucky readers. Complete the form below for your chance to win! The most important thing about plugins is to know when to use them. That means understanding the events available in Joomla and ... |
- Joomla enters Google Summer of Code programme - ITWeb
- FREE stuff: Joomla programming book, database training, and more - ITworld.com
- Which CMS System Is Right for You? Take a Test Drive - OStatic (blog)
- 15 great Wordpress plugins for your site or blog - Crain's Chicago Business (blog)
|
15 great Wordpress plugins for your site or blogCrain's Chicago Business (blog)By Nick Harrison Having developed with CMSs (content management systems) ranging from Drupal, ExpressionEngine, Joomla, etc., I have grown to love Wordpress for its versatility, power and its community of developers. Wordpress allows small businesses ...and more » |
- ... more feeds
- PHP News ( 12 feeds / 4 sources )
- PHP 5.4.3 and PHP 5.3.13 Released!
The PHP development team would like to announce the immediate availability of PHP 5.4.3 and PHP 5.3.13. All users are encouraged to upgrade to PHP 5.4.3 or PHP 5.3.13The releases complete a fix for a vulnerability in CGI-based setups (CVE-2012-2311). Note: mod_php and php-fpm are not vulnerable to this attack.PHP 5.4.3 fixes a buffer overflow vulnerability in the apache_request_headers() (CVE-2012-2329). The PHP 5.3 series is not vulnerable to this issue.For source downloads of PHP 5.4.3 and PHP 5.3.13 please visit our downloads page, Windows binaries can be found on windows.php.net/download/. The list of changes are recorded in the ChangeLog. - PHP 5.3.12 and 5.4.2 and the CGI flaw (CVE-2012-1823)
PHP 5.3.12/5.4.2 do not fix all variations of the CGI issues described in CVE-2012-1823. It has also come to our attention that some sites use an insecure cgiwrapper script to run PHP. These scripts will use $* instead of "$@" to pass parameters to php-cgi which causes a number of issues. Again, people using mod_php or php-fpm are not affected. One way to address these CGI issues is to reject the request if the query string contains a '-' and no '='. It can be done using Apache's mod_rewrite like this: RewriteCond %{QUERY_STRING} ^[^=]*$ RewriteCond %{QUERY_STRING} -|\- [NC] RewriteRule .? - [F,L] Note that this will block otherwise safe requests like ?top-40 so if you have query parameters that look like that, adjust your regex accordingly.Another set of releases are planned for Tuesday, May, 8th. These releases will fix the CGI flaw and another CGI-related issue in apache_request_header (5.4 only).We apologize for the inconvenience created with these releases and the (lack of) communication around them. - PHP 5.3.12 and PHP 5.4.2 Released!
There is a vulnerability in certain CGI-based setups (Apache+mod_php and nginx+php-fpm are not affected) that has gone unnoticed for at least 8 years. Section 7 of the CGI spec states: Some systems support a method for supplying a [sic] array of strings to the CGI script. This is only used in the case of an `indexed' query. This is identified by a "GET" or "HEAD" HTTP request with a URL search string not containing any unencoded "=" characters. So, requests that do not have a "=" in the query string are treated differently from those who do in some CGI implementations. For PHP this means that a request containing ?-s may dump the PHP source code for the page, but a request that has ?-s&=1 is fine.A large number of sites run PHP as either an Apache module through mod_php or using php-fpm under nginx. Neither of these setups are vulnerable to this. Straight shebang-style CGI also does not appear to be vulnerable.If you are using Apache mod_cgi to run PHP you may be vulnerable. To see if you are, just add ?-s to the end of any of your URLs. If you see your source code, you are vulnerable. If your site renders normally, you are not.To fix this, update to PHP 5.3.12 or PHP 5.4.2. We recognize that since CGI is a rather outdated way to run PHP, it may not be feasible to upgrade these sites to a modern version of PHP. An alternative is to configure your web server to not let these types of requests with query strings starting with a "-" and not containing a "=" through. Adding a rule like this should not break any sites. For Apache using mod_rewrite it would look like this: RewriteCond %{QUERY_STRING} ^(-|-)[^=]+$ [NC] RewriteRule ^(.*) $1? [L] If you are writing your own rule, be sure to take the urlencoded ?-s version into account.Making a bad week worse, we had a bug in our bug system that toggled the private flag of a bug report to public on a comment to the bug report causing this issue to go public before we had time to test solutions to the level we would like. Please report any issues via bugs.php.net.For source downloads of PHP 5.3.12 and PHP 5.4.2 please visit our downloads page, Windows binaries can be found on windows.php.net/download/. A ChangeLog exists. - PHP 5.3.11 And PHP 5.4.1 Released!
The PHP development team announces the immediate availability of PHP 5.3.11 and PHP 5.4.1. These releases focuses on improving the stability of the current PHP branches with over 60 bug fixes, some of which are security related.Security Enhancements for both PHP 5.3.11 and PHP 5.4.1:Fixed bug #54374 (Insufficient validating of upload name leading to corrupted $_FILES indices). (CVE-2012-1172).Add open_basedir checks to readline_write_history and readline_read_history.Security Enhancement affecting PHP 5.3.11 only:Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831).Key enhancements in these releases include:Added debug info handler to DOM objects.Fixed bug #61172 (Add Apache 2.4 support).For a full list of changes in PHP 5.3.11 and PHP 5.4.1, see the ChangeLog. For source downloads please visit our downloads page, Windows binaries can be found on windows.php.net/download/.All users of PHP are strongly encouraged to upgrade to PHP 5.3.11 or PHP 5.4.1. - PHP 5.4.1RC2 Released for Testing
The PHP development team would like to announce the 2nd release candidate of PHP 5.4.1. Windows binaries can be downloaded from the Windows QA site. THIS IS A RELEASE CANDIDATE - DO NOT USE IT IN PRODUCTION! This is the 2nd release candidate. The release candidate phase is intended as a period of bug fixing prior to the stable release. The release candidate fixes a critical issue when using the internal classes in multiple threads. A complete list of changes since the last release candidate can be found in the NEWS file. Please help us to identify bugs in order to ensure that the release is solid and all things behave as expected by taking the time to test this release candidate against your code base and reporting any problems that you encounter to the QA mailing list and/or the PHP bug tracker. PHP 5.4.1 final will be released on April 26. - PHP migrates to Git
The migration of the PHP source code from Subversion to Git is complete. You can clone or fork the source from our GitHub mirror, and we also now support pull requests made via GitHub. The source is also available via git.php.net, and full instructions on cloning the php-src tree can be found at php.net/git. One immediate benefit is that future PHP release tags will be signed by the PHP development team. We will be releasing GPG keys for verification purposes in the next few days. More information on the migration and the new workflow can be found at the Moving to Git FAQ on the PHP Wiki. Please note that the PHP manual, including translations, continues to be hosted in Subversion for the time being and will be migrated to Git at a later date. Many thanks to David Soria Parra for his hard work on making the conversion to Git a reality, and to Alexander Moskaliov, Florian Anderiasch and Johannes Schlüter for their work on the scripts required to support the conversion. Let the forking begin! - PHP 5.4.0 released!
The PHP development team is proud to announce the immediate availability of PHP 5.4.0. This release is a major leap forward in the 5.x series, which includes a large number of new features and bug fixes. Some of the key new features include: traits, a shortened array syntax, a built-in webserver for testing purposes and more. PHP 5.4.0 significantly improves performance, memory footprint and fixes over 100 bugs. For users upgrading from PHP 5.3 there is a migration guide available here, detailing the changes between those releases and PHP 5.4.0. Further details about the PHP 5.4.0 release can be found in the release announcement, and the full list of changes are available in the ChangeLog. Please note that it may take a while until the release is available on all mirrors. - PHP 5.3.10 Released!
The PHP development team would like to announce the immediate availability of PHP 5.3.10. This release delivers a critical security fix.Security Fixes in PHP 5.3.10:Fixed arbitrary remote code execution vulnerability reported by Stefan Esser, CVE-2012-0830.All users are strongly encouraged to upgrade to PHP 5.3.10.For source downloads please visit our downloads page, Windows binaries can be found on windows.php.net/download/. - PHP 5.3.9 Released!
The PHP development team would like to announce the immediate availability of PHP 5.3.9. This release focuses on improving the stability of the PHP 5.3.x branch with over 90 bug fixes, some of which are security related.Security Enhancements and Fixes in PHP 5.3.9:Added max_input_vars directive to prevent attacks based on hash collisions. (CVE-2011-4885)Fixed bug #60150 (Integer overflow during the parsing of invalid exif header). (CVE-2011-4566)Key enhancements in PHP 5.3.9 include:Fixed bug #55475 (is_a() triggers autoloader, new optional 3rd argument to is_a and is_subclass_of).Fixed bug #55609 (mysqlnd cannot be built shared)Many changes to the FPM SAPI moduleFor a full list of changes in PHP 5.3.9, see the ChangeLog. For source downloads please visit our downloads page, Windows binaries can be found on windows.php.net/download/.All users are strongly encouraged to upgrade to PHP 5.3.9. - ... more feeds
|