phuckd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to have all comments emailed to blog admin?ah i see – then im not entirely sure how you would achieve that – sorry.
Forum: Fixing WordPress
In reply to: WordPress as a forum…you could always try http://bbpress.org/ π
Forum: Fixing WordPress
In reply to: Pretty permalinks: redirects to index.phpdo you have the site installed root or in a sub directory?
ie
yourserver/www/**the files**
yourserver/www/wordpress/**thefiles**if the latter you need to change your site root in config.php to the absolute directory eg
http://www.yourdomain/wordpress/and
go to the site root directory and delete index.htm, that will be teh default apache picks up
Forum: Fixing WordPress
In reply to: TinyMCE HTML Button Download?Forum: Fixing WordPress
In reply to: æøΓ₯, local char in urlthe site /plugin referenced here – http://wordpress.org/support/topic/6331?replies=14
(http://www.100px.com/)will probably help you – but my spanish is bad so i cant work it out – hopefully you have better luck man
Forum: Fixing WordPress
In reply to: how to have all comments emailed to blog admin?go to your dashboard > options > Discussion
check the box that says
E-mail me whenever: Anyone posts a commentyou’ll be good to go
Forum: Fixing WordPress
In reply to: Blicki rollback feature not workingyou need to speak to the plugin author on thier website
Forum: Fixing WordPress
In reply to: List Commenter’s Mails>>As you know people writes their mails when they send a message to blog. I want to list them.
why would you want to give all the spam harvesting bots a free lunch?
Forum: Fixing WordPress
In reply to: Getting into MySQL in Ubuntuas handysolo says – the mysql forums will suit you – but if you download the mysql gui tools you can re-attach the account to the database π
Forum: Fixing WordPress
In reply to: Showing my latest blog post title on my homepagethen the answer is in my original reply.
Forum: Fixing WordPress
In reply to: Showing my latest blog post title on my homepageyou want your last posts to appear on an external site/page from the wordpress itself?
If so, you are probably better off with a feed reader, CG-Feedread or something similar.
Forum: Fixing WordPress
In reply to: Moderating new users?you can do it this way:
in pluggable-functions.phpchange the function:
wp_mail($user_email, sprintf(__(‘[%s] Your username and password’), get_settings(‘blogname’)), $message);
To this:
wp_mail(‘youremail@yourdomain’, sprintf(__(‘[%s] Your username and password’), get_settings(‘blogname’)), $message
This will send YOU the confirmation/password email, from there you can decide to send the password to the user
Forum: Fixing WordPress
In reply to: howto set wordpress within my websitehttp://www.w3schools.com/tags/tag_iframe.asp
from that link, read the “optional attributes”
make it size & width you need.HOWEVER – your template will not accomodate it 100% as you have it now, you will need to modify that slightly.
Forum: Fixing WordPress
In reply to: howto set wordpress within my websitethe link to your phpbb has errors that you need to correct.
I *think* you mean you want it to open with your header image & the left side image? so nested within the site template?
If thats the case, then you will need to create an IFRAME on your inedex.html and change your links to reference the _target as the IFRAME name.Forum: Fixing WordPress
In reply to: Parser Erroryou should be closing ALL your CSS calls, no matter if they are end of the block or not.
EG on this line:#current {
BORDER-RIGHT: #a09f9f 1px solid;
BACKGROUND: #ccced2;
BORDER-LEFT: #a09f9f 1px solid;
BORDER-BOTTOM: #a09f9f 1px solid <<<wheres the semi colon?
}
Its the same for all your css start closing them and see what happens