jon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Automatic Update to WordPressYes, talk to your host about that.
Forum: Fixing WordPress
In reply to: Automatic Update to WordPressThe best place to start is with your hosting. They should have a recent backup that you can restore. You will need to restore both the files in the WordPress directory (and all subdirectories) and the WordPress database.
Forum: Everything else WordPress
In reply to: Manual install vs. hosting service install pro/conTimes change, obviously, but I stopped using automated installs provided by hosting companies (or software packages that do it for them) after having trouble updating WordPress and especially problems reinstalling. I’ve even seen some weird options selected that caused me problems later. Admittedly, that was THEN and this is NOW.
I still recommend doing the standard WordPress install by downloading from wordpress.org and using the /wp-admin/install.php approach described in the 5 minute install. Mainly, because you learn important things that will help you debug issues later. Mostly where key files and settings within files are.
Support for the “Anywhere” plugin has been moved to here:
http://zatzlabs.com/forums/forum/shortcodes-anywhere-or-everywhere/David would be happy to look into this for you.
Forum: Fixing WordPress
In reply to: Probleem met WordPlease re-post in the Dutch support forum: https://nl.wordpress.org/support/
Gelieve repost in de Nederlandse support forum:
Forum: Fixing WordPress
In reply to: Reinstall completely failed – I’ve killed my wife’s blogAll good advice. Every WSOD I’ve ever experienced suddenly became a lot easier to fix once I turned on WP_DEBUG and WP_DEBUG_LOG with statements like
define( 'WP_DEBUG', true );in wp-config.php. The log appears in /wp-content/.Official Codex doc. on WSOD is here: https://codex.wordpress.org/Common_WordPress_Errors#The_White_Screen_of_Death
To simplify the /wordpress/ to look at root of domain problem, this works the best: section “Using a pre-existing subdirectory install” at https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Using_a_pre-existing_subdirectory_install though obviously not until you have WSOD fixed. You may even want to get WordPress initially working by setting its URLs to include the /wordpress/ subdirectory and switch later to make all the hard-coded URLs on Pages and Posts work. Change URL is described here: https://codex.wordpress.org/Changing_The_Site_URL
Forum: Fixing WordPress
In reply to: Display content based on number fieldWith some PHP skills, you could write your own shortcode to do this.
Without, you would have to find a plugin that would allow you to do this.
Try a search like this:
https://wordpress.org/plugins/search.php?q=conditional+displayHaven’t looked in depth, but this plugin might work:
https://wordpress.org/plugins/conditional-tags-shortcode/Forum: Fixing WordPress
In reply to: php 5.5.0 and WP 4.1As with all things computer-related, Backup is the key to addressing your fears. Backup both the files and database used by WordPress.
Then you can try the Updates and restore from backup if they don’t work out.
But, people do updates all the time and don’t lose data from their site.
“You must export and import with the same Encoding.” UTF8 is recommended.
This is an issue with Encoding, which phpmyadmin refers to as “Character set of the file”.
You must export and import with the same Encoding. You can also run into problems if the database tables do not correctly specify the “Collation” as phpmyadmin calls it. WordPress prefers Collation to be utf8mb4_unicode_ci
Admittedly, I have no experience with non-English character sets, so there may be other issues, but I would start with re-doing the export and import, making sure that the Encoding matches.
Forum: Localhost Installs
In reply to: Best development server for WP newbie?Historically, I have done most of my development on the same web server as the Production web site resides or will reside. Except initial PHP or MySQL work, to avoid the risk of an infinite loop or other event that might impact the Production web site.
What I wanted to suggest is that you think seriously about compatibility issues. I’ve lost count of the times that I have developed something that did not end up working on the Production web site because of differences in PHP or MySQL versions, Permissions, or even operating system. You will also find that some plugins or services you will want to use require a URL accessible from the public internet. These are all reasons that any computer in your office may not be the best choice for a development environment.
In my own case, I currently have two 2GB RAM VPS accounts, each running identical software, one for Prod and one for Test web servers. I have to take care of all the software myself but each VPS cost me less than $4 a month. In other words, if you don’t need software support, just “hardware” and network support, you can find affordable and reliable VPS solutions that make a lot more sense than recycling an old computer on your office floor.
Forum: Fixing WordPress
In reply to: WordPress high Steal time on Linux Ubuntu 16.04.1First, I will admit that I never use Caching in WordPress, which would likely make my past problems less of an issue. With that said…
In my experience you need at least 1.5GB of RAM, and possibly 2GB, to run even a medium traffic WordPress web site with more than a few plugins.
You specifically mention Admin panel slowness. Admin panels take about twice the RAM of public parts of a WordPress web site.
And, yes, all of my VPS experience has been Ubuntu.
Forum: Fixing WordPress
In reply to: Shortcode looping/ html tagsJust saw this now.
What you have done should work. I’m out of ideas. And not sure what else to say.
Forum: Fixing WordPress
In reply to: Shortcode looping/ html tagsref. – https://codex.wordpress.org/Shortcode_API
What you have displayed is not incorrect, just unnecessary. It is the function for [shortcode-activate] that needs to handle nested Shortcodes. It would become something like this:
add_shortcode(‘your_initials_shortcode_activate’, ‘your_initials_shortcode_activate’); function your_initials_shortcode_activate( $att, $content ) { $content = do_shortcodes( $content );- This reply was modified 9 years, 7 months ago by jon.
Forum: Reviews
In reply to: [InstallActivateGo Remember Me] didn’t workAs the Forum Moderator would be quick to point out, it is considered impolite (and unfair to the Plugin Author) to post a bad review without trying to get Support. In this case, the Plugin Owner has a brand new support forum just waiting for its first Remember Me question:
http://zatzlabs.com/forums/forum/remember-me/