phuckd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Youtube not playingno problems here
Forum: Fixing WordPress
In reply to: Uploading Image via Mobile Phone?try putting the mini-opera browser on it and seeing if that handles the xhtml form better – if your using the inbuilt wap browser (not used an N70 so not sure which browser it has) it may not parse
Forum: Fixing WordPress
In reply to: google cant find meas dr mike rightly says – google won’t show you immediatly – you’ll turn up in a few SERP’s but you have a little while to go before you find the link
google knows you exist, they are just waiting 😉
Forum: Fixing WordPress
In reply to: Verification of users registeringno problemo
Forum: Fixing WordPress
In reply to: Verification of users registeringthis may help you – instead of sending the verification email to the user, it sends it to you.
From there you can personally email the user a verification/approval emailForum: Fixing WordPress
In reply to: Addon domains on WP subfolderi think they mean that the subdomain being created will be used for hosting that domain with them –
1&1 do something very similar eg i registered
http://www.adomain.com
and with it on the c-panel came http://homes1232323.adomain.comthe way they explain it is very confusing – although you should check you havn’t inadvertantly bought a hosting package too!
but you should be fine, give it a test run as a standard re-direct and see what happens, worst comes to worst, you remove the DNS redirect from the domain account
Forum: Fixing WordPress
In reply to: Addon domains on WP subfolderthe sub folder wont automatically become a subdomain, unlesss you make it so, even on a re-direct.
Simply update your DNS from the domain providers panel, and the redirect to that folder on your host
Forum: Fixing WordPress
In reply to: change emailyeah – after petits suggestion didn’t do what i was expecting, i looked around
in /wp-includes there is a file “pluggable functions”
Around Line 165 change:
“From: wordpress@”
in the line
"From: wordpress@". preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME']))to whatever email name you want it to come from
eg From you@ or accounts@Forum: Your WordPress
In reply to: geekette.co.uk – For the beauty with brainsi like the style – very “citychique” 😉
Forum: Fixing WordPress
In reply to: How Do I place a subpage inside sidebar?maybe this will help
http://wordpress.org/support/topic/27882?replies=7Forum: Fixing WordPress
In reply to: Change default header to customized HTML header with buttons?you could make a menu within the header.php, just underneath the content div – eg:
<ul id="menu">
<li><a>" href="<?php bloginfo('url'); ?>">Home</a></li>
<li><a title="About" href="#link#">About</a></li>
<li><a title="Photos" href="#link#">Photos</a></li>
<li><a title="Links" href="#link#">Links</a></li>
<li><a title="music" href="#link#">Contact</a></li>
make some pages in Admin, and put the links there to match
then in your css, create #menu, add a hover tag, background, visited etc etc etc and you can have nice dynamic css made rollovers.
nice & easyForum: Fixing WordPress
In reply to: change emailnice one petit – i was wondering this exact thing myself – thanks
Forum: Your WordPress
In reply to: My new anti political correctness blog – with cartoonsvery nice Tezzer, very nice indeed 🙂
Forum: Fixing WordPress
In reply to: How to prevent listing of files within a directoryyou could also create an .htaccess file you can put in the root, or in each directory, depending on how you want too, that will re-rirect users
something likeIndexIgnore *
<Files .htaccess>
order allow,deny
deny from all
</Files>more info here http://www.javascriptkit.com/howto/htaccess.shtml