smilepak
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] image browser on main pagespecially the slideshow part…i ment
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] image browser on main pageHmm that didn’t work, any other suggestion?
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] fsockopen errors?Apparently, when upgrading all of the old download information in the database no longer works. If I upload a new one, it works.
Forum: Fixing WordPress
In reply to: Import User Profile From PHP Nuke?Nevermind, I think this will work nicely…
http://www.dagondesign.com/articles/import-users-plugin-for-wordpress/
For anyone else interested.
Forum: Fixing WordPress
In reply to: Import blogger to wordpress at GodaddyI am on the same boat and been trying to make head or tails of this.
Need to edit the blogger.php file inside wordpress to allow it to go through this proxy server.
There is a sampel on godaddy for paypal method, but can’t seem to figure out how to work it…maybe someone with more PHP skill could help
http://help.godaddy.com/article/289
Below is a PHP script that uses CURL to connect securely to a remote system (http://www.paypal.com), obtain data from that system and then creates a Web page based on that data.
Note: On our shared hosting, any CURL applications that make secure HTTP connections (HTTPS over port 443) need to pass through a proxy server. The address for this proxy server is proxy.shr.secureserver.net and connections must specify the use of port 3128. The code below already includes this information
<? $URL="https://www.paypal.com"; if (isset($_GET["site"])) { $URL = $_GET["site"]; } $ch = curl_init(); echo "URL = $URL <br />n"; curl_setopt($ch, CURLOPT_VERBOSE, 1); curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, TRUE); curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); curl_setopt ($ch, CURLOPT_PROXY,"http://proxy.shr.secureserver.net:3128"); curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt ($ch, CURLOPT_URL, $URL); curl_setopt ($ch, CURLOPT_TIMEOUT, 120); $result = curl_exec ($ch); echo "<hr><br />n"; echo 'Errors: ' . curl_errno($ch) . ' ' . curl_error($ch) . '<br /><br />'; echo "<hr><br />n"; curl_close ($ch); print "result - $result"; echo "<hr><br />n"; ?>