mdvaldosta
Forum Replies Created
-
Got a question about that Pinoy.ca (or anyone else). I’m running some dynamic code in a file, and I’m including it in the theme’s functions.php so that I can use those variables in the theme. Would I be able to include that same file here (thus removing it from functions.php)? I’d check now but am on my phone.
That’s always been an issue for me, I have revenue sharing code that I’d like to run in the sidebar – but just can’t because it has to use rand to get the right ad code to display and I don’t want to stick the same code in every cached pageload.
Forum: Plugins
In reply to: [Plugin: Register Plus] Update for 2.7 Cus it dont work anymoreI’d love for the plugin to be “officialy” updated. As for the custom logo/login image, change line 268 from:
$upload_dir = ABSPATH . get_option('upload_path');
to
$upload_dir = get_option('upload_path');
Forum: Fixing WordPress
In reply to: Suddenly I can’t access admin areaThink the alinks tries to check for updates or something, and their (headzoo) site is down. Might have something to do with it.
Forum: Fixing WordPress
In reply to: Suddenly I can’t access admin areaProblem was the alinks plugin, was running v1.0RC1
Very strange how it happened all of a sudden.
Forum: Fixing WordPress
In reply to: Suddenly I can’t access admin areaI tried that, actually I can get in when I rename the plugins folder. Guess I’ll be trackin down the problem there. Thanks : )
Forum: Fixing WordPress
In reply to: Suddenly I can’t access admin areaI shot over an email justin.
Forum: Fixing WordPress
In reply to: Suddenly I can’t access admin areaThanks for the reply justin, it’s not a problem with the version. I’ve been running 2.2.1 for quite some time with no issues. Just randomly happened this morning. I’ve restarted apache, mysql, even rebooted the entire server. Cleared cookies and cache in my browser, everything. Just happens on a couple installs, thinking maybe something has been compromised.
Forum: Fixing WordPress
In reply to: Suddenly I can’t access admin areaHaving the same problem as the thread starter on a couple of my installs. Both 2.2.1 and not other changes recently, get 404 tryting to access wp-admin (can get the login screen, that’s it). Other installs on the same server have no problems. Nothing changed recently. Worrysome.
Forum: Fixing WordPress
In reply to: Blogs not sending pingsBump.
Forum: Fixing WordPress
In reply to: Sending trackback and ping to technorati not workingSame problem, trackbacks work but pinging doesn’t.
Forum: Fixing WordPress
In reply to: Sending trackback and ping to technorati not workingMine doesn’t work either :/ What’s going on with it?
Forum: Plugins
In reply to: How to display what page # your on?The breadcrumb plugin does that, but theirs no variable I can find to echo the page number into the title.
Forum: Plugins
In reply to: How to display what page # your on?That’s not what I need, what I need is a variable I can call in the page title to determine what page I’m on. This gives a better navigation, but nothing that I could use to append to the title for example <title>My Homepage – 2</title>
Forum: Fixing WordPress
In reply to: WordPress needs to change the way it uses .htaccessYes, I did this to stop WP from taking over my forums directory, mine looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/forums/(.*)$
RewriteRule ^.*$ – [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>But, I still can’t get my 404 to work – and the weird thing is it worked when I first set it up. I’ve tried the 404 line before and after the wordpress .htaccess and still nothing.
Nevertheless, none of this stuff would be necessary if WP wasn’t so greedy with the .htaccess.
Forum: Installing WordPress
In reply to: WordPress and phpBB rewrite conflictI want to simplify this:
WordPress is rewriting my already rewritten url’s located in another subdirectory. I’ve tried WordPress in root, in it’s own directory, with other fixes I’ve searched for, etc. Nothing works. WordPress is not obeying .htaccess like it should… why is it trying to rewrite url’s it’s not supposed to?