Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: unable to access dashboardHave you tried changing those values via the link mercime gave you?
Forum: Fixing WordPress
In reply to: unable to access siteYou have forgotten the login credentials to access the WordPress backend? Is that what you’re saying? If so, do you remember the login details to access your hosting account?
Forum: Fixing WordPress
In reply to: How to enable gzip?Hi Rlyeh. The option to enable gzip compression was removed in WordPress 2.5 the logic being that Apache could handle it much more efficiently than PHP. However, many people don’t have root server access (as in shared hosting) so that leaves them out.
I’ve not used WP Super Cache but I believe it has an option to enable gzip compression. Another option is Austin’s GZIP Plugin. I’ve not tried it either.
Perhaps someone else may chime in if there is an easier (obvious) way to do it. 🙂
Forum: Fixing WordPress
In reply to: Can login go to blog, not dashboard?Hi EdB. Have a look at Peter’s Login Redirect in the plugin directory. You can create redirects based on specific users, specific roles and specific levels.
Forum: Installing WordPress
In reply to: wp-admin to adminYup. Personally I wouldn’t change it. It’s just too much hassle for the perceived benefit.
Forum: Themes and Templates
In reply to: how to increase font size of twenty ten title description?Hi darvish. Try this:
Look in
style.cssfor the section called “Header” and you will see this …#site-description { clear: right; float: right; font-style: italic; margin: 14px 0 18px 0; width: 220px; }Add
font-size:##px;where ## is the actual size you want. For instance, here is one possibility …#site-description { font-size:22px; clear: right; float: right; font-style: italic; margin: 14px 0 18px 0; width: 220px; }Forum: Installing WordPress
In reply to: install.php not workingHi Roks. It sounds as if the server is not parsing the php file so your computer tries to download it. If you have access to the server you can try adding
AddType application/x-httpd-php .phpto the httpd.conf file. If not you’ll have to contact your host.
With respect to the first question, having the closing
?>tag at the end of wp.config.php is optional. Details at PHP Docs.Forum: Installing WordPress
In reply to: wp-admin to adminHi zememe. I suppose it’s technically possible to do what you want however that folder is referenced in numerous files. They would all have to be changed. You could speed up the process with a “text replace” utility like wingrep I guess but as soon as you update WordPress all the changes will be lost. Another possible option would be a little redirection magic in the root
.htaccessfile.I’m curious though, why do you want to change the folder name? Security? As long as you have a good strong password and proper permissions you have nothing to worry about.
Might want to review Hardening WordPress for some great tips.
Forum: Fixing WordPress
In reply to: Header trouble with /feedHi oaggle. There seems to be an error at Line 27 of the
index.phpresiding at root which is affecting the file located atwp-includes/feed-rss2.phpwhich is curious, because theindex.phpfile at root does not have 27 lines.Looking at your source code i see a bunch of javascript at the beginning of your document – it should not be there. My guess is this code was somehow inserted in the
index.phpfile at root. Did you inadvertently do that? If not, we have a bigger problem.Forum: Fixing WordPress
In reply to: OMG i uploaded someone else’s blog!I never would have guessed that in a million years either!
Forum: Fixing WordPress
In reply to: Need Help ImediatlyThere is no contact form at http://profiles.wordpress.org/lenk
I meant the contact form of the site listed at that link. 🙂
To make it easier just shoot me an email to len AT wpcanada DOT ca
Forum: Fixing WordPress
In reply to: OMG i uploaded someone else’s blog!Hahaha. You know I saw your support ticket earlier in the day about 5 unknown authors. I thought maybe you had a few guest bloggers that you had forgotten about but I ruled it out when I actually sifted through ALL of your archives looking for them. Since I’ve never encountered such a thing I’ve been racking my brain trying to figure out what the heck was going on.
Now I know. 🙂
Forum: Fixing WordPress
In reply to: Need Help ImediatlyI know you can’t access the site admin. I also know you could not have reverted what you did.
Currently, your site is redirecting to shahenajaf.org/ilm yet in the source code the site is located at shahenajaf.org That’s how I know you could not have undone what you did.
The link I gave you gives several different methods on how to change the URL back to what it was.
If you’re really unsure of what to do I can change it back for you. If you don’t trust me with your login credentials that’s fine, I understand. But know that I have been helping out in this forum for over 2 years. If you want to get in touch with me use the contact form at my site. (the site listed here -> http://profiles.wordpress.org/lenk/ )
Forum: Fixing WordPress
In reply to: A new theme and a fatal errorThanks for the additional info sayontan.
Forum: Fixing WordPress
In reply to: Best way to display copyable code in a WordPress page?Hi Wendel,
Have a look at Writing Code in Your Posts