seayko
Forum Replies Created
-
Forum: Plugins
In reply to: [Lightbox] missing semicolonI’ve fixed the colorbox to make it possible to minify and combine this file with others 😉
There were some Probleme defining the variables, comment after “var” and so onhttp://blog.tinect.de/wp-content/plugins/lightbox/js/frontend/jquery.colorbox.js
Forum: Plugins
In reply to: [Lightbox] missing semicolonThank you. I tried to minify and combine JS-Files. This caused an error after minifying it. 😉 After adding that semicolon there wasn’t any further problem with this file.
I’m having issues with minifying and combining (with others) of jquery.colorbox.js (something like “$overlay wasn’t defined”). I think some functions have to be exchanged. I’ll have a look these days and come back to you with further informations, if you like. 😉
Best Regards,
SebastianForum: Plugins
In reply to: [Loco Translate] Path resolvingSince Version 1.4 it’s running without my reported modification.
Forum: Plugins
In reply to: [Loco Translate] Options staying in DB after deletingThe first start of “start translation” takes about a minute. But only on enviroment with 20 (outdated) plugin-caches and wrong messages as I reported above.
But now the cache is empty with 1.4.1 and it’s running great!
Forum: Plugins
In reply to: [Loco Translate] Windows IIS – MO-Converter?Hey Tim, EVERYthing is running great with windows iis.
Thanks!
Forum: Plugins
In reply to: [Loco Translate] Path resolvingI had same error in Win-Env while saving PO-Files.
Fixed it with:
loco-translate/php/loco-posave.php
replace (Line 14-16):
if( ‘/’ !== $path{0}){
$path = WP_CONTENT_DIR.’/’.$path;
}with
if( ‘/’ !== $path{0} && ‘:\\’ !== $path{1}.$path{2}){
$path = WP_CONTENT_DIR.’/’.$path;
}// if “*:\” is in path, there is no need to prepend WP_CONTENT_DIR in Windows. Cause $path contains full path. 😉
Tested in Linux AND Windows. Works fine!
EDIT: ATTENTION! Path of “Gettext msgfmt” should be working in Windows, otherwise content of translation-file will be cleared.
Magic-Quotes should be disabled, too.Forum: Plugins
In reply to: [Loco Translate] Windows IIS – MO-Converter?Maybe it works, if you replace “\\” with “/” while using/creating any path.