Auteur : YouAreWelcom

  • psnGeneric version 1.0.1 finally out !

    the plugin « psnGeneric version 1.0.1 is finally out ! It was announced few weeks ago…But I had a lot of work to do that’s why it is out only today !

    So what’s the plugin ?

    Do you see the « quote » block on the left side of this site ? and the « download » filelist block (also on the left side) ? Both are done via the psnGeneric version 1.0.1

    So in other word, it is something that display an extract or a full list of records based on a criteria.

    For the « quote » example, here is the line added in my « index.php » : the_genRandom( 'QUOTE',1,'','','', ''); .
    For the « download » example, the following code is used : genList( 'WPHACK',100,'','','', '');

    How to create/manage those lists ?

    I create a small administration page for that.

    Three different actions are possible : editdeletecreate.

    Everything is done via a very easy and intuitive tabular interface.

    [EDIT]
    In order to fix a small mySQL syntax issue (for old mySQL versions), you have to update the line 94 of wp-admin/psnGENAdmin.php as below :

    Change $psnSQLLimit = "LIMIT ".$psnLimit." OFFSET ".$psnOffset;
    into $psnSQLLimit = "LIMIT ".$psnOffset.",".$psnLimit;

    Thanks Bernd Pressler to notify me about this.

  • No ! I am not dead !

    No ! I am not dead ! I was silent for days (even weeks)….

    I was working on a lot of stuffs and I was overloaded ! I finally managed to finish everything this Friday and to conclude : on Friday, my boot harddisk of my personal desktop crashed ! Let’s say it my good period….

    I have to look at the bright side…. ;o)

    A lot of new things are coming :

    • blog.idahocline.info layout totally renewed.
    • in the coming days, 2 new plugins (psnGeneric and psnSTAT and their administration pages) will be available.
    • On a old PC I just have installed RedHat 9….to play a bit with Linux. That why on blog.idahocline.info, a new category will be created : « Linux / RedHat ».

    Oh yeah, I forgot to say : In the coming days, I will remove from this site all the links, categories and posts related to WordPress Development. And I will move them to blog.idahocline.info (and vice-versa).

    This will allow me to make an actual difference between blog.idahocline.info and blog.idahocline.com .

  • psnGallery2 v1.2.2 is available to download

    I fixed few issues, I followed the advices of several of you and specially those from Tarique Sani (Lead Dev Coppermine).

    Just click the download link here or on the download menu.

    As usual, if you have issue… Leave a comment !

  • WPPlugin psnGeneric soon out

    What’s psnGeneric ?

    It allows you to display an extract (random or not) of several records based on a key from a table. This can be used to display a random quote, a list of file to download, a list of … in fact, what you want !

    How does it work ?

    Few functions that you can call from your « index.php ». There is no limitation except your imagination ! The « Quote of the day » and the « Download » sections displayed on this page use this functionnality. Here is the call for the « Quote » :

    < ?php the_genRandom( 'QUOTE',1,'','','', ''); ?>

    You manage the content via the WP-Admin area (as you can see below).

    Nothing to display.

    This is only a preview. It will be out and available for download end of this week-end.

  • Why idahocline.com and idahocline.info ?

    Well, at first sight both sites are equal… In fact, idahocline.info was created in the hurry due to issue with the webhoster of idahocline.com. But normally, idahocline.info should have been created a little later.

    In fact, I planned to create another site dedicated to Web Development with everything related. So let’s say that this site will be soon totally redesigned to be more developper oriented, with different areas, like :

    • CSS/xHTML : Templates / tutorials / links
    • Design : Ideas, discussions about Web Designs
    • PHP/mySQL : Tips and tricks for PHP, mySQL, …
    • WordPress : plugins, tips & tricks, …
    • Showcase : portfolio of several projects done or in progress
    • Testing area : do you really don’t know what it is ? 😉

    Normally this site with architecture above will be online soon, probably end of June….

    Of course, idahocline.com will stay online but will be more focused on my wife and I.

    I am also working on several other WP plugins (with an administration page):

    • psnGeneric v1.0.0 : Random Item: Random Quotes, Books, … based on a table (Totaly generic)
    • psnGallery2 v1.3.0 : Coppermine Gallery (including all supported formats)
    • psnStat v1.0.0 : TFS WebStatistics
  • Further information on psnGallery2 tags/functions

    Out of a post (eg: in index.php)

    // Generate tags to display several random pictures from a specific Coppermine album (if -1 : from all albums)
    function CPGRndPicture($aid=-1, $count =-1, $nSize=1,$before='',$after='', $activelink=true, $dummy='') // Generate tags to display a full album from a specific Coppermine album (if -1 : from all albums)...
    function CPGAlbum($aid, $nCols=4, $nSize=1, $beforeCol="", $afterCol="", $beforeRow="", $afterRow="")

    // Get the name of an album
    function CPGAlbumName($aid)

    // Get the name of a category
    function CPGCategoryName($cid)

    // Get the number of pictures within an album
    function CPGAlbumPicCount($aid)

    // Get the album name list of a category
    function CPGAlbumListCategory($cid, $count=-1, $nSize=1, $before='', $after='')

    // Display a picture (in some modes)
    function CPGPicture($pictID, $nSize=1, $before='', $after='', $mode='picture', $dummy=0)

    // Display the specific thumbnail associated with an album
    function CPGAlbumThumb ($aid, $nSize=1, $before='', $after='')

    Within POST

    Tag defined Associated function Action

    • <cpg_album> => CPGAlbum($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ], $elems[ 5 ], $elems[ 6 ]);
    • <cpg_albumcatlist> => CPGAlbumListCategory($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ]);
    • <cpg_albumname> => CPGAlbumName($elems[ 0 ]) ;
    • <cpg_albumpiccount> => CPGAlbumPicCount($elems[ 0 ]);
    • <cpg_albumthumb> => CPGAlbumThumb($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ], $elems[ 5 ], $elems[ 6 ]);
    • <cpg_categoryname> => CPGCategoryName($elems[ 0 ]) ;
    • <cpg_gallery> => CPGRndPicture($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ], $elems[ 5 ], $elems[ 6 ]);
    • <cpg_picture> => CPGPicture($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ], $elems[ 5 ], $elems[ 6 ]);
    • <gallery> => CPGRndPicture($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ], $elems[ 5 ], $elems[ 6 ]);

    Of course, $elems[ x ] will be replace by the according value:

    In other words : <cpg_gallery>1|5|1</cpg_gallery> will become CPGRndPicture(1, 5, 1,  »,  »,  »,  »); and finally :

    Another example : <cpg_picture>275|1</cpg_picture> will become CPGPicture(275, 1,  »,  »,  »,  »,  ») and finally :

  • cpg_picture quickfix

    Well, I was too fast to deliver the psnGallery2…In the sql, included in the « package ». There is a « ( » too much !

    In order to fix the issue. Execute the following sql (eg, from phpMyAdmin) :

    UPDATE wp_psnGallery SET value = 'CPGPicture($elems[ 0 ], $elems[ 1 ], $elems[ 2 ], $elems[ 3 ], $elems[ 4 ], $elems[ 5 ], $elems[ 6 ]);' WHERE "kind" = 'TAG' AND "key" = 'picture' LIMIT 1 ;

    And here is sample of the display of one specific picture via the tag <cpg_picture>759|1</cpg_picture>

    Dscn0190.jpg

  • psnGallery2 version 1.2.1

    So ! Here we go !

    The release of psnGallery 2 (wordpress + Copermine) is out since few days but as you know, the idahocline.com is down for unknow reason without news from the webhoster ! 🙁

    So as promised, here is the zip of the plugin

    Have fun with it ! :o)

  • As the phoenix…idahocline.info is back to replace idahocline.com

    Well, it seems that idahocline.com has huge issues ! So here is the phoenix ! 🙂

    Unfortunetaly my last database backup was …..old (few days) but…

  • psnGallery 2 Version 1.2.1 released !

    As promised, the new release is available for download !

    Click on download to get it !

    Keep me inform if you encounter any issue !