pwkingston
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: wp-stattraq] missing ABSPATH definition*deleted* duplicate
Forum: Plugins
In reply to: [Plugin: wp-stattraq] missing ABSPATH definitionShould I edit wp-config.php?
Where exactly?
Forum: Plugins
In reply to: [Plugin: wp-stattraq] missing ABSPATH definitionI also tried adding these 2 lines in place of line 19
$path = 'http://www.mydomain.com/wordpress'; require_once($path.'/wp-config.php');Forum: Plugins
In reply to: [Plugin: wp-stattraq] missing ABSPATH definitionI am trying to get this plugin to work with Version 2.8.6
I cant tell exactly where I need to edit the file….
I need to edit stattraq-install.php, and replace line 19 from
require_once(ABSPATH.'/wp-config.php');to
require_once(http://www.mydomain.com/wordpress'/wp-config.php');?
I can’t get that to work, so that must not be it, but I can’t find any other ABSPATH references in the stattraq-install.php file.
Forum: Requests and Feedback
In reply to: Deleting Tags 2.7-RC1-10073If I use the “Bulk Actions” and apply window, is stays on the correct page after the deletion.
Example url after deletion –
http://myblog~/wordpress/wp-admin/edit-tags.php?pagenum=13&message=6
Forum: Fixing WordPress
In reply to: Post Timestamp LimitAlso, any ideas editing the admin pages to display the correct dates?
/wordpress/wp-admin/post.php?action=edit&post=[post_id]
(in the Publish Status side bar under the “Published on” )
in the first column “date” (all shown as 1969 (because I am in mountain time) 1970 in other areas)
/wordpress/wp-admin/edit.php
I am going to have to find out if I can volunteer to work on fixing this specific issue in the developer group. It seems like if we change the way WordPress queries the date like in your fix that we can get around the php limitations entirely.
Forum: Fixing WordPress
In reply to: Post Timestamp LimitThis code does the trick!!!
Thanks hallsofmontezuma!!!
I changed things in my theme from –
<?php the_time('F jS, Y') ?>and
<?php the_time('F, Y'); ?>to
<?php $pid = $post->ID; $sql = "SELECT post_date FROM wp_posts WHERE ID='$pid'"; $result = mysql_query($sql); if ( ! $result ){ echo mysql_error(); } else{ $result2 = mysql_fetch_array($result); echo $result2['post_date']; }?>and the output is like this –
2008-08-20 15:38:25
Do you know how to limit the date output to just year, month, day? What code would truncate it to just
2008-08-20
?
Forum: Installing WordPress
In reply to: Blank screen on /wp-adminI was having the same issue, and I got mine to work again by following step 7: Delete the old WordPress files & upload new-
Forum: Installing WordPress
In reply to: Admin Issue: Unable to see dashboardI was having the same issue, and I got mine to work again by following step 7: Delete the old WordPress files & upload new- . However, I did not use the automatic upgrade plug-in.
Forum: Installing WordPress
In reply to: Login Issue after Latest UpgradeI was having the same issue, and I got mine to work again by following step 7: Delete the old WordPress files & upload new-
Forum: Installing WordPress
In reply to: Word Press LoginOk, So I got mine to work again by following step 7: Delete the old WordPress files & upload new-
Forum: Installing WordPress
In reply to: Word Press LoginSame exact scenario here… try to login in as admin.. and its saying Incorrect Password… so I go and try to retrieve password. and after submitting… the screen goes blank..
Forum: Fixing WordPress
In reply to: GNU being displayed after upgradeI backed up my database, and deleted the whole site and started again.
Forum: Fixing WordPress
In reply to: Post Timestamp LimitThanks! I searched, but not for the right things I guess. It looks like I have some work ahead of me!
Forum: Fixing WordPress
In reply to: Post Timestamp LimitI am going to have a lot of posts earlier than 1969. Is there a file that I can edit to change this starting date, make it do the “direct sql query”? It makes it difficult to manage the posts on the admin side, because they are all displaying the 1969 date.