CSD-Images
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 pages and variablesCheers that’s what I suspected, so I’ll modify the theme template call with !=404 statement. I really don’t want to create a single page as I’m trying to reduce the clutter of files!
Forum: Themes and Templates
In reply to: Creating New WP ThemeForum: Fixing WordPress
In reply to: strange javascript warning on my webisteIt does sound like as if you was hacked. I’d go through all the rest of the files to be on the safe said. Also monitor the site for unusual accounts or access as they’ve may have installed a back door.
Look for anything that’s encoded in base64 as well.
Forum: Fixing WordPress
In reply to: strange javascript warning on my webisteindex.php are core files, if you pulled the files down from the server upload them back up but strip out the JS (back up the files before changing them).
The site should be back to normal then. If you didn’t back up the files then upload the WordPress files again, but leave wp-config.php alone as that points to your database and settings.
Forum: Fixing WordPress
In reply to: strange javascript warning on my webisteDon’t look through the files on the Dashboard. you need to have a local copy to search through otherwise you’ll probably miss files as the Dashboard doesn’t show every file just the Theme files (even then it misses some). This is why I said download all the files from your web server with the FTP client and review every file such as the Theme, the WordPress files and so on. You may also want to review the .htaccess file to make sure it’s not redirecting anything untoward.
Once you have a copy of your web files on your hard drive do a search for the string: <script type=”text/javascript”>document.write(‘\u003C
You don’t need all of it just the first part, then when you find it you can figure out what it’s doing.
Forum: Themes and Templates
In reply to: What is the best way to create a custom theme?Work off a blank theme such as…
Starkers:
starkerstheme.com/
Which is essentially 2010 stripped to bare essentials.
Or I prefer this:
http://digwp.com/2010/02/blank-wordpress-theme/
If you use the 960 Grid then look at this:
http://simonwebdesign.com/simon-wordpress-framework-blank-theme/
Forum: Themes and Templates
In reply to: Twenty Ten Borderhttp://www.css3.info/preview/border-image/
http://www.css3.info/preview/multiple-backgrounds/
Try those, won’t work in IE 6-8 but should work in the rest of the browser.
Forum: Themes and Templates
In reply to: Adjusting post/page width: help before I jump off a cliff…Time to use Opera Dragonfly or Firefox’s Firebug extension and inspect the element to see if the changes are being applied. Since you can’t link to the site you’ll have to use these to determine where the style is coming from and if it’s being over-ridden.
Forum: Fixing WordPress
In reply to: strange javascript warning on my webisteJust follow the instructions I gave you, it’s another way of checking all your files.
Read through the links, the Codex link is a good place to start but first pull a copy of all your files to the hard drive and back up your database. Then go through every single readable file with a fine tooth comb.
If you come across anything suspicious or odd then shout. The reason for suspecting you’ve been hacked is this code comes up for posters who have hacked sites when I did a quick search in Google.
Forum: Fixing WordPress
In reply to: strange javascript warning on my webisteIf you read the links it will advise you to do an audit on all the files.
Assuming you have Windows pull all the files on the server (everything in www/public or whatever it’s called on your server) down to your computer using a FTP client like Filezilla.
Next open each file individually in Notepad and do a search for the code.
Dreamweaver can do a global search on all the files if you set up a site for them.
Delete any references, then upload the changed files.
Then do an audit on your database. You don’t know where it came from so best be safe.
Forum: Your WordPress
In reply to: Autofocus – Would like to see sites using Autofocus themeOne of the most popular systems for WordPress is the Suckerfish Menu, and it plays very nicely with the new WP 3 menu system. I’ve just integrated it into a new site and all it took was to add the class in the menu call.
You can find out more about it here:
http://users.tpg.com.au/j_birch/plugins/superfish/
Just make sure you call JQuery and it’s good to go.
Forum: Fixing WordPress
In reply to: strange javascript warning on my webisteForum: Fixing WordPress
In reply to: Lightbox not workingTry a different theme and see if that resolves the issue. If it does rattle the theme creators cage in regards to the issues.
Forum: Themes and Templates
In reply to: [Suffusion] Another no-save problemGood I’m glad you manage to pin down the culprit. You may want to let the plug-in author know of the issue as well.
Forum: Your WordPress
In reply to: New to WordPressYour footer is broken in Opera 11, it’s flush with the left of the page. So you’ll need to take a look at that. You also may want to use the Fast and Secure Contact form to remove your mailto: link on your contact page. It’ll help cut down on Spam.
You have a lot of JavaScript calls which could be optimised into one file, and you’re declaring your WP version number in the headers.
There are numerous W3C validation errors which need to be resolved.
Hope this helps.