Angela
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp 2.7 error: Failed to connect to FTP Server https://My boyfriend’s WP site is now experiencing the same problem after working fine for ages, and none of the solutions put forth to date here have fixed it. My sites, however, running the same WP version and a lot of the same plugins, all update just fine.
His site is hosted with One World Hosting, while mine are all with PowWeb. Maybe it’s a host issue? lldanj and dragonsjaw, who hosts your websites?
Forum: Installing WordPress
In reply to: Moved site to new server, now doesn’t displayI’m working on a client’s site, also hosted with Verio, and I ran into this exact same issue.
I added an echo to the top of index.php, so I could tell that the file itself is being loaded. I narrowed the problem down to this line:
require('./wp-blog-header.php');
I changed it to this:
require('wp-blog-header.php');
…(removing the “./”)and now it works!I’m not sure how it will stand up to future automatic upgrades, but thankfully it’s such a minor change that having to go back in later and do it again is trivial, at best.
Hope this helps! ??
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Upgrade to R3 gives include errorI’ve had the same problem as others have had: the include() error, before saving the options and moving the template files with version 3.0.2. I had to take those steps before 3.0.2 would work for me.
Additionally, the plugin contains this line in includes.php:
require_once('services.php');
I happened to have a file named services.php from the previous (non-WP) version of my site in the site’s root directory. *That* file was included rather than the one in the YARPP plugin directory. Renaming my services.php got rid of this particular include problem, but I figured you’d probably want to be alerted to this behavior nonetheless.
Congratulations on a brilliant plugin, and I look forward to tinkering with the new template feature. ??