Skip to main content
Recent Posts
22
Feature Discussion / Re: Klipy Gifs
Last post by Steeley -
Hey Spuds,  How about a self-driving option, a back-up collision warning system, a mount for my smart-phone and blue-tooth-coupled display for the smartphone's GPS map app?  :tongue:

23
Feature Discussion / Klipy Gifs
Last post by Spuds -
Thanks Google! 

No sooner did I add Tenor gifs, they decide close the API (6/2026) and ask you migrate.  Tenor will still be around they just will not let you use it.  I really should know better then to ever rely on their services, this is just an ongoing thing with them.

So out with Tenor, in with Klipy!  Klipy has a transition API for those moving from Tenor but I chose to use their regular API and just redo the plugin.  Its the same 9 block icon in the toolbar and works the same as Gliphy and/or Tenor.

27
Support / Re: Registration doesn't work
Last post by augras -
Hi @Spuds ,
As usual it works fine : thank you very much.
 :thumbsup:  :thumbsup:  :thumbsup:
I don't understand why this error came : it appears around 2 months before my post but nothing was made in the parameters.
Philippe
28
Site Feedback / Re: EARLY Beta version of 2.0
Last post by Spuds -
And another bump of the old site, getting closer to a B1 release.

This update continues to fix a few items from the Admin menu redo and more strict action processing
Like Stats has been removed from the top menu and is now an information center option just like site stats.
The click zone on the breadcrumbs was improved (actually just a class typo in the CSS)
A few installer tweaks, I've cleaned up the default options a bit so on a fresh install it makes a bit more sense.  Still lots of things for the admin to decide on.  I've run that a few times and seems good, now I'm installing addons to make sure nothing else was broken.
29
Support / Re: Registration doesn't work
Last post by Spuds -
Taking a quick look (I don't have your specific 1.1.9 + SP 1.1)  but lets try a stop gap measure while we continue to look.

In Load.php

Code: (find) [Select]
		// Default language directories to try.
$language_directories = array(
$settings['default_theme_dir'] . '/languages',
$settings['actual_theme_dir'] . '/languages',
);

Code: (replace) [Select]
		// Default language directories to try.
$language_directories = array(
$settings['default_theme_dir'] . '/languages',
(!empty($settings['actual_theme_dir']) ? $settings['actual_theme_dir'] : $settings['default_theme_dir']) . '/languages',
);

that should get by that error, but I'm really not sure why you are seeing that.  Be sure to check you theme settings in the admin panel just to make sure the directory entries look correct.