Milos Spasic
Forum Replies Created
-
Hello,
I have the same problem, when I manually run my backup job I’m getting this error:
Job "Full backup" has started, but not responded for 10 seconds. Please check information.Here is the data from the Information tab:
WordPress version 4.7.1 BackWPup version 3.3.4 Get pro. PHP version 7.1.0 (64bit) MySQL version 5.6.33-log cURL version 7.29.0 cURL SSL version NSS/3.19.1 Basic ECC WP-Cron url: /wp-cron.php Server self connect: Not expected HTTP response: Status-Code: 200 Date: Mon, 16 Jan 2017 09:44:43 GMT Server: Apache Cache-control: max-age=3600 Expires: Mon, 16 Jan 2017 10:44:43 GMT Vary: User-Agent Content-length: 0 Content-type: text/html; charset=UTF-8 Temp folder: /uploads/backwpup-a32387-temp/ Log folder: /uploads/backwpup-a32387-logs/ Server Apache Operating System Linux PHP SAPI cgi-fcgi Current PHP user Maximum execution time 30 seconds Alternative WP Cron Off Disabled WP Cron Off CHMOD Dir 0755 Server Time 9:44 Blog Time 10:44 Blog Timezone Blog Time offset 1 hours Blog language en-US MySQL Client encoding utf8 Blog charset UTF-8 PHP Memory limit 268435456 WP memory limit 40M WP maximum memory limit 256M Memory in use 24.00 MB Loaded PHP Extensions: Core, PDO, Phar, Reflection, SPL, SimpleXML, cgi-fcgi, ctype, curl, date, dom, filter, ftp, gd, hash, json, libxml, mbstring, mysqli, mysqlnd, openssl, pcntl, pcre, pdo_mysql, pdo_sqlite, posix, readline, session, soap, sqlite3, standard, tokenizer, wddx, xml, xmlreader, xmlwriter, xsl, zip, zlibI cannot downgrade PHP to v7.0, that is not a option.
I really appreciate any help you can provide.
Regards
- This reply was modified 9 years, 4 months ago by Milos Spasic.
Forum: Plugins
In reply to: [W3 Total Cache] Slowing dowm admin panelHow it is resolved, when there was no any plugin update?
Forum: Plugins
In reply to: [W3 Total Cache] Slowing dowm admin panelHello,
I have experienced exactly the same problems, except I had to disable “Object Cache” and “Database Cache” to retrieve WordPress dashboard normal speed.
Everything was working just fine, with “Object Cache” and “Database Cache” enabled, and I didn’t do any update or software change when problems with the dashboard speed occurred.
I really appreciate any help you can provide.
Regards
Forum: Plugins
In reply to: [WP-Print] Translation isn't workingThanks for the effort.
I have done exactly the same setup on the my test site and translation is working.
This leads me to the conclusion that the problem is in the configuration of my site where the problem occurs.
I will continue to research the causes of the problem …
Forum: Plugins
In reply to: [WP-Print] Translation isn't workingI didn’t mention in first post, the translation worked just fine before I have updated plugin to the latest version. After the update, translation files were deleted, but I have uploaded them again.
I think you have made some changes in the last update that broke translations.
Forum: Plugins
In reply to: [WP-PostRatings] Breaks the site layout after update.I lost a whole day investigating why the layout of my site has broken and now I see this thread… Thanks for the fix.
Hello,
I have found what was causing the problem. It was PHP locale settings of my web server. When I have set PHP locale to en_US, issue disappeared.
This solved the issue for me:
setlocale( LC_ALL, 'en_US' );I hope this will help somebody.
Regards
Forum: Plugins
In reply to: [WP-EMail] Block search engines to index send by email pageI have tried it, works perfectly.
Thank you, problem permanently solved.
Forum: Plugins
In reply to: [WP-EMail] Block search engines to index send by email pageI have found the solution for the problem.
Just add this to your theme functions.php file:
//Ad meta tag noindex,nofollow to the head section of WP-Email send page function WP_Email_noindex() { $uri = $_SERVER['REQUEST_URI']; $elements = explode('/', $uri) ; $segment2 = $elements[2] ; //For the 2nd segment of the URL if ($segment2 == 'email') { echo "\n" . '<meta name="robots" content="noindex,nofollow" />'; } } add_action('wp_head', 'WP_Email_noindex');My Permalink Settings are domain.com/postname so this works for me.
If your Permalink Settings are different, check out this post: “Get url segment in wordpress” → webinbangla.com/get-url-segment-wordpress
Forum: Plugins
In reply to: [WP-EMail] Block search engines to index send by email pageI don’t use popup, so please help me to find some solution.
I really appreciate any help you can provide.
Forum: Plugins
In reply to: [Contextual Related Posts] Custom HTML and CSS in feedsThank you for the replay.
At the end, I came up with this solution:
1) Under the plugin settings find “Add related posts to:” and turn off “Feeds“.
2) Add this to the end of your theme functions.php file:
/* Add related posts to feeds */ function ald_crp_rss_custom($content) { global $post; global $crp_settings; $limit_feed = $crp_settings['limit_feed']; $show_excerpt_feed = $crp_settings['show_excerpt_feed']; $post_thumb_op_feed = $crp_settings['post_thumb_op_feed']; if(function_exists('ald_crp')) { return $content. '<div style="clear:left; padding:15px 0 0 0;">' .ald_crp('is_widget=0&limit='.$limit_feed.'&show_excerpt='.$show_excerpt_feed.'&post_thumb_op='.$post_thumb_op_feed). '</div>'; } else { return $content; } } add_filter('the_excerpt_rss', 'ald_crp_rss_custom'); add_filter('the_content_feed', 'ald_crp_rss_custom');I hope this would help someone.
Forum: Plugins
In reply to: [Contextual Related Posts] Custom HTML and CSS in feedsCSS can be embedded direct into the HTML.
Short example:
<div class="crp_related" style="clear:left; padding:15px 0 0 0;"> <h3 style="padding:0 0 10px 0;">And by using ‘is_feed’ conditional tag → http://codex.wordpress.org/Function_Reference/is_feed, that custom CSS can be displayed only on feed page.
Forum: Plugins
In reply to: [WP Facebook Open Graph protocol] Change og:locale optionI understand that you are doing this at the expense of your free time. Make a modification when you can… Thank you for the efforts.
Best regards
Forum: Plugins
In reply to: [WP Facebook Open Graph protocol] Change og:locale optionHere is the official list of Locales and Languages Supported by Facebook → https://developers.facebook.com/docs/internationalization/#locales
Forum: Plugins
In reply to: [Sharebar] Error with WordPress 3.5Fix from e3mobile is working perfectly. Thanks.