Peter
Forum Replies Created
-
Forum: Localhost Installs
In reply to: 404 error on some image access after copying siteOk check your mysql database for localhost:12345// and you’ll have to do a search and replace for ‘//’ to ‘/’
Forum: Fixing WordPress
In reply to: Files no longer visible unter /wp-adminIf it was a rights issue the error log should state that.
You could try renaming your .htaccess file to dothtaccess so it doesn’t work see if that lets you in.
Most likely when you upgraded wordpress one of your plugins is incompatible you may have to try removing them temporarily.
Forum: Fixing WordPress
In reply to: Posts on subpages not linkingIn the template file for that particular page you need to wrap:
<div class="et_pt_portfolio_item">CONRTENT BLAH BLAH</div>In a a tag example:
<a href="<?php echo get_permalink( '' ); ?>"><div class="et_pt_portfolio_item">CONRTENT BLAH BLAH</div></a>That’s only an example you will ahve to look in the template file to discover what that should be.
Forum: Fixing WordPress
In reply to: Posts on subpages not linkingYeah I can see it’s the problem by looking at the source my friend:
<div class="et_pt_portfolio_item"> <h2 class="et_pt_portfolio_title">Saga úr sveitinni “Icelandic”</h2> <div class="et_pt_portfolio_entry"> <div class="et_pt_portfolio_image"> <img src="http://www.bjarnikr.com/wp-content/uploads/et_temp/Saga-úr-sveitinni-pricture-100081_260x170.jpg" alt="Saga úr sveitinni “Icelandic”" height="170" width="260"> <span class="et_pt_portfolio_overlay"></span> <a class="et_portfolio_zoom_icon fancybox" title="Saga úr sveitinni “Icelandic”" rel="portfolio" href="http://www.bjarnikr.com/wp-content/uploads/2012/03/Saga-úr-sveitinni-pricture.jpg">Zoom in</a> <a class="et_portfolio_more_icon" href="http://www.bjarnikr.com/2012/03/19/saga-ur-sveitinni/">Read more</a> </div> <!-- end .et_pt_portfolio_image --> </div> <!-- end .et_pt_portfolio_entry --> <p>Fyrir nokkrum vikum fæddust litlir kettlingar í sveitinni. Ég var að leika mér úti á...</p> </div>Forum: Fixing WordPress
In reply to: WordPress links broken after server changecould be sym links?
add:
Options +FollowSymlinks
RewriteEngine onto top of .htaccess file .
However if you have moved all those sites onto a new server then the answer is most likely that the new server doesn’t allow .htaccess override!!
Usually in vhost.conf needs to read:
<Directory “/////YOUR PATH”>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>or ask you host if you don’t have super user
Forum: Fixing WordPress
In reply to: How to select words in post title (part two)For both the easiest solution would be to use jQuery !!
Select the title by class then Split the title usign the   and apply your formatting to that.
Second question:
javascript regex to find $ and numeric then format them and wrap in new css classes.If this is to vague you will have to pay someone.
Or get googling you will be able to find some solutions out their using jQuery.
Forum: Fixing WordPress
In reply to: WordPress links broken after server changeok is your .htaccess file in place and does it have the correct re-write rules for wordpress int?
Failing that you’ll have to look at your server error logs.
You’d need to post your URL for me to be able to give you anything eles to go on
Forum: Fixing WordPress
In reply to: Posts on subpages not linkingYou’ve modified the theme so the hyper-links are no longer present around your post previews.
Forum: Fixing WordPress
In reply to: Files no longer visible unter /wp-adminwp-admin is deleted from your server ?
Or you can’t access it via the url http://YOURDOMAIN.com/wp-admin/
?If it is the later then does it give you an error? like access denied.
Check your server error logs they should show you the problem.
Forum: Fixing WordPress
In reply to: WordPress links broken after server changeIf everything is the same
You could try setting permalinks back to default that is index.php?id=1234 for example .
Then see if your content loads if it does just try setting your old permalink structure back and you should be fixed.
Forum: Fixing WordPress
In reply to: comments not reaching admin emailAre you using a web based e.mail provider such as yahoo or google?
If you are most likely they are blocking them as spam.
Forum: Fixing WordPress
In reply to: How to set up blog for guest post?in settings > Discussion Settings
Forum: Localhost Installs
In reply to: Using Dreamweaver CS6 with Bitnami WordPressThat error message looks like and adobe dreamweaver message.
If you are using the MAMP default ports, use http://localhost:8888/ for the URL.
You can try clicking on advanced settings for the Dreamweaver site manager :
For the Server Model (in the Testing Server section) select PHP MySQLAdobe have a step by step on the settings here:
http://www.adobe.com/devnet/dreamweaver/articles/setup_php.htmlThey are recommending XAMPP I too would recommend that over bitnami!
Forum: Localhost Installs
In reply to: WordPress has no frontendTry looking in your server’s error log for clues.
And:
try selecting the default theme activating it and de-activate itTurn permalinks off so your queries look like /index.php?id=turboBLAH
Forum: Localhost Installs
In reply to: 404 error on some image access after copying siteD:\Sitename\wp-content\uploads\2012\12\22\postname\dsc01222.jpg
and on localhost where the 404 error is created:
<p><img alt=”DSC01222″ class=”alignleft size-medium wp-image-8685″ height=”224″ src=”http://localhost:54603/wp-content/uploads/2012/12/DSC01222-400×224.jpg” width=”400″ /></p>
are you missing “Sitename” ?
http://localhost:54603/Sitename/wp-content/uploads/2012/12/DSC01222-400×224.jpg”