Skip to content

Instantly share code, notes, and snippets.

@worthers
worthers / pagination-example.php
Last active August 29, 2015 13:56
non-content-type pagination example
<?
class MyController extends Zend_Controller_Action
{
public function indexAction () {
$trailerQuery = "SELECT * FROM trailers";
$rows = dbNumRows(dbQuery($trailerQuery));
$a_parserSubVars['paging']['links'] = pagingLinks($trailerQuery,'start',$rows,'5',$_SERVER['REQUEST_URI']);
@worthers
worthers / ckf23ftpdiff
Created November 16, 2012 12:23
ckfinder 2.3 ftp support diff
diff -rP ckfinder_php_2.3/config.php ckfinder_php_2.3_ftp/config.php
87a88,94
> $config['Ftp'] = Array(
> 'host' => 'localhost',
> 'user' => '',
> 'pass' => '',
> 'path' => '',
> 'system_path' => $baseDir);
>
96c103