Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change Logo in registration form?Hi, is it legal to change the wordpress logo in registration form?
Yeah, lots of people brand the login/registration form. The best way is to poke around in Plugin Directory for a plugin to do it. If you want to hard code it (change core files – which usually is not a good idea) the image is located at…
wp-admin/images/logo-login.gifand is called as a background image at…
wp-admin/css/login.cssForum: Themes and Templates
In reply to: footer in base64… how decrypt it?Forum: Themes and Templates
In reply to: footer in base64… how decrypt it?@enom, @freewallpaperka
The instructions provided by Otto work with the obfuscation method used in your files.@mast. bis
This one is a little different. Looks like it was done via PHPLockit. Your clean file is here –> http://wordpress.pastebin.com/m275646d5PS – STAY AWAY FROM THIS THEME.
Forum: Fixing WordPress
In reply to: Blogroll showing on homepage only, not sidewideI’ll get to that in a moment. If all you’re after is the desire to display the blogroll on the HOME page only an easy way to do it is simply remove the code that calls the blogroll in the appropriate files. Without knowing what theme you are using your home page would be displayed using either home.php or index.php. Leave the code that calls the blogroll intact in either of those files (the appropriate one according to your theme) and remove it from the others.
The other way is via the use of conditional tags. You could do something like this –> open the file that displays your sidebar (again, without knowing the theme you are using it may be sidebar.php) and look for the code that displays the blogroll. It may look something like…
<h2>Links</h2> <?php wp_list_bookmarks('title_li='); ?>Wrap a conditional tag around it as such…
<?php if (is_home()) : ?> <h2>Links</h2> <?php wp_list_bookmarks('title_li='); ?> <?php endif; ?>Forum: Fixing WordPress
In reply to: Blogroll showing on homepage only, not sidewideIs this feasible with wordpress?
Yes. One way to do this is via the use of conditional tags.
Forum: Fixing WordPress
In reply to: upgrading to 2.8.1?Auto-upgrade is the one in Dashboard?
Yes. You’ll find it under the Tools menu. If you want to upgrade manually see this link…
Forum: Fixing WordPress
In reply to: upgrading to 2.8.1?If you’re using the auto-upgrade feature the only themes that will be affected are the Default and Classic themes.
Forum: Themes and Templates
In reply to: footer in base64… how decrypt it?Your file is here…
http://wordpress.pastebin.com/m4745d36d
ps: I really wish you guys would stop using themes with this kind of crap in it. There are oodles of great free themes out there from reputable authors.
Forum: Fixing WordPress
In reply to: Site will no longer display imagesThe only other thing I can think of, and I may be out in left field, is a
mod_securityissue. If it is then it’s definitely a host issue.Forum: Fixing WordPress
In reply to: Site will no longer display imagesHave you tried contacting your host? As both iridiax and I have said all images are throwing a 403.
Forum: Themes and Templates
In reply to: footer in base64… how decrypt it?I like living on the “WILD SIDE” lol.
heh. Just be careful.
Another thing to consider. Authors who have gone to the trouble of obfuscating things sometimes include a little “phone home” feature hidden somewhere in the theme. It could be something as simple as a 1px by 1px image or something more complex as cURL.
If it is cURL then the author can do all sorts of things such as display any content … and I mean ANY … content he wishes on whatever site is using his theme.
When using these themes, which almost can always be found on those shady 3rd party gallery-type sites, ALWAYS inspect EACH and EVERY file before uploading/activating.
Better yet stay away from them. Plenty of great themes from reputable authors out there.
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: get_search_query()I see you have tagged the thread as WordPress 2.2.3
If I’m not mistaken
get_search_query()was not introduced until 2.3Forum: Fixing WordPress
In reply to: meta login link has disappeared – I AM LOCKED OUTYourSite/wp-login.php
Forum: Themes and Templates
In reply to: footer in base64… how decrypt it?Yeah, as you say it will work most of the times but there are a couple of caveats:
1. If there are PHP functions executing in the background they will not be outputted in the generated HTML
2. This requires the user to actually upload and activate the theme. Not something I would advise. While most of the time this obfuscation is merely a tactic to protect the spammy footer links the technique could be used for something far more sinister. I would never upload any code to my server without first knowing what it is or what it does.Forum: Fixing WordPress
In reply to: Close but not close enoughDid you want to log in and take a look?
If you want to send me the details I’ll fix it for you.
len AT my domain (my domain being riteturnonly.com)