shiroamada
Forum Replies Created
-
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Cannot access nextscripts.comMy IP is 175.136.236.* we run in dynamic IP, I dont think we are doing harm to your website. Maybe you should consider implement CDN and firewall not 403 direct blocking your customer / user.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Cannot access nextscripts.comAre you not going to do something about it.
I am in Malaysia still not able to view your website. But I can view it via hidemyass.comPlease do something about it.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Cannot access nextscripts.comDo you raise a ticket to your hosting regarding this issue? suspected firewall config / htaccess config to make this issue happen.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Facebook authorization problem@nextscripts, you website is down, keep showing 403 Forbidden Issue. Kindly fix your website first…
Forum: Plugins
In reply to: [WP eCommerce] Product editor hangs on ThickBox progress bar after WP updateA Quick fix for this, which is work for me.
go to
/plugins/wp-e-commerce/wpsc-admin/js/admin.js
go to line 316, and comment the following line./* jQuery(“a.thickbox”).livequery(function(){
tb_init(this);
});*/My product able to update without any problem. I am not sure any side effect from now.
Hi, I also having the same problem. I am using a clean wordpress and activate the Plug-In. My title also the same
Wordpress | Just another WordPress siteWordpress | Just another WordPress siteIf I enter a value (blank space), in the
Homepage
Title template:then It will only display once.
is there bug for the title?Forum: Fixing WordPress
In reply to: wordpress 2.9.2 query string questionI did some edit, no sure it is safe or not, please comment on this solution.
wp-includes\canonical.php
original:// Note that you can use the “redirect_canonical” filter to cancel a canonical redirect for whatever reason by returning FALSE
$redirect_url = apply_filters(‘redirect_canonical’, $redirect_url, $requested_url);if ( !$redirect_url || $redirect_url == $requested_url ) // yes, again — in case the filter aborted the request
return false;line 293 I added
list($base_url, $query_string) = explode(‘?’,$requested_url);
$position = strpos($query_string, ‘&’);
if($redirect_url != $requested_url)
{
if($position == 0)
{
return false;
}
}After I did the edit, I able to passing with ?& together without any problem.