vikasumit
Forum Replies Created
-
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Captcha image not loading in IE 11+1 vote it is not working on chrome or IE or any browser. the Captcha image is broken.
Generally when you have anythin before teh <DocType> or <html> tag in IE it got left aligned. I check your page and it has some
some buyandsell AD’s Code available probably that is why page is not aligned. Please follow Valid HTML and you never have such problemForum: Fixing WordPress
In reply to: open_base_dir restriction in effect TinyMCE AdvancedWell, that is as simple as remove that line from .htaccess that include said file. If you are using only wordpress with default configuration and not permlink [with url rewriting] you probably don’t need .htaccess at all.
If you are not comfortable with .htaccess, you should as your developer for the same, just deleting that one line from .htaccess will solve the problem for now.
Forum: Fixing WordPress
In reply to: open_base_dir restriction in effect TinyMCE AdvancedThis is a new hack for wordpress and oscommerce that is in circulation. I wrote a guide https://bit.ly/hkhMM8
Hope that help
Forum: Fixing WordPress
In reply to: Importer for Blogger failsAnyone there to help us.. we are havign problem importing our blogspot account ..:(
Forum: Fixing WordPress
In reply to: Import Blogger Errorme too need help for this..
Please pleaseForum: Fixing WordPress
In reply to: URL rewriting problemHi,
Not sure why and how that problem created. I read most of blog/forum post and all suggest some conflict to url rewriting that stop Working of URL Permalinks.
I solved my problem, by doing two things.
1) Sort the URL rewriting rule as per my usage.
2) Add some custom rules as per my requirement. all these need to be done in classes.php file (in function function rewrite_rules() )Hope that help others too
Forum: Fixing WordPress
In reply to: URL rewriting problemHi,
I have posts in multiple category, and I am using Apache 2.0 +
here is my .htaccess for your reference
<Files .htaccess>
order allow,deny
deny from all
</Files># Begin non-www page protection #
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.getmeringtone.com [NC]
RewriteRule ^(.*)$ https://www.getmeringtone.com/$1 [L,R=301]
</IfModule>
# End non-www page protection #DirectoryIndex index.php index.html
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
hope that helps