[Notice] Undefined index: Search

GET /resources/silverstripe/adding-a-cms-tooltip/SearchForm?start=90

Line 132 in /home/james/public_html/cms/code/search/SearchForm.php

Source

123 					Translatable::disable_locale_filter();
124 				} else {
125 					$origLocale = Translatable::get_current_locale();
126 
127 					Translatable::set_current_locale($data['searchlocale']);
128 				}
129 			}
130 		}
131 
132 		$keywords = $data['Search'];
133 
134 	 	$andProcessor = create_function('$matches','
135 	 		return " +" . $matches[2] . " +" . $matches[4] . " ";
136 	 	');
137 	 	$notProcessor = create_function('$matches', '
138 	 		return " -" . $matches[3];

Trace

Search Results | James Barnsley | Web designer and developer in Wellington

Remote rsync transfers using SSH on a non-standard port

12 June 2013

Often you'll need to transfer a file from your webserver to your local environment. This can be a bit tricky if your local environment is a...

Read more

Workshop

Social Feeds See below for a social feed plugin that I've been working on, called SilverStripe Social Feed.

Read more

Rewrite based on domain

24 July 2013

Recently I needed to redirect traffic when the domain was NOT www.website.co.nz. This is often handy if you have several domains hinged off one virtual host. ...

Read more

Removing www from your site

26 July 2013

Personally I prefer web URL's to exclude www, and so I implement the following code on all project's .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.jamesbarnsley.co.nz$ [NC] RewriteRule ^(.*)$...

Read more

Clever Captchas

27 August 2013

There are a multitude of spam-protection methods, from the super-cryptic Google Captcha to discrete jQuery checkboxes. Not all are created equal, and there is much discussion...

Read more

Quickly Compile a SilverStripe website

30 August 2013

When you're frequently building SilverStripe websites, you manage to create small efficiencies to make life a bit easier. To construct a SilverStripe website quickly, I have...

Read more

Ignoring system timezone

9 October 2013

I've been banging my head against the wall figuring out why my time-sensitive website isn't displaying the date and time correctly. I had ensured php.ini represented...

Read more

Using TeamViewer and XBMC

25 October 2013

TeamViewer (http://teamviewer.com) is an amazing tool, much like LogMeIn which allows you to remotely access your desktop. Occasionally I need remote desktop access to my media...

Read more

Remove Add button from GridField

19 February 2014

Sometimes you need to be able to edit and delete GridField records, but you don't want the big green "Add New Object" button at the top....

Read more

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

Page 10 of 42

Let's work together