joseffb
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Comments as bbPress Topics] Can I take over this plugin@robin-w I think you should fork it at this point. I’ll be using this with a new install and will fix it to work — would love to keep in touch with you as contrib.
Forum: Fixing WordPress
In reply to: 404 Errors when permalinks are enabledsame problem here.
I was using
define('WP_USE_THEMES', false); require_once("/home/html/site/wp-load.php");
It still errored out. I’m loading from the directory side, should i be loading another way?
in the header I have:
$commands = array('/dir/bin/php home/html/site/scripts/sql-update.php');
This is basically an on demand cron job. So I guess I can ask how do you run a script via cron on MU without it error with redirect.
For more info, I’m trying to run a script in a parallel process. It runs fine when embedded in the theme page but goes to wp-signup?new= when I initiate it in it’s own process.
details on multiple processes here:
https://www.php-code.net/2010/05/running-multiple-processes-in-php/
Forum: Plugins
In reply to: change default display-nameI have this in my header file. Simply checks if that current user’s display name is set to teh way I want it and if not changes it:
<?php $showName = $current_user->first_name . " " . $current_user->last_name; echo "s: " . $showname . " d: " . $current_user->display_name; if ($current_user->display_name != $showName) { update_user_meta($current_user->ID, 'display_name', $showName); }?>
I have it in a member section, so you may want to validate that the user is logged in first.
worked. Sorry for delay wp was linked to an old email.
I have another question:
I’d like to allow my users/clients to buy a ad from me. I use OpenX. Is ther ea plugin that will allow me to:
a) Do the Eccomerce stuff (via paypal)
b) allow the usee to choose type and length and upload the creative ad
c) Schedule it into the open-x?I know a lot to ask for but I really hate the swivel chair approach i’m using now.
Forum: Plugins
In reply to: [Plugin: Advertising Manager] This plugin is a jokeI have some problem on MU and I’m on newest version. Prior version didn’t do this. Checked template tag file and this is already in there.