Interakt resize image quality

zener 11-22-2005 17:29:38 GMT +2 Hello, I’m using the tNG_showDynamicThumbnail function to create thumbnails dynamicaly. I need a way to set the quality of the thumbnail? Is it possible? the generated thumbnails are too big… Thank you in advance Back | Reply | Quote | Top Florin CARLIG[InterAKT] 11-23-2005 18:11:15 GMT +2 Hello zener, Take …

Truncate long text with PHP (excerpt function)

Truncate is a handy function which can truncate a long text into specific length string and adds elipsis (…) after it. This is an example of how the function “truncate($text,47)” works : function truncate ($str, $length=10, $trailing=’…’) { /* ** $str -String to truncate ** $length – length to truncate ** $trailing – the trailing …

Ktinterakt view last import ID with PHP

How I know this function when I use insert Record transaction (advanced) and the redirect page has recordset that use $_POST[‘name for mysql_insert_id() ‘] for select record from db? $ins_sivut->registerTrigger(“END”, “Trigger_Default_Redirect”, 99, “sisallot_edit.php?Id={the_field_from_the_transaction_selected_as_primary_key}”);

Install FCKeditor

Header <script type=”text/javascript” src=”Scripts/fckeditor/fckeditor.js”></script> Body <script type=”text/javascript”> window.onload = function() { var oFCKeditor = new FCKeditor( ‘n_message_<?php echo $cnt1; ?>’ ) ; oFCKeditor.BasePath = “Scripts/fckeditor/” ; oFCKeditor.Height = 600 ; oFCKeditor.Width = 800 ; oFCKeditor.ReplaceTextarea() ; } </script>   Config \Scripts\editors\fckeditor\editor\filemanager\connectors\php end edit the config.php // Path to user files relative to the document root. …

XAMPP settings with plain-text configuration files

You adjust XAMPP settings with plain-text configuration files. The following files exist: Apache basic configuration: .\xampp\apache\conf\httpd.conf Apache SSL: .\xampp\apache\conf\ssl.conf Apache Perl (only addon): .\xampp\apache\conf\perl.conf Apache Tomcat (only addon): .\xampp\apache\conf\java.conf Apache Python (only addon): .\xampp\apache\conf\python.conf PHP: .\xampp\apache\bin\php.ini (with the apache actually running php version) MySQL: .\xampp\mysql\bin\my.cnf phpMyAdmin: .\xampp\phpMyAdmin\config.inc.php FileZilla FTP: .\xampp\FileZillaFTP\FileZilla Server.xml Mercury Mail basic configuration: …

PHP headers

// See related links for more status codes // Use this header instruction to fix 404 headers // produced by url rewriting… header(‘HTTP/1.1 200 OK’); // Page was not found: header(‘HTTP/1.1 404 Not Found’); // Access forbidden: header(‘HTTP/1.1 403 Forbidden’); // The page moved permanently should be used for // all redrictions, because search engines …