Navigation

    ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. wordpress
    Log in to post

    • Changing Your Admin Email on WordPress
      IT Discussion • wordpress mysql mariadb • • scottalanmiller  

      1
      1
      Votes
      1
      Posts
      67
      Views

      No one has replied

    • WordPress Update Error: Updating failed. The response is not a valid JSON response.
      IT Discussion • wordpress php web server litespeed openlitespeed • • scottalanmiller  

      7
      0
      Votes
      7
      Posts
      174
      Views

      So one of our guys tracked it down. It was a typo in the .htaccess file that we received from the customer.
    • UNSOLVED How can I see what process is updating a file
      IT Discussion • wordpress vultr ubuntu 18.04 cockpit hacked wordfence phpmyadmin chattr xhprof • • JaredBusch  

      2
      2
      Votes
      2
      Posts
      55
      Views

      You can trying using auditd to audit the file. sudo apt-get install auditd Running sudo auditctl -l by default show no rules Create a temporary rule to audit changes to index.php sudo auditctl -w /var/www/html/index.php -p rwxa # -p = read, write, execute, attributes Run sudo auditctl -l will show the rule that was created. Now run sudo ausearch -f index.php | more to show what's touching index.php or sudo tail -f /var/log/audit/audit.log | grep index.php.
    • Any recommendation for markdown support in Wordpress
      IT Discussion • wordpress markdown plugin • • JaredBusch  

      12
      0
      Votes
      12
      Posts
      142
      Views

      What about using Ghost? I started with it before moving to Wordpress. It is completely markdown if I remember right. I liked it but didn't feel the plugin availability was there.
    • Setup WordPress with WP-CLI on Fedora with SSL Origin Certificate from Cloudflare
      IT Discussion • fedora wordpress real instructions guide setup fedora 31 wp-cli • • JaredBusch  

      5
      3
      Votes
      5
      Posts
      110
      Views

      This is the SSL score. I assume this is why the A rating and not A+ But not much to do about that since it is Cloudflare that is terminating.
    • SOLVED WP-CLI tries to use sendmail
      IT Discussion • wordpress wp-cli sendmail • • JaredBusch  

      6
      0
      Votes
      6
      Posts
      45
      Views

      thanks. missed that
    • Permission issue with WP-CLI on Fedora 31
      IT Discussion • fedora wordpress permissions fedora 31 wp-cli • • JaredBusch  

      2
      1
      Votes
      2
      Posts
      41
      Views

      @JaredBusch yeah, it's annoying that WP-CLI struggles with that.
    • ERROR 1366 When Important MySQL Database for WordPress
      IT Discussion • wordpress database mysql mariadb sql rdbms • • scottalanmiller  

      2
      1
      Votes
      2
      Posts
      90
      Views

      M

      I've seen that a lot. When I import Drupal databases, I learnt to use its Backup and Migrate module instead, it works flawlessly. Downside is you need to do clean Drupal installation first, but that basically is just creating blank database and putting brick on enter key.
    • WP-CLI and database users
      IT Discussion • security wordpress wp-cli wp • • JaredBusch  

      26
      0
      Votes
      26
      Posts
      231
      Views

      P

      @JaredBusch said in WP-CLI and database users: @Pete-S said in WP-CLI and database users: @JaredBusch said in WP-CLI and database users: @Pete-S said in WP-CLI and database users: And when you use -e you should have it after user and password so the SQL commands you want to execute comes after the -e. That was a once off artifact of me doing it on this system after the root password has been set. OK, so maybe this then: sudo mysql -e "CREATE USER [email protected] IDENTIFIED by '$DB_PASS';" sudo mysql -e "GRANT ALL ON $DB_NAME.* TO [email protected];" sudo mysql -e "FLUSH PRIVILEGES;" right. Updating the guide. but half tempted to leave the single quotes everywhere it that causes no error in order to protect against spaces by others. Though I am using pwgen to to this. It's kind of f*cked up to have spaces in user names and passwords. Personally I don't use something unless it's specifically needed but either way works.
    • Wordpress Theme Recommendations
      IT Discussion • wordpress • • AdamF  

      13
      0
      Votes
      13
      Posts
      83
      Views

      @Obsolesce said in Wordpress Theme Recommendations: @scottalanmiller said in Wordpress Theme Recommendations: @Obsolesce said in Wordpress Theme Recommendations: @Dashrender said in Wordpress Theme Recommendations: We use DIVI - but I'm not saying it's good or bad as I've never used another.. or WP plain. DIVI? Divi purports to be the most popular theme on WP. It's definitely popular and seems to do a lot and has decent licensing rules. But is pricey, too. Oh, I googled it and seen so many other things lol. I haven't heard of it before so I wasn't sure what I was looking for. it adds a ton to WP - including a wsyiwyg editor (if you want to use it), etc..
    • SOLVED Resolved: Weird Website Redirect Issues
      IT Discussion • centos dns wordpress cloudflare cpanel domain name redirect 301 redirect • • wrx7m  

      4
      0
      Votes
      4
      Posts
      113
      Views

      Turns out that there was a wildcard A record in DomainA2.com
    • Remove Social Media Icons like Google+ from Flawless Wordpress Theme by Goodlayers
      IT Discussion • wordpress web design google+ flawless theme goodlayers • • scottalanmiller  

      20
      0
      Votes
      20
      Posts
      260
      Views

      @IRJ said in Remove Social Media Icons like Google+ from Flawless Wordpress Theme by Goodlayers: Maybe just dump that bad theme all together. I'd love to, but I just host the site and help out a little.
    • WordPress - Plugins to Manage and Extend User Roles/Permissions
      IT Discussion • wordpress permissions website plugins plugin roles wp wp-admin • • wrx7m  

      40
      1
      Votes
      40
      Posts
      351
      Views

      S

      @IRJ You are passionate about computers, you love to write code. Well, what's more exciting than being able to create your own plugins. When you know that WordPress is today one of the most used CMS on the web, it would be really interesting to see how a plugin is made and to be able to create it yourself. [Check it here] (http://bit.ly/2KxPChJ)
    • Enable Nginx Compression and compress js and images :)
      IT Discussion • wordpress nginx wordpress optimization server side compression • • IRJ  

      1
      3
      Votes
      1
      Posts
      79
      Views

      No one has replied

    • SOLVED Tracking Down an Apache & WordPress Memory Leak
      IT Discussion • linux ubuntu wordpress apache httpd ubuntu 19.04 prefork • • scottalanmiller  

      5
      1
      Votes
      5
      Posts
      256
      Views

      We got it. Had to open the Nginx logs and noticed too many "posts" in the error log. Dug in and it was three ranges overseas all hitting with a "post timeout attack." It was a light DDoS where sessions were being opened and held causing nginx to wait on a timeout. This caused Apache to just increment forever. Once we blocked those ranges, the Apache thread count started to drop for the first time, and memory started to release. And the continuous flood of nginx error logs ceased. If you are looking at nginx error logs, this is what you look for: upstream timed out (110: Connection timed out) while reading response header from upstream, client: You can use this command to collect the offending IP addresses: grep "upstream timed out" error.log | cut -d' ' -f20 Then use your firewall to shut them down. We are all good now! Woot.
    • SOLVED WordPress Cutover Main Page Works, but Secondary Pages Do Not
      IT Discussion • linux ubuntu wordpress nginx apache php cloudflare ubuntu 19.04 varnish • • scottalanmiller  

      19
      0
      Votes
      19
      Posts
      254
      Views

      Well let's talk about fedora and updating killing a laptop lol....
    • If Not WordPress, What's the Alternative
      IT Discussion • wordpress drupal cms joomla ghost cms made simple • • scottalanmiller  

      20
      2
      Votes
      20
      Posts
      317
      Views

      @black3dynamite said in If Not WordPress, What's the Alternative: @scottalanmiller said in If Not WordPress, What's the Alternative: @360col said in If Not WordPress, What's the Alternative: Well if the site is not complex then something like Grav these days is much better IMHO I've been eyeing Grav for a while. It does look very interesting. ANy guesses as to pros and cons vs. WordPress? Beyond the obvious flat file vs database differences... Ever since discovering Wiki.js, I like the idea of using git for versioning backups and deployments. https://github.com/trilbymedia/grav-plugin-git-sync You can automate backups of the MariaDB, though. Not all that much different. Lighter, on big loads. GIT is actually a very heavy process. Great for tiny things, but bad for big ones.
    • WordPress website migration
      IT Discussion • wordpress migration lets encrypt • • IRJ  

      20
      0
      Votes
      20
      Posts
      227
      Views

      @IRJ This would be a heck of a guide if you ever get the time to do it
    • SOLVED WordPress admin page redirecting to IP
      IT Discussion • wordpress apache lets encrypt • • IRJ  

      4
      0
      Votes
      4
      Posts
      88
      Views

      @JaredBusch said in WordPress admin page redirecting to IP: Is the site URL correct in the settings Been there many times
    • Facebook Pulling Old og:title Data from WordPress
      IT Discussion • wordpress facebook web design html open graph facebook debugger • • scottalanmiller  

      5
      1
      Votes
      5
      Posts
      172
      Views

      P

      @scottalanmiller Try with another separator instead of dash, just to make check if it's the dash or something else. Maybe just remove it altogether.
    • Standard Plugins for WordPress Sites
      IT Discussion • wordpress • • Reid Cooper  

      14
      5
      Votes
      14
      Posts
      369
      Views

      @Reid-Cooper said in Standard Plugins for WordPress Sites: Thanks guys. Seems like not too many people have plugins focused on performance. I'm surprised, seems like those things would be pretty common. When I go to my WP site, performance seems fine.
    • Unable add plugins and themes to Wordpress
      IT Discussion • wordpress plugins • • EddieJennings  

      24
      0
      Votes
      24
      Posts
      440
      Views

      @JaredBusch said in Unable add plugins and themes to Wordpress: @EddieJennings said in Unable add plugins and themes to Wordpress: @JaredBusch said in Unable add plugins and themes to Wordpress: httpd_can_network_connect And setsebool -P httpd_can_network_connect on appears to be the answer . And has nothing to do with contexts True. That was a point of confusion.
    • Website Security Auditor Recommendations Wanted
      IT Discussion • security wordpress aws website hacked audit security audit • • wrx7m  

      5
      2
      Votes
      5
      Posts
      213
      Views

      YOu can also do a free test from Qualys https://www.qualys.com/free-services/ https://www.qualys.com/community-edition/
    • Wordpress 5
      IT Discussion • wordpress • • WLS-ITGuy  

      13
      1
      Votes
      13
      Posts
      252
      Views

      Our first sites are on it and others are updating today. So far, so good.
    • Traffic statistics for self-hosted WordPress
      IT Discussion • wordpress traffic metrics • • EddieJennings  

      13
      0
      Votes
      13
      Posts
      469
      Views

      @scottalanmiller said in Traffic statistics for self-hosted WordPress: Check out Matomo I've also never been a huge GA fan. Will check this out.
    • New Ecommerce Site?
      IT Discussion • wordpress web design shopping ecommerce • • hobbit666  

      27
      0
      Votes
      27
      Posts
      685
      Views

      I use wordpress with Wocommerce, integrates with paypal and stripe.
    • opendynamo.org
      IT Discussion • wordpress website web development • • StuartJordan  

      3
      0
      Votes
      3
      Posts
      409
      Views

      2012...ouch, scrap this one then....
    • Wordpress Install - Page is trying to load unsafe script
      IT Discussion • wordpress nginx fedora 27 • • NashBrydges  

      28
      0
      Votes
      28
      Posts
      3406
      Views

      @black3dynamite said in Wordpress Install - Page is trying to load unsafe script: @NashBrydges Change CustomLog /var/log/access.log combined to CustomLog /var/log/httpd/access.log combined Good catch. Thanks.
    • WordPress behind NGINX Reverse Proxy issues
      IT Discussion • wordpress nginx • • bnrstnr  

      10
      0
      Votes
      10
      Posts
      947
      Views

      @bnrstnr said in WordPress behind NGINX Reverse Proxy issues: @scottalanmiller said in WordPress behind NGINX Reverse Proxy issues: https://mangolassi.it/topic/13062/install-a-basic-wordpress-site-with-wp-cli Doh, somehow I missed this. And this one.... https://mangolassi.it/topic/16084/installing-fedora-27-lamp-stack-plus-wordpress/
    • Using Vultr Apps for WordPress Hosting
      Water Closet • wordpress vultr web hosting • • brandon220  

      7
      1
      Votes
      7
      Posts
      611
      Views

      @brandon220 said in Using Vultr Apps for WordPress Hosting: I just loaded one to do some testing. Don't plan on using it for production. I may use Bluehost or Vultr on Fedora. My main reason was to get familiar with a theme and see if I like it. Then, I can destroy the instance and make it permanent and with the correct underlying OS. Works fine for that.