addict
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Import Blogger: Unable to loginCopy the text (from <?php to ?>) and paste into a file. Name the file test.php. Upload it to your server. Access it via your web browser (http://www.yoursite.com/test.php).
It will show you the output.
Forum: Fixing WordPress
In reply to: Import Blogger: Unable to loginIt looks like it may be a web host issue. Apparently they don’t allow socket connections to remote hosts. Sucks for me.
Here’s a simple PHP script that can be used to test this.
<?php
$ch = curl_init();curl_setopt($ch, CURLOPT_URL, "http://www.google.com/");
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)');$result = curl_exec($ch);
echo '<pre>INFO';
print_r(curl_getinfo($ch));
echo '</pre>';echo '<pre>RESULT';
print htmlentities($result);
echo '</pre>';echo '<pre>CURLERR';
echo curl_errno($ch) . ' ' . curl_error($ch);
echo '</pre>';echo '<pre>CURLVERSION';
echo curl_version();
echo '</pre>';curl_close($ch);
?>Just thought I’d post back to this in case anyone else has this same issue. I imagine my web host isn’t the only one that doesn’t allow remote socket connections.
Forum: Fixing WordPress
In reply to: Import from blogger. Cyryllic error.Judging from the errors in the second image, I’d say it has to do with the import into MySQL. What version of MySQL are you running?
Forum: Installing WordPress
In reply to: Adding a Blog to an existing web siteSure. You would want to look into creating a theme based on your current design. It will take some time to recreate, but it can be done. I’m in the process of doing the same.
Forum: Fixing WordPress
In reply to: Import Blogger: Unable to loginThat was kind of my thinking. Guess we’ll see if anyone else has an idea.
Forum: Fixing WordPress
In reply to: Import Blogger: Unable to loginYes I can log into the WP Admin. I can also log into Blogger without issues (via the Blogger site).
There’s two error message that appear in the blogger import.
One at the very top that says:
Failed to connect to 66.102.15.100: Permission deniedAnd one near the username/password fields that says:
Login failed. Please re-enter your username and password.Forum: Fixing WordPress
In reply to: Import Blogger: Unable to loginI’ve upgraded to 2.0.2. I still have the same issue as of about a minute ago.
Any ideas?
Forum: Plugins
In reply to: I’ve Been Hacked!!!Interesting. What version are/were you running? Anything in the server logs?
On a side note, I think you’ve got this in the wrong forum. Its not for reporting you’ve been hacked, but rather for WordPress hacks (enhancements)….
Forum: Fixing WordPress
In reply to: Import Blogger: Unable to loginWhat does that have to do with my topic?
Hopefully someone has some ideas for this one…..
Forum: Everything else WordPress
In reply to: How to use WP for Reviews onlyI too am interested in this. I use WordPress on my existing site (http://www.digitaldeviation.com) already, so I’m looking for a way to use it as a review function too.
I just hate to hack it up too much. Upgrades tend to be a pain when you do that. Guess I need to do some more reasearch on this.
Forum: Fixing WordPress
In reply to: RSS Feed ErrorsGot it. It was an issue with the wp-blog-header.php file. I uploaded a new copy of it to resolve the issue.
Forum: Fixing WordPress
In reply to: RSS Feed ErrorsAnyone have any ideas??
Forum: Fixing WordPress
In reply to: RSS Feed ErrorsI tried uploading a fresh wp-feed, wp-rss, wp-rss2 and didn’t have any luck.
Its a standard HTTP 500 error when you click the rss2 link.
Do those files need any special attributes? Is there anything I need to change in order for RSS to work?
Thanks.Forum: Fixing WordPress
In reply to: RSS2 (and 1?) doesn’t workFor RSS feeds you may want to use FeedValidtor (www.feedvalidator.com).
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fcottonijoe.de%2F_blog%2Fwp-rss2.php