Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot Install/Update Plugins Since Upgrade to 3.2I had this issue and resolved it by turning off ‘php safe mode’ from server control panel.
Forum: Fixing WordPress
In reply to: Menu is not saving all of the menu selectionsI had this issue on a couple of sites. It only saved 15-16 menu items. After wracking my brain and trying to figure out what was up, I had to contact my host to increase su_hosin memory.
Once that was done, all menu items started saving as they should.
The fix for this is a simple entry into your theme CSS:
table.em-calendar { width: 100%; }Forum: Fixing WordPress
In reply to: Use WordPress as a CMS?Yes to all of those questions. All able to do via a WordPress install. WordPress comes with it’s own search facility in-built, you can make any page the homepage and you can have a blog section, documents, contact page and a whole lot more.
Forum: Fixing WordPress
In reply to: preventing image downloadsThere’s no surefire way of doing this as anyone can take a screenshot of your webpage and use an image-editing software like photoshop to cut the picture out of the screenshot.
You could try to limit use as much as possible, such as preventing hotlinking via the .htaccess file, by watermarking images, or by disabling the right click abilty when on the website via javascript.
Forum: Fixing WordPress
In reply to: Website Problem on pagesLooks ok to me on Firefox 4.
Forum: Fixing WordPress
In reply to: Delete Comments and Comment Box COMPLETELY and FINALLYCan you provide a link to a page with the white box?
Forum: Fixing WordPress
In reply to: Where is the problem in this code?Glad I could help.
Forum: Fixing WordPress
In reply to: Where is the problem in this code?Another workaround would be to wrap the slideshow in a div and center that. it gives you more control of the slideshow container for positioning etc.
okay, what I would do is:
1. Get rid of the:
…that you have before the slideshow.
2. Apply these:
HTML
<div class="slideshowwrapper"> <?php show_showtime ("id=5365|width=880|height=356|padding-top=39|padding-left=0"); ?> </div>Then in CSS stylesheet:
.slideshowwrapper { width: 880px; height: 356px; margin: auto; }When I create a HTML page of your blog page and alter to the above, it aligns perfectly.
Phil
Forum: Fixing WordPress
In reply to: Where is the problem in this code?I think the problem is caused by placing the slideshow in the wrong area of the blog page template.
Reason i say this, is that on the pages where the slideshow is centred correctly, the slideshow appears INSIDE <div id=”content-area”>, yet on the blog page, it appears OUTSIDE of it (before it).
This places the slideshow before the main container of the site and hence why it’s appearing outside the normal boundary – before the page/post content is due to begin.
I don’t know how you add this php into the template, but my guess would be to open blog.php (or the blog template equivalent), and paste your slideshow code BELOW:
<div id=”content” class=”clearfix content-alt”>
That should sort it out for you.
Phil
Forum: Fixing WordPress
In reply to: Problem changing headerCheck your uploads folder exists on server, then apply permission 777 to that folder and try again.
otherwise, go into the uploads folder and check whether /2011 exists, then check if /06 exists. If not, create these folders and see if problem is still there.
Forum: Fixing WordPress
In reply to: Where is the problem in this code?Try posting a link to the blog page and a page where the slideshow is correctly placed and I might be able to help you.
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory …Have you tried removing the plugin via FTP?
Forum: Fixing WordPress
In reply to: Permalink 'index.php' breaks site completelyFirstly, I would remove your .htaccess file in the server root (this normally has instructions for the permalinks to be re-written by WordPress). By removing this, the WordPress links should revert back to standard and should hopefully allow you access to at least get into the admin and correct the permalink in question.
If you try that, post back the result.
Phil
Forum: Fixing WordPress
In reply to: Permalink 'index.php' breaks site completelyWhy would you want to change the permalink to index.php?
Index.php is a core file already installed with WordPress, by adding a new index.php or deleting the existing will break the site as WordPress can’t function without the php file.
if you’re trying to create a page to be used as the homepage, then create a page as normal and name it, then go to:
Admin –> Settings –> Reading
and select ‘front page displays’.
There is no need to alter the index.php file and I wouldn’t recommend naming another page as index.php.