Forum Replies Created

Viewing 15 replies - 76 through 90 (of 141 total)
  • Thread Starter wyclef

    (@wyclef)

    Seems 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.

    Thread Starter wyclef

    (@wyclef)

    This did not get resolved yet.

    Thread Starter wyclef

    (@wyclef)

    I use WP Cerber custom login URL.

    Thread Starter wyclef

    (@wyclef)

    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 6 years ago by wyclef.
    Thread Starter wyclef

    (@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: https://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, zlib

    And here is the image of Job Settings:

    https://pasteboard.co/I2h9YgE.png

    • This reply was modified 6 years, 1 month ago by wyclef.
    Thread Starter wyclef

    (@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.
    Thread Starter wyclef

    (@wyclef)

    I’m confused how mysql_fetch_array is ported over to WPDB. Seems like it uses get_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'];
         }
    }
    ?>
    Thread Starter wyclef

    (@wyclef)

    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'];
                }
    
              }
    Thread Starter wyclef

    (@wyclef)

    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.

    Thread Starter wyclef

    (@wyclef)

    No response yet. What plugin would you move to?

    What is the status of this? I still have US,ZZ in my whitelist.

    Thread Starter wyclef

    (@wyclef)

    Hmmm. This is under a shared hosting account at Dreamhost. Wondering if it has to do with general server load or something. I don’t believe I can really access the php.ini settings or anything like that.

    Thread Starter wyclef

    (@wyclef)

    That was from the server error log.

    Thread Starter wyclef

    (@wyclef)

    Hmmm… is there a boilerplate title tag example you could point me to that might help me rebuild this? This is what I’m thinking. I think their home page title is different? They are doing something with !is_front_page that I am missing? It seems as though for is_home they are adding the site description? Ugh.

         <?php
    function getPageTitle() {
        global $post;  
      
        if (($post->post_parent != 0) && !is_search()) {
            $title = ' — '.get_the_title($post->post_parent).' ? '.get_the_title(); 
        } else if (is_single()) {
            $title = get_the_title($post->ID);
        } else if (is_404()) {
            $title = ' | Page Not Found';
        } else {
            $title = ' | '.get_the_title();
        }
        return $title;
    }   ?>
    <title><? bloginfo('name'); ?> <? echo getPageTitle(); ?></title>
    • This reply was modified 8 years, 2 months ago by wyclef.
    • This reply was modified 8 years, 2 months ago by wyclef.
    • This reply was modified 8 years, 2 months ago by wyclef.
    • This reply was modified 8 years, 2 months ago by wyclef.
    • This reply was modified 8 years, 2 months ago by wyclef.
    Thread Starter wyclef

    (@wyclef)

    Wondering if there is any info about adding class name to table anywhere?

Viewing 15 replies - 76 through 90 (of 141 total)