Whos Online

Joomla

We have 287 guests and 0 members online

    Forums

    We have 20 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)

      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


      Re: White screen when edit plugin settings - I got the same problem. In my contact screen I see the reload buttn and the label but no images. Everything is green in the check your system screen. When I save edit general settings i noticed that some values are empty $securityImagesUseInLogin = "";...
      2 hours ago,

      Interview with Dan Lopez About Linux.com #joomla bit.ly/dyk5dt... (via @joomla)
      18 hours ago,

      Re: Login Form - Menu Link - First, thank you. I've installed this and everything works fine... except the captcha display for the login module displayed under my main menu. If I click 'login' and the module comes up on the main screen, the captcha is there. Is there a way to g...
      19 hours ago,

      Re: Problem with SecurityImages 5.1.1 and Joomla 1.5.9 - I have Joomla! 1.5.9 and I've installed SecurityImage 5.1.2. I use security image "Calculator" and see an image in contact, login, register,module login. I It tested . It's work! But I get a registration of spammers.Why? Where is problem?
      2:19 PM Mar 15, 2010,

      Re: No related articles are displayed - Sire url: www.minutka.si/novice.html... Version RelatedArticles: 2.0.3 (plugin) PHP: 5.2.4 Joomla: 1.5.14
      2:12 PM Mar 15, 2010,
       
      Migration SecurityImages 4.X to SecurityImages 5.X how to Print E-mail
      User Rating: / 1
      PoorBest 
      Friday, 04 April 2008 21:30
      Article Index
      Migration SecurityImages 4.X to SecurityImages 5.X how to
      with SecurityImages 5.0.X
      All Pages

      SecurityImages 5.X is only running with Joomla! 1.5 and the redesign of API has introduced some incompatibilities.
      Developers/Hackers/Individuals who want to use the latest version of SecurityImages may want to read the
      following. Basic PHP knowledge  is recommended.

      joomla_1.5

      Architecture

      SecurityImages 4.0.X

      • Only work with Joomla! 1.0.X
      • Provide 2 files that 3rd party code must include:
      • client.php in order to quickly create a captcha and the input box
      • server.php in order to validate user entries and check correctness
      • Everything is packed in one component.
      • Patches for common 3rd party tool are included in code so it ca be referenced by external extensions :
        akobook, akocomment, joomla to name a few.
      • You have to overwrite Joomla! files to add protection of form for login, register, lost password, contact

      SecurityImages 5.0.X

      • Only work with Joomla! 1.5.X
      • Use the event handling mechanism of Joomla! 1.5 to  create captcha and check correctness
      • You'll have to install a system content plugin and a component,
      • it do not contains any patches anymore
      • You have to overwrite Joomla! files to add protection of form for login, register, lost password, contact

      Main differences in securityImages 5.X

      1. There is no client.php and server.php file anymore
      2. API are a lot simpler, and dependency are reduced (no PHP code to include) as it use events.
      3. More object oriented
      4. Image creation is done inside the Joomla! framework while in 4.0.X it was done without any Joomla!
        framework support.

       

      with SecurityImages 4.0.X


      In your PHP code displaying the form, can be a Pat template or a html code

      1. Include my library in page scope

      if (file_exist($mosConfig_absolute_path.'/administrator/components/com_securityimages/client.php')) {
      <?php include ($mosConfig_absolute_path.'/administrator/components/com_securityimages/client.php'); ?>
      }
      $packageName = 'securityChooseUniqueKeyName';
       
      2. At the position where You want the Captcha image to be inserted 
       
      <?php echo insertSecurityImage($packageName); ?>

      3. This insert the help text and the input box where the user will have to enter his text
      <?php echo getSecurityImageText($packageName); ?>

      Line at point 3. can be, in some case, depending how much space You have in the presentation HTML layer, replace with
       //will be replace at runtime, depending on user locale 
      //with "Please Enter what You see:" 
      <?php echo getSecurityImageTextHeader(); ?> 
       
      //will be replace at run time, depending on user locale with 
      //"If You do not see ...Hit reload" 
      <?php echo getSecurityImageTextHelp(); ?>  
       
      //will be replace at run time with the input box
      <?php echo getSecurityImageField($packageName); ?>  

      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> </form> HTML tags

      In the server code where you process the data...
      Few lines are required...

      if (file_exist($mosConfig_absolute_path.'/administrator/components/com_securityimages/server.php')) {
      include ($mosConfig_absolute_path.'/administrator/components/com_securityimages/server.php');
      }
      $packageName = 'securityChooseUniqueKeyName';
      $security_refid  = mosGetParam( $_POST, $packageName.'_refid', '' );
      $security_try      = mosGetParam( $_POST, $packageName.'_try', '' );
      $security_reload = mosGetParam( $_POST, $packageName.'_reload', '' );
      $checkSecurity = checkSecurityImage($security_refid, $security_try);


      If the has entered the right text then $checkSecurity = true

       



      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.
      Last Updated on Friday, 04 April 2008 19:46
       

      Top 200 Tags

      Donation

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