|
Sunday, 22 October 2006 21:41 |
|
| |
Securityimages 4.0.0
release "enhanced Security "
This version is now running with:
- PHP.ini safe mode ON
- Joomla RG Global Emulation O
- PHP.ini register global = Off
Bugs solved:
artf4021: php safe mode
& com_securityimages
artf1411: Save setting
button changes if config.securiyimages.php is not writable
artf4989: register_globals
Off patch
artf3206: com_contact
artf2777: No text
displayed in security Image
API changes
Will work only with new release of akcomment, akobook,
etc...
| securityimages
< 4.0.0 |
|
| in
PHP <form> |
<?php include
($mosConfig_absolute_path.'/administrator/components/com_securityimages/client.php'); ?>
<?php echo
insertSecurityImage("security_refid"); ?>
<?php echo
getSecurityImageText("security_try"); ?>
<?php echo
getSecurityImageTextHeader(); ?>
<?php echo getSecurityImageTextHelp(); ?>
<?php echo
getSecurityImageField("security_try"); ?>
The code above insert the image, and the text, You page
normally submit information to the server for processing. Most of the
time, the last 2 lines are inserted in a <form>
|
| in
PHP code checking the <form> |
include
($mosConfig_absolute_path.'/administrator/components/com_securityimages/server.php');
$checkSecurity =
checkSecurityImage($security_refid, $security_try);
if $checkSecurity = true //then the user
has entered the right text.
|
| securityimages
>= 4.0.0 |
Introducing
a captcha hidden field visibility name |
| in
PHP <form> |
include($mosConfig_absolute_path.'/administrator/components/com_securityimages/client.php');
$packageName
= 'securityimage_newpass';
echo
"<tr><td>".getSecurityImageTextHeader()."
*</td><td>".insertSecurityImage($packageName). "<br/>".getSecurityImageTextHelp()."" .getSecurityImageField($packageName)."</td></tr>"; |
| in
PHP code checking the <form> |
$securityimage_newpass_refid
= mosGetParam( $_POST, securityimage_newpass_refid',
'' );
$securityimage_newpass_try =
mosGetParam( $_POST, securityimage_newpass_try',
'' );
$securityimage_newpass_reload =
mosGetParam( $_POST, 'securityimage_newpass_reload',
'' );
include_once
($mosConfig_absolute_path.'/administrator/components/com_securityimages/server.php');
$checkSecurity &=
checkSecurityImage($securityimage_newpass_refid,
$securityimage_newpass_try, $securityimage_newpass_reload); |
New!
HNCAPTCHA: now color background is fully configurable
Related Posts
-
Just in case I take too much time to deliver a ready to use download, duration 5 minutes, but you need to understand basic php coding Create a temporary directory c:\patch Copy an existing patch distribution, under a new name For example, lets download Joomla_1.5.13-Stable-Full_PackageForSecurityImages5.1.x_v01.01.00.zip into c:\patch\ 222 days ago
-
Only for SecurityImages 5.1.x and Joomla! 1.5.13 Allow login views, login modules, register, lost password, lost user account and contact section to be protected by SecurityImages Are for Joomla! 1.5.13 only and SecurityImages 5.1.x or later 14 files has been altered, mostly views, and com_contact/com_user controller, click on picture 232 days ago
-
Only for SecurityImages 5.1.x and Joomla! 1.5.12 Allow login views, login modules, register, lost password, lost user account and contact section to be protected by SecurityImages Are for Joomla! 1.5.12 only and SecurityImages 5.1.x or later 14 files has been altered, mostly views, and com_contact/com_user controller, click on picture 254 days ago
-
This version should improve installations on some host, where the plugin securityimages.php did not always install properly. The reason behind is that I did add falsely an additional file index.html in plugin.zip. This may lead to permissions issues during installation. SecurityImages 5.1.2 do not contains any other changes, so If you’re happil 254 days ago
-
The Joomla! community is pleased to announce the immediate availability of Joomla! 1.5.11 Since Joomla 1.5.11 is released...Here are the new patches for SecurityImages 5.1.1 AND Joomla! 1.5.11 Allow login views, login modules, register, lost password, lost user account and contact section to be protected by SecurityImages Are for J 285 days ago
-
The Joomla! community is pleased to announce the immediate availability of Joomla! 1.5.10 Since Joomla 1.5.10 is released...Here are the new patches for SecurityImages 5.1.1 Allow login views, login modules, register, lost password, lost user account and contact section to be protected by SecurityImages Are for Joomla! 1.5.10 only 352 days ago
-
Following the Preview of SecurityImages 5.2.0, I am currently developing a proof of concept using the Ajax library JQUERY jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write Jav 398 days ago
-
Some people have reported issue in the forum I've found the error in my code in some views but not all: img src="/<?php echo JURI :: root() ?>/index.php? as a result, there is in image URL a double / which cause issues on some web host (no image displayed) I now provide a new patches versions for Joomla! 1.5.8 and 1.5.9 that 420 days ago
-
The Joomla! community is pleased to announce the immediate availability of Joomla! 1.5.9 Since Joomla 1.5.9 is released...Here are the new patches for SecurityImages 5.1.0 Allow login views, login modules, register, lost password, lost user account and contact section to be protected by SecurityImages Are for Joomla! 1.5.9 only 427 days ago
-
An insight at securityimages 5.2.0 still in development, as usual, all comments are welcome either in this post or in my forum NEW: fonts are now auto detected, and a better widget is now available for selecting them, sorry still no font preview in php ;-) You can install your own true type fonts at /administrator/components/com_securityimages 468 days ago
relatedArticles
|
|
Last Updated on Sunday, 22 October 2006 21:48 |
|