rebelguru
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] FB for WOOCommerce won’t connect or somethingI’m having the exact same issues and also tried re-installing the plugin. It’s ever since the upgrades. Would love a fix to this as I’m seeing a lot of others having the same issue in the support forums.
I tried adding the shortcode in my theme’s php file and it is not working. Any other way of adding it to the top?
I still need to keep jquery checked off as it causes a conflict with my gallery plugin.
I just installed the latest version and have the same issue.
Forum: Plugins
In reply to: [Social Count Plus] Facebook counter says "0"Hey Claudio, I have the same issue on both my sites as well:
geekpr0n.com
myfreakinears.comSometimes it works, most of the time it shows 0. Let me know if there’s anything I can do to fix that.
I had the same problem. It broke all of my posts upon upgrade and I have 1500+ posts. I had to deactivate the plugin. Here’s the error:
“WordPress database error: [Unknown column ‘day_no_time’ in ‘field list’]
INSERT INTO wp_popularpostsdatacache (id, day, day_no_time) VALUES (23315, ‘2012-08-31 14:57:13’, ‘2012-08-31’) ON DUPLICATE KEY UPDATE pageviews = pageviews + 1, day = ‘2012-08-31 14:57:13’, day_no_time = ‘2012-08-31’;”Forum: Fixing WordPress
In reply to: Proper 301 Redirect in .htaccessI got it working! I ended up having to use a rewrite afterall after playing with cpanel’s redirect app. Here’s my code:
RewriteCond %{HTTP_HOST} ^g33kpron.com$ [OR] RewriteCond %{HTTP_HOST} ^www.g33kpron.com$ RewriteRule ^archives\/2374$ "http\:\/\/www\.g33kpron\.com\/twitter\-infographic\/" [R=301,L] RewriteRule ^archives\/2370$ "http\:\/\/www\.g33kpron\.com\/damn\-ninjas\-now\-crashing\-into\-apple\-stores\/" [R=301,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Only difference is I had 135 redirects instead of the 2 I listed above. Works perfectly. Just thought I’d share the code.
Forum: Fixing WordPress
In reply to: Proper 301 Redirect in .htaccessThanks for clearing that up zoonini. I tried that but this time keep getting 500 errors now and takes the whole site down. Here’s an example:
Redirect 301 /archives/2374 https://www.g33kpron.com/twitter-infographic Redirect 301 /archives/2370 https://www.g33kpron.com/damn-ninjas-now-crashing-into-apple-stores # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: Proper 301 Redirect in .htaccessi can’t get my redirects working properly at all, it’s weird, only 1 url will redirect, everything after that won’t. So if I add the other urls I want to redirect, I get a 500 server error.
I’m trying to redirect all my old posts to the new url structure. An example would be redirecting: https://www.g33kpron.com/archives/2374 to https://www.g33kpron.com/twitter-infographic/
Current htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^archives/2374$ https://www.g33kpron.com/twitter-infographic$ [R=301,L]
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>I’m so stumped.
Forum: Fixing WordPress
In reply to: Changing from numeric permalinks to customI’ve tried 5-6 of them and none could work.