Tags

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

Latest Comments

Popular Post

items tagged with joomla

Com_joomlacloud under heavy development
Written By: Administrator
Section: Joomla

Category: com_joomlacloud

2006-03-09 09:49:10
I am currently refactoring my whole PHP code, interfaces, abstract classes, default implementations, factories and a lot of tricks in code will  make joomlacloud maybe the  more advanced  PHP code I've ever written.
Concepts are emerging, code is lot less hard coded than 20 lines of PHP (which may also work well)
  • Scanner is responsible for returning a subset of data: can be the whole site, the current article etc...many implementations can be used and or created
  • Analyzer is responsible for analyzing words and take them or not into account: based on length, dictionary etc...
  • Limiter is responsible for limiting size of collection: the top 20, only the first 100 words, sorting etc...many implementations can be used and or created
  • Tokennizer is the process of transforming a list of words into a list of token, etc...many implementations can be used and or created
  • Plugins are responsible on how the list of words are written or displayed, .etc...many implementations can be used and or created
  • Caching factories to save mips on the server...
This make the code more complex to develop but also a lot  more easy to read or extends...


Releasing soon AkoComment 2.2.5
Written By: Administrator
Section: Joomla

Category: com_akocommentPlus

2006-03-09 09:51:11
Finally I will soon release Akocomment 2.2.5 (the one which is working on my homepage) with comment tracking among other new functionalities...

Please use the tracker at sourceforge and give me (us) ideas of what kind of functionalities You want to see in it. If You want to avoid the hassle of creating an account or do not know how to, You can also use this thread to submit ideas as comments.

My ideas Are:

1Since
  • Hashcash is not intrusive, user has nothing to do to enter a comment (the cryptographic anti spammer check occur in the background)
  • SecurityImages use captcha, and so force user to enter character he has read in an image
I was thinking since a long time of using a 3rd party authority with is more smarter than me in oder to determine if the comment is a real spam, and I found this:
Akismet Automatic Kismet (Akismet for short) is a collaborative effort to make comment and trackback spam a non-issue and restore innocence to blogging, so you never have to worry about spam again. When a new comment, trackback, or pingback comes to your blog it is submitted to the Akismet web service which runs hundreds of tests on the comment and returns a thumbs up or thumbs down. With Akismet, you're always protected up-to-the-second from the latest dirty tricks of spammers. There's no maintenance, no upgrading, no hassle.
This work as webservice, so code changes are minimal and quite easy to do
2A Plugin system to allow extensions more easily (Plugin can be registered in a linked list or similar) at runtime

Get inspiration from existing commenting systems, or simply be creative!
Please submit ideas fast! I will then assign priority them in the tracker


Securityimages 4.0.0 release enhanced Security
Written By: Administrator
Section: Joomla

Category: SecurityImages

2006-10-22 21:41:42
 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



Speeding Up Joomla! a little bit
Written By: Administrator
Section: Joomla

Category: How To

2007-01-28 18:09:57
Since my server is still suffering, Ive decide today to take some actions.

user: changes can be done on shared hosting with limited user rights.
root. changes require a full access to the server (root access with secure shell ssh)

I have currently per months, 160.000 visitors and 2 Millions Hits.or per day 8000 visitors and 24000 pages view.
Server has only 1GB RAM.

UPDATE: I found one/THE reason why my host is slowing down...SPAMMERS!

click read more


Read More About Speeding Up Joomla! A Little Bit...


A new module for all Smugmug lovers: Smugmug Slideshow
Written By: Administrator
Section: Joomla

Category: Joomla 1.5

2009-06-13 23:53:49

Another cool module for Joomla! done in no time, thanks to Joomla! powerful API’s, the module is a front end for the myriad of parameter that can set for the Smugmug flash applet

  • Code produced is XHTML 1.0 Strict
  • Tested in the following browser Firefox, Opera, Chrome, IE 8
  • A great visual and a lot of features are built into this widget.
  •  

    This extension has been submitted to the JED (Joomla! extensions) and can be found also under the category photo-channels.


    Read More About A New Module For All Smugmug Lovers: Smugmug Slideshow...





    There are 222 items tagged with joomla. You can view all our tags in the Tag Cloud

    << Start < Previous 1 2 3 4 5 6 7 8 9 10 Next > End >>
    Page 1 Of 45

    Support

    My status

    Download

    You can download all my Joomla! extensions and a lot more HERE

    Donations

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