3v1l5w1n
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My Blog is not opening in Internet ExplorerI have no issues in 7.0.5730.13 running on Windows XP SP3 but i actually I’ve seen similar problems before and they were always caused by javascript trying to write to DOM element before the page it fully loaded (DOM is parsed and window.onload is called). I suggest you look through all javascript on your site and wrap it inside
jQuery(document).ready(function() {});
especially the inline javascript…
p.s. you can see if javascript is causing the issue by disabling js in IE and trying to load your site then
Forum: Fixing WordPress
In reply to: SEO Question : Moving to WordPress from static html websiteuse 301 redirect (has to be done server site)
Forum: Fixing WordPress
In reply to: display post with custom fieldsI guess the answer is in Template Hierarchy
Forum: Fixing WordPress
In reply to: display post with custom fieldsbump …
Forum: Fixing WordPress
In reply to: Permalinks clash with Directory NameEvery wordpress installation has one, probably your ftp client doesn’t show system protected files … try using the Robots Meta plugin https://www.ads-software.com/extend/plugins/robots-meta/. It should let you edit the .htaccess file from within the wordpress dashboard
Forum: Fixing WordPress
In reply to: Permalinks clash with Directory Namethe problem is the .htaccess mod-rewrite that sends the “data” from the permalink to index.php works only if there is no actual directory with that name …
try the following, open the .htaccess file in your blog’s root directory … it should look like this:
rewriteEngine on # BEGIN WordPress # requested URL_path does not resolve to existing file rewriteCond %{REQUEST_FILENAME} !-f # and requested URL-path does not resolve to existing directory rewriteCond %{REQUEST_FILENAME} !-d # rewrite the request to WordPress rewriterule . /index.php [L] # END WordPress
and add this on a new line right after “# BEGIN WordPress “
# If requested URL-path does start with "/ipl/" rewriteCond %{REQUEST_URI} ^/ipl(.*)$ # rewrite the request to WordPress rewriterule . /index.php [L]