Whos Online

Joomla

We have 144 guests and 0 members online

    Forums

    We have 22 guests and 0 members online

      Tags

      android (7) anonymity (9) ant (10) apache (54) apple (7) atv (18) australia (8) bernardet (7) bombardier (7) book (7) browser (10) business (8) caliber30 (61) canon (9) cedricwalter (6) checklist (9) chrome (6) classpath (6) collection (7) continuousbuild (25) design (13) designpattern (23) desktop (7) development (28) DIY (9) draganflyer5 (9) dslr (14) eclipse (30) ek4 (8) electronic (18) enfrancais (66) FAQ (6) figures (13) firefox (20) firmware (7) flash (9) flickr (6) framework (12) fud (9) game (19) gaming (6) girls (6) google (68) gpl (8) gps (9) hacking (23) hdtv (7) hollidays (15) homecinema (14) homepage (20) howto (66) infrastructure (6) innoveo (7) iphone (6) italy (10) itsatrap (8) java (73) javascript (11) joke (11) joomla (215) joomla15 (33) joomlacloud (7) junit (9) kde (10) kyosho (62) links (17) linux (122) LittleBigPlanet (16) mambo (18) manual (8) manurhin (9) maps (6) maven (36) mediacenter (9) microsoft (52) modding (10) module (17) morespeed (16) motor (8) motorcycle (13) myhomepage (14) mysql (14) nas (14) neogeo (20) opencomment (27) opensource (61) opensuse (10) oss (7) p2p (7) patch (32) pc (12) pdf (8) php (26) picasa (7) plugin (65) privacy (9) projector (11) protection (7) ps3 (42) publicity (9) quad (18) raptor30 (7) rchelicopter (161) review (32) robot (9) robotic (7) rss (8) safety (8) scooter (29) security (62) securityimage (8) securityimage3 (6) securityimage4 (21) securityimage5 (19) securityimages (14) securityimages5 (6) server (17) simulator (8) smugmug (12) snk (16) software (31) sony (38) spammer (7) statistics (13) storage (7) subversion (6) suse (12) switzerland (7) teamcity (15) testing (9) thundertiger (20) tips (31) tomcat (7) tomtom (7) translatetofrench (8) trip (17) troubleshooting (7) tutorial (9) twitter (6) upgrade (15) vespa (10) video (17) vintage (8) watercooling (9) web2.0 (28) windows (14) xbmc (7) xbox (10) zurich (16) zürich (11)

      Forums

      Live information from Open Source Joomla! 1.0/1.5 development and support for waltercedric.com components/plugins/modules

      Skype me

      My status

      Follow me

      Facebook Digg LinkedIn MySpace Twitter Playstation network Xbox Live
      Digg Del.icio.us Reddit Simpy StumbleUpon Ask Facebook Slashdot Backflip Spurl MisterWong Netvouz Diigo Segnalo RawSugar Shadows Google Furl Newsvine Yahoo Technorati Live Blogmarks Netscape Fark Wink LinkaGoGo Bibsonomy FeedMe Magnolia Blue Tailrank Del.irio.us Y PlugIM SpotBack LinkSwarm

      Gallery

      Twitter

      Google Buzz


      Hotel lusso - Trova e prenota in un click i migliori Hotel lusso selezionati per qualità e prezzo in tutte le principali città Italiane ed Europee. Trova vari modi per risparimare con alb...
      7 hours ago,

      Re: No related articles are displayed - Not in my case. I have much more than one article in the categorie...
      12:07 AM Mar 14, 2010,

      Re: Rocket Themes templates - Cedric, thanks for working on it! I have run the xdelta3 program to get the new template, but then it won't allow me to unzip the resulting file to patch the server. I had to use the -s switch to get the source file recognized so my code looks l...
      11:24 PM Mar 13, 2010,

      Re: Rocket Themes templates - Hello again... I have more information Cedric. When I go into the contact details I want to display the captcha on, I get an error. Warning: file_get_contents(/home/mico7284/public_html/islandtrader.info/administrator/components/com_contact/contact_ite...
      10:22 PM Mar 13, 2010,

      Re: Rocket Themes templates - Cedric YOU ROCK! Thanks so much for the patch on crystalline template! I now have captcha on my log in form... however, it is not showing up on my contact form... See attached jpeg for a screen shot of the error I get for the contact patch under check ...
      10:05 PM Mar 13, 2010,
       
      Securityimages 4.0.0 release enhanced Security Print E-mail
      User Rating: / 5
      PoorBest 
      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

      relatedArticles

      Tags See All Tags Add New Tag...

      Please Enter New Tags Separated By Comma's
        Or Close

      joomla  securityimage4 



      Comments
      Add New Search RSS
      +/-
      Write comment
      Name:
      Email:
       
      Website:
      Title:
      UBBCode:
      [b] [i] [u] [url] [quote] [code] [img] 
       
       
      :):grin;)8):p:roll:eek:upset:zzz:sigh:?:cry
      :(:x
       
      Please input the anti-spam code that you can read in the image.
      Cédric Walter  - I am testing it together with |84.74.90.xxx |2006-10-30 19:30:36
      I am testing it together with Akobook.



      OpenComment do not need hashcash or securityimage as it use internaly some kind
      of hashcash.
      Guest  - patch for 1.0.11 ? |84.56.209.xxx |2006-10-25 23:31:50
      version 4.0.0 does not work with you patch for 1.0.11
      Guest  - does not work with JaSubmit 2.1 |82.226.130.xxx |2006-10-29 12:18:28
      This version does not work with JaSubmit 2.1, nevertheless the installation
      takes place well, but the display of the image does not appear, thus I am
      rehearsed in 3.08, there that works....
      Guido  - Whats this |82.82.80.xxx |2006-10-30 00:45:46
      The idea ist great, but
      there are more than a few bugs in it.
      The bugs are not in php only, js and html code are buggy, too. Whats this?
      Joe  - Not working with akobook |217.235.194.xxx |2006-11-01 23:14:19
      Hello, i tried to get it wordking with akobook 2.0.4 , but it doesn't work. I
      don't see a security image

      I use joomla 1.0.11 on PhP5. You can see it on the website stated above, click
      on "gastenboek" on the left menu.



      Thank you.....
      Guest  - Not Working with perForms |71.32.220.xxx |2006-11-08 22:37:28
      perForms 2.0beta and joomla 1.0.11 no image appears. Thanks,
      Cédric Walter  - I know :-( |84.74.90.xxx |2006-11-10 22:54:38
      a version securityimages 4.0.1 will be soon available (tonight in 3 hours)



      Someone in fact has post in my forum a list of patch

      Patch for version 4.0.0
      Last Updated on Sunday, 22 October 2006 21:48
       

      Top 200 Tags

      Donation

      Thank You for supporting my work
      Click Here to make a donation