iridiax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with post linksI’m run in Windows server (Microsoft-IIS/6.0)…
See: http://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite
Forum: Fixing WordPress
In reply to: template hierarchy questionYou need to create and assign a page template to the products page. See: http://codex.wordpress.org/Pages#Page_Templates
Forum: Fixing WordPress
In reply to: Changed URL in General SettingsForum: Fixing WordPress
In reply to: Had Spam in Header, now need help with textIt’s a mess, you have head code in the body section and some of it is duplicated. I’d recommend backing up everything to your home computer, downloading a fresh copy of your theme, and then replacing your theme’s header.php with a fresh copy. Use the customized header.php on your home computer as a guide to add back only the customizations you want.
http://codex.wordpress.org/FAQ_My_site_was_hacked
http://codex.wordpress.org/WordPress_BackupsForum: Fixing WordPress
In reply to: My blog/website is showing a fatal error! Help Please!!?Your site is most definitely hacked. Hacking often breaks things, which is why your site is no longer working.
Forum: Fixing WordPress
In reply to: admin problems :( URGENT!!!!ok. where do i get a copy?
Try a Google search for it or look here: http://wordpress.org/extend/themes/
Forum: Fixing WordPress
In reply to: admin problems :( URGENT!!!!Replace the bad theme functions.php with a freshly downloaded copy.
Forum: Fixing WordPress
In reply to: admin problems :( URGENT!!!!When your WordPress admin is not working properly, you need to use FTP.
Forum: Fixing WordPress
In reply to: Images and media not as per instructions – will not display!Contact your web host, some have security settings that prevent uploading files like this.
Forum: Fixing WordPress
In reply to: Images and media not as per instructions – will not display!I have now created an uploads directory (with permission 755) in wp-content, but that has not changed anything.
See: http://codex.wordpress.org/Using_Image_and_File_Attachments
Prerequisite for Uploading Files
In order to use all these tools, you have to change the chmod of wp-content folder to 777. If you have not changed permissions in order to write in wp-content folder, you will not be able to use the uploader.
Forum: Fixing WordPress
In reply to: DATA LOSS username/password/email failForum: Fixing WordPress
In reply to: Images and media not as per instructions – will not display!You don’t have an uploads directory. One was not created likely due to a permissions problem. See:
http://codex.wordpress.org/Changing_File_Permissions
Forum: Fixing WordPress
In reply to: can’t upload the yahoo and google html fileContact your web host or check their help section. Your web host should be able to help you figure out what passwords and settings to use with a FTP program.
Forum: Fixing WordPress
In reply to: Post images messing up my blog.iridiax: what do you my theme files?
Your theme’s index.php and any other theme files that show the problem. You’ll put the clearing br in the Loop:
http://codex.wordpress.org/The_Loop
The pic shows up fine at first, but when I try to align it in any other way, that’s when it falls apart.
When you align images left (.alignleft) or right (.alignright), your images are floated (float: left; or float: right;) and these floats are not clearing, causing the containing div to collapse (not expand to enclose the floated items).
For info on how to fix this with css, try a Google search for: how to clear float css
Forum: Fixing WordPress
In reply to: Post images messing up my blog.The floated css item overlap appears to be a theme design error. One possible solution is to put this in your theme files so that it appears at the end of each post:
<br style="clear: both" /><!-- stops floated image overlap -->