GPix 1.3.2

Permalink

congratulations, 1.3.2 released!

GPix users, I want to notice you don't forget to review CHANGELOG.txt, before update

New release included next:

Currently I wait test results, so it will take several days to see release at TUFaT

Tags:

Grids as options

option list via direct lists for multiple grids (http://forum.tufat.com/showthread.php?p=153689)

To implement this feature in your skin, you need to apply next changes
index.tpl:

{if $links}
{foreach item=link from=$links}
{$link}   
{/foreach}
{/if}

replaced with:

{if !$app->setting->grids_as_options}
{if $links}
{foreach item=link from=$links}
{$link}   
{/foreach}
{/if}
{/if}

after this line


in toolbar.inc.tpl
insert next code:

{if $app->setting->grids_as_options}
##Grid:##

{html_options options=$grids_names selected=$smarty.request.grid}
   
{/if}

Tags:

Original images development

I have many request for original images feature

so, now it is done

GPix users which will update its own templates need to merge index.tpl, show_pixels.tpl and style.css with original files from GPix package.

Tags:

FreeBSD's sockstat Linux(debian)

Many years I used FreeBSD as my server invioroment, but before 6 months I migrate to Debian Linux, because I have no time to compile packages from sources.

So, now I work with Debian and I am newbie. Common action when some network application don't work is to review opened ports. FreeBSD have very good utility sockstat. I don't found something like this in Debian and I googled, as result I discover next alternatives for sockstat:

  • lsof -i
  • netstat -anpe

in this example netstat don't show fd+uid, but for this socklist can used

Tags:

direct links option for GLink

Permalink

users used this feature need to remember that 'show click' functionality have direct relations with this functionality.

GLink can not count clicks if "high optimized" will be set

It is requested http://forum.tufat.com/showthread.php?t=36544

So, something like that was done for GPix and now will be merged with GLink source tree.

It is part of SEO practice, so like for GPix this feature will be configurable via admin.

Tags: