jaredquinn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login Issues & generally dumb questionsYour admin page should be…
yoursite.com/your-blog-url/wp-admin
And no, WordPress shouldn’t allow you to see the admin area if you cancel the login :).
Forum: Fixing WordPress
In reply to: Do I exist – User SQL erroruser_nickname doesn’t exist any more in the database. It’s been moved from the user data in wp_users to the user meta data (i believe).
Your problem is probably caused by a plugin or some code in your sidebar utilising this field which needs to be upgraded to work with the newer wordpress you’re running.
Forum: Plugins
In reply to: plugins not workingDo you have any specific examples you can point us at?
Forum: Fixing WordPress
In reply to: “Virus” PostingsFind out where they came from – have you got web server logs?
Forum: Everything else WordPress
In reply to: LicensingThis isn’t really the best place to ask this question.. but you can find answers at gnu.org..
https://www.gnu.org/licenses/gpl-faq.html#DevelopChangesUnderNDA
Forum: Fixing WordPress
In reply to: Redirect, Permalink and .htaccessCan you provide the details of your redirect? (ie snippet from your .htaccess or something?)
Forum: Fixing WordPress
In reply to: quick htaccess questionEven more interesting, redirect based on <i>source</i> IP address.
The quickest dirtyest hack that comes to mind right this instant is to use PHP to do it; in index.php something like:
if($_SERVER['REMOTE_ADDR'] == 'a.b.c.d') header('Location: https://new-location/page');
On digging a little deeper, you can do it in your .htaccess file with a Rewrite… check https://httpd.apache.org/docs/1.3/misc/rewriteguide.html (for Apache 1.3, or the one for your relevant version) for the Guide to Rewrite.
Forum: Fixing WordPress
In reply to: Adding Adsense-deluxe to single.phpLet me know if you have any issues with it at all.
I don’t see a problem providing links to a dev site, you’ve made it pretty clear why the link is here etc (it’s not like people are going to be accidently following it etc).
Forum: Fixing WordPress
In reply to: Help!URLs problem.You’ll probably want to be using https://a.b.c.d/blog where a.b.c.d is the IP address of the machine hosting it as well.
Do they have to be seattle based? Would be interested in providing assistance and advice, but I am Sydney, Australia based.
Forum: Plugins
In reply to: adding new fields/infos to the user profile – action hooks…You could try:
update_usermeta( $user_id, 'field-name', $value);
To update the usermeta data, and get_usermeta to retreive it.
Forum: Installing WordPress
In reply to: Please Help! Can’t Install!Have you had a read of
Forum: Everything else WordPress
In reply to: multiple blogs for kidsTake a look at the Multiuser WordPress or the Multiply plugin… both these options tho would require you to have it hosted somewhere.
Forum: Fixing WordPress
In reply to: create image based on text?Agree with LiverpoolLad here.
CSS is a much better option then seperate images for each heading, you could use a common background image for all headings or something similiar – there is plenty of info out there (try a google for Fancy CSS Headings)