renderinnovations
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 3.5.1 Gallery Thumbnail Issues IE8Sorry,
Found the issue;
it was css. You can’t specify a thumbnail’s width with css or it gets ruined in ie8
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostAwesome! There are tons of people that are having this issue with jigoshop. I’ll be sure to send them to this discussion to solve the issue! You’re help has been so awesome
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostOkay so here is a recap on the issue.
You are right, they have a second argument and the code
'ajax_url' => (!is_ssl()) ? str_replace('https', 'http', admin_url('admin-ajax.php')) : admin_url('admin-ajax.php'),
Is wrong.Then, for some reason in the actual admin-ajax folder it was trying to call a full domain name, instead it needed to have just have
wp-admin/includes/ajax-actions.php'
I”ll contact the developer and let them know of error.
You have helped me soo much. Expect good words around!
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostIt’s officially fixed!
Thank you sooo much!
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostOkay will do. However, the actual checkout creates
Warning: require_once(/home/predator/public_html/https://predatorproducts.com/wp-admin/includes/ajax-actions.php) [function.require-once]: failed to open stream: No such file or directory in /home/predator/public_html/wp-admin/admin-ajax.php on line 30
Fatal error: require_once() [function.require]: Failed opening required ‘/home/predator/public_html/https://predatorproducts.com/wp-admin/includes/ajax-actions.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/predator/public_html/wp-admin/admin-ajax.php on line 30
error. after simply adding the ajax_url. I”ll keep looking at it
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the Hostokay that part is fixed haha wow, I’m not with it. I’m sorry
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostI just undid everything, for some reason, saying there’s something extra. Hmm
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the Hostit’s because currently I’m editing the line 330 in jigoshop
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostI the code you gave me in wp-config.php right above “that’s all happy blogging”
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostSorry, I changed the wp-config.php file. which resulted in the fatal error above.
I’m now trying to changed
$wordpress_https->isSsl()Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostGetting close!
Here is result on the checkout page. ( https://www.predatorproducts.com/shop) … The error is on the checkout page when you’re updating your shop items.
How did you figure that problem out by the way?Warning: require_once(/home/predator/public_html/https://predatorproducts.com/wp-admin/includes/ajax-actions.php) [function.require-once]: failed to open stream: No such file or directory in /home/predator/public_html/wp-admin/admin-ajax.php on line 30
Fatal error: require_once() [function.require]: Failed opening required ‘/home/predator/public_html/https://predatorproducts.com/wp-admin/includes/ajax-actions.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/predator/public_html/wp-admin/admin-ajax.php on line 30
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostSorry, just saw your post
Edit: Nevermind, I see the issue. They’re using str_replace on the result of admin_url, overriding anything my plugin would have done to secure the url.
Jigoshop v1.2.3, jigoshop.php, Line 330
(!is_ssl()) ? str_replace(‘https’, ‘http’, admin_url(‘admin-ajax.php’)) : admin_url(‘admin-ajax.php’)
Since you’re using CloudFlare, WordPress’ built-in is_ssl() method returns false. If you change that call to $wordpress_https->isSsl() it should fix it. Also, removing that str_replace call would fix it.A more permanent solution would be to add this to your wp-config.php to trick WordPress.
if ( isset($_SERVER[‘HTTP_CF_VISITOR’]) && strpos($_SERVER[‘HTTP_CF_VISITOR’], ‘https’) ) {
$_SERVER[‘HTTPS’] = ‘on’;
}
This is just a theory. Let me know.I’ll take a look! Thanks so much for your help. Seriously helping the troubled feeling
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostI’ve clicked :
Force SSL Login
Always use HTTPS when logging in.
Force SSL AdministrationAlways use HTTPS while in the admin panel.
On the dashboard of your plugin, then the wp-admin/admin-ajax.php says 301 moved permanently. There has to be an association with ajax not reffering to https rather it’s referring to http. Still on the search…
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostI think I see the error… it’s just the need on having to find where the file is. My assumption is, a function is calling a https://domain.com/wp-admin/admin-ajax.php It’s calling http not https.. thats a guess. Thanks for your help! I’ll keep trying to search.
The plugin you’ve got is awesome though! Thanks for developing it!
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Edit the HostAlso, for the HTTPS wordpress plugin you built, is it to ensure that all links are to use https? Here’s a screenshot of an issue i’m finding.
I notice wpadmin-ajax is referring to http instead of https… I’m just shooting blindly, but any ideas?
(not sure if this error may help with your development at all)