wyclef
Forum Replies Created
-
I did a DB dump searching for ?php and some things in wp_postmeta turned up such as
<img src=\"<?php bloginfo(\'template_url\'); ?>should something like this be turning up in wp_postmeta and if not how could I easily track down what pages or posts this stuff is coming from? Also, I was checking in Sublime Text and I guess it had a hard time processing a 32mb SQL DB dump? Any recommendations on other programs which might handle such a thing better? Thanks for the help.Thanks!
Forum: Fixing WordPress
In reply to: Upgrading WP 3.7.31 site & PHP 7.2Being forced to upgrade to 7.2
Forum: Fixing WordPress
In reply to: Upgrading WP 3.7.31 site & PHP 7.2Thank you. That list you are referencing would sure be helpful… searching, but not finding anything.
Forum: Plugins
In reply to: [IP Geo Block] IP Geo Block Dev seems dead, alternatives to consider?I am also wondering if this plugin is dead. The creator used to be more responsive.
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Trouble logging inSeems like if I try to visit the plugins page in the panel when I do get in I get the same notice.
In the activity monitor it says I’m probing for vulnerable PHP code at wp-admin/admin-ajax.php.
This did not get resolved yet.
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Trouble logging inI use WP Cerber custom login URL.
Set the backup archive to zip, that did not help. The hoster had not seen that error before and did not have anything to offer. Has this plugin been tested on older versions of WP? (4.1?)
- This reply was modified 7 years, 2 months ago by wyclef.
Here is the debug info:
WordPress version: 4.1.25 BackWPup version: 3.6.7 PHP version: 7.0.32 (64bit) MySQL version: 5.6.34-log cURL version: 7.35.0 cURL SSL version: OpenSSL/1.0.1f WP-Cron url: http://mydomain.com/wp-cron.php Server self connect: Response Test O.K. Document root: /home/mysite/mydomain.com Temp folder: /home/mysite/mydomain.com/wp-content/uploads/backwpup-d50d97-temp/ Log folder: /home/mysite/mydomain.com/wp-content/uploads/backwpup-d50d97-logs/ Server: Apache Operating System: Linux PHP SAPI: cgi-fcgi Current PHP user: mysite Maximum execution time: 30 seconds BackWPup maximum script execution time: 25 seconds Alternative WP Cron: Off Disabled WP Cron: Off CHMOD Dir: 0755 Server Time: 2:39 Blog Time: 02:39 Blog Timezone: Blog Time offset: 0 hours Blog language: en-US MySQL Client encoding: utf8 PHP Memory limit: 256M WP memory limit: 96M WP maximum memory limit: 256M Memory in use: 22.00 MB Loaded PHP Extensions:: Core, PDO, Phar, Reflection, SPL, SimpleXML, Zend OPcache, bcmath, bz2, calendar, cgi-fcgi, ctype, curl, date, dom, exif, fileinfo, filter, ftp, gd, gettext, hash, iconv, imagick, imap, json, libxml, mbstring, mcrypt, mysqli, mysqlnd, openssl, pcntl, pcre, pdo_mysql, pdo_sqlite, posix, pspell, session, soap, sockets, sqlite3, standard, tokenizer, xml, xmlreader, xmlrpc, xmlwriter, xsl, zip, zlibAnd here is the image of Job Settings:
https://pasteboard.co/I2h9YgE.png
- This reply was modified 7 years, 2 months ago by wyclef.
That did not work.
[11-Feb-2019 17:20:12] 1. Try to backup database … [11-Feb-2019 17:20:13] Connected to database db_live on mysql.mysite.com [11-Feb-2019 17:20:13] Added database dump "db_live.sql" with 427.50 kB to backup file list [11-Feb-2019 17:20:13] Database backup done! [11-Feb-2019 17:20:13] 1. Trying to make a list of folders to back up … [11-Feb-2019 17:20:20] Added "wp-config.php" to backup file list [11-Feb-2019 17:20:20] 483 folders to backup. [11-Feb-2019 17:20:22] 1. Trying to generate a file with installed plugin names … [11-Feb-2019 17:20:22] Added plugin list file "mysite.pluginlist.2019-02-11.txt" with 2.30 kB to backup file list. [11-Feb-2019 17:20:22] 1. Trying to generate a manifest file … [11-Feb-2019 17:20:22] ERROR: Signal "SIGHUP" (Hangup detected on controlling terminal or death of controlling process) is sent to script! [11-Feb-2019 17:20:22] Added manifest.json file with 5.87 kB to backup file list. [11-Feb-2019 17:20:23] 1. Trying to create backup archive … [11-Feb-2019 17:20:23] Compressing files as TarGz. Please be patient, this may take a moment. [11-Feb-2019 17:20:23] ERROR: Signal "SIGHUP" (Hangup detected on controlling terminal or death of controlling process) is sent to script! [11-Feb-2019 17:20:30] 2. Trying to create backup archive … [11-Feb-2019 17:21:23] ERROR: Signal "SIGHUP" (Hangup detected on controlling terminal or death of controlling process) is sent to script! [11-Feb-2019 17:21:25] 3. Trying to create backup archive … [11-Feb-2019 17:21:54] ERROR: Signal "SIGHUP" (Hangup detected on controlling terminal or death of controlling process) is sent to script! [11-Feb-2019 17:22:02] ERROR: Step aborted: too many attempts! [11-Feb-2019 17:22:02] One backup file deleted [11-Feb-2019 17:22:02] One old log deleted [11-Feb-2019 17:22:02] ERROR: Job has ended with errors in 110 seconds. You must resolve the errors for correct execution.Forum: Fixing WordPress
In reply to: Upgrading Old Site / Help with SQL to WPDB after 3.9?I’m confused how
mysql_fetch_arrayis ported over to WPDB. Seems like it usesget_results? I realize this is a very outdated way to go about this and fully intend to modernize this but in keeping a long story short it would be very helpful to be able to sort this out within this old jumbled paradigm if possible. Is this at least on the right track or am I way off?<? global $wpdb; $sql = $wpdb->prepare( "SELECT value FROM wp_acf_values WHERE wp_acf_values.field_id = '105' AND wp_acf_values.id = '234'" ); $result = $wpdb->query ( $sql ) or die('Content was not loaded.'); while($post = mysql_fetch_array($result)) { $sqlTitle = $wpdb->prepare( "SELECT meta_value FROM wp_postmeta WHERE meta_id = %s", $post['value'] ); $result1 = $wpdb->query ( $sqlTitle ) or die('Content was not loaded.'); while($post1 = mysql_fetch_array($result1)) { $spotlightTitle = $post1['meta_value']; } } ?>Forum: Fixing WordPress
In reply to: Upgrading Old Site / Help with SQL to WPDB after 3.9?Like this?
$sql = $wpdb->prepare( "SELECT value FROM wp_acf_values WHERE wp_acf_values.field_id = '105' AND wp_acf_values.id = '234'" ); $result = $wpdb->query ( $sql ) or die('Content was not loaded. Please refresh your page.'); while($post = mysql_fetch_array($result)) { $sqlTitle = $wpdb->prepare( "SELECT meta_value FROM wp_postmeta WHERE meta_id = %s", $post['value'] ); $result1 = $wpdb->query ( $sqlTitle ) or die('Content was not loaded. Please refresh your page.'); while($post1 = mysql_fetch_array($result1)) { $spotlightTitle = $post1['meta_value']; } }I’ll give that one a shot. Doesn’t look like there has been any recent development on that one either which isn’t that promising but working is better than not working.
No response yet. What plugin would you move to?