faina09
Forum Replies Created
-
I have also this issue, but it is not blocking, is just the first log line; after this the job continues normally:
2012/10/23 21:14.08: [ERROR] Job restarted, bcause inactivity! 2012/10/23 21:14.08: [INFO]: BackWPup version 2.1.15, WordPress version 3.4.2 Copyright © 2012 Daniel Hüsken 2012/10/23 21:14.08: [INFO]: BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. 2012/10/23 21:14.08: [INFO]: BackWPup job: 1. http://www.gsnatisone.it DB + FS; DB+FILE+OPTIMIZE+CHECK 2012/10/23 21:14.08: [INFO]: BackWPup cron: 0 23 * * *; Wed, 24 Oct 2012 @ 21:00 2012/10/23 21:14.08: [INFO]: BackWPup job started by cron 2012/10/23 21:14.08: [INFO]: PHP ver.: 5.3.16; cgi-fcgi; Linux 2012/10/23 21:14.08: [INFO]: MySQL ver.: 5.5.27-28.1-log 2012/10/23 21:14.08: [INFO]: curl ver.: 7.19.7; NSS/3.13.1.0This happens only on scheduled backups. If I start it manually the message does not appear.
Forum: Plugins
In reply to: [WPF-Login] "Log in" Link Doesn't Go to LoginPlease can you give me info about php version, wp version and THEME that you use? Also be sure to set the options and save them at least once and not to have warning or error messages.
Forum: Plugins
In reply to: [WPF-Login] Sidebar not showing on login pagesorry, but you cannot. The plugin does not use the thema templates, but the standard wp-login page, to ensure the maximum compatibility
thank you for the feedback and for the rating!
It’s a pleasure work with WordPress!!Forum: Plugins
In reply to: [WPF-Login] [Plugin: WP FLogin] Infinite Redirect issueno answer?! I assume that you solved this issue.
Forum: Plugins
In reply to: [WPF-Login] [Plugin: WP FLogin] Infinite Redirect issuemmm …. I use the plugin in multisite too, should be a different issue. Please give me info about wp and php versions and the theme that you are using. Does this happens also with a different theme?
feature implemented in ver 1.02
Have a nice wordpress blogging!!‘Back to log’ in contained in a div with id=”backtoblog” while both “Register” and “Password recovery” are in the same id=”wpnav”. It is obviously still possible to do what you request, but I’ll implement it in the next days with a new plugin release.
If your problem is – as I guess – with WordPress Multisite, have a look here
After studing a bit TimThumb web site, I found a better solution:
added a function in advanced-recent-posts-widget.phpif(!function_exists('get_image_path')): /** * for TimThumb script working with WordPress Multisite (formerly WordPress mu) * http://www.binarymoon.co.uk/2009/10/timthumb-wordpress-mu/ */ function get_image_path ($theImageSrc) { if (isset($blog_id) && $blog_id > 0) { $imageParts = explode('/files/', $theImageSrc); if (isset($imageParts[1])) { $theImageSrc = '/blogs.dir/' . $blog_id . '/files/' . $imageParts[1]; } } return $theImageSrc; }and call it adding this line:
$thumbnail[0] = get_image_path($thumbnail[0]);before using thumbnail[0].
You can download modified plugin from here: http://coste.mypressonline.com/wp/other-wp-plugin-fixed/
I’m happy to post the solution!!
WHAT WAS WRONG: the issue is only when using multisite network configuration; this is why thumb.php used by the plugin identify as a ‘local file’ images that can be fetched only using a full URL, due to rewrite rules in multisite.THE SOLUTION:
(unfortunatly) you need to edit the file plugins\advanced-recent-posts-widget\timthumb\thumb.php
in this way:
– line 34
if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', TRUE);
– comment out line 212:
//$this->src = preg_replace('/https?:\/\/(?:www\.)?' . $this->myHost . '/i', '', $this->src);…or download modified file from here: http://coste.mypressonline.com/wp/other-wp-plugin-fixed/
NOTE: .zip extension is dummy; rename in thumb.php and copy over existing file in your (..)plugins\advanced-recent-posts-widget\timthumb\ directoryPlease let me know if this solve the problem!!
Forum: Plugins
In reply to: [WP GPX Maps] [Plugin: WP GPX Maps] Stop workig with WP 3.4.2I have a problem with same error messages, the line 258 is:
foreach(array_keys($points->lat) as $i)
and endeed the problem is that the gpx containing WAYPOINTS are not loaded, the ones with NO waypoint are loaded fine.
I also get an error about registerXPathNamespaceForum: Plugins
In reply to: [WP-Options-Manager] [Plugin: WP-Options-Manager] obsolete db structuresorry again, use this link to download fixed version of
WP-Option-Manager ver.0.08Forum: Plugins
In reply to: [WPF-Login] [Plugin: WP FLogin] Size & Position of LogIn BarThis is because in your css files you have two different styles for the #user_login and #user_pass in the form #loginform.
You should define the same style for both, overriding all existing settigs like this:#loginform .input { padding:0.308em; width:149px; border:1px solid #CCCCCC; float: right; background-color:#FFFFFF; box-shadow:none; color:#000000; margin:2px; font-style:normal;}The “float: rigth” assure alignment.
To troubleshooting problems this is very useful the use of Firebug plugin in chrome or firefox.
Forum: Plugins
In reply to: [WPF-Login] [Plugin: WP FLogin] Login to Site, not dashboardok, good choice and good hint. Happy you have solved!