• Resolved nealumphred

    (@nealumphred)


    I do not have anythimg in Trash on either Pages or Posts.

    But Litespeed’s Database Optimzation says I have 63 trashed posts. What does this mean?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Support qtwrk

    (@qtwrk)

    SELECT * FROM wp_posts WHERE post_status = 'trash';

    could you please run this in phpMyAdmin , and see what it returns ?

    Thread Starter nealumphred

    (@nealumphred)

    Thanks for the response!

    How do I run something in phpMyAdmin?

    Plugin Support qtwrk

    (@qtwrk)

    if you are using shared hosting, the control panel should grant you an access to phpmyadmin

    you can check with your provider for further assisstance on this.

    Thread Starter nealumphred

    (@nealumphred)

    Thanks for the response.

    I went to my QUIC.cloud account and found that I have to change my nameservers to QUIC.cloud nameservers.

    Last year, I made Cloudflare my registrar and, apparently, I cannot change the Cloudflare nameservers.

    So, apparently, I cannot use QUIC.cloud or the LiteSpeed image optimization.

    If there is a way around this, please let me know …

    • This reply was modified 1 week, 4 days ago by nealumphred.
    Plugin Support qtwrk

    (@qtwrk)

    no no no , what you said in last post, has nothing to do with phpMyAdmin , the phpMyAdmin is database tool

    or , create a php file with code:

    <?php
    require( './wp-load.php' );
    global $wpdb;

    $query = "SELECT * FROM {$wpdb->prefix}posts WHERE post_status = 'trash'";

    $results = $wpdb->get_results($query);
    if (!empty($results)) {
    foreach ($results as $post) {
    echo '<pre>';
    print_r($post);
    echo '</pre>';
    }
    } else {
    echo 'No trashed posts found.';
    }

    put it at same dir as your wp-load.php to open it in browser , it will list the trash status post

    Thread Starter nealumphred

    (@nealumphred)

    1.

    My apologies for the mix-up!

    I am carrying on a conversation with the LiteSpeed community on Facebook and accidentally copied the message above about my QUIC.cloud account intended for Facebook and pasted it here in my conversation with you.

    2.

    Concerning your post above about creating a php file with code: I do not go into the code section of my WordPress sites. That’s way above my modest level of expertise.

    If I post the code in the WPCode Lite plugin, will it work there?

    Plugin Support qtwrk

    (@qtwrk)

    no no ,

    just create a NEW FILE with above code , no need to tamper the wordpress itself

    Thread Starter nealumphred

    (@nealumphred)

    I have no idea what “just create a NEW FILE with above code , no need to tamper the wordpress itself” means. How do I create a new file in WordPress without tampering with WordPress?

    Plugin Support qtwrk

    (@qtwrk)

    if you are using a shared hosting, you should have an access to control panel , or FTP

    from there, you should be able to create a new ticket

Viewing 9 replies - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.