gameboyz
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: 2.8RC1 – Dashboard side boxes won’t expand/collapse in dashboardIt works now :O
Forum: Alpha/Beta/RC
In reply to: 2.8RC1 – Dashboard side boxes won’t expand/collapse in dashboardNope not beta. It’s Firefox 3.0.10 stable builds or (for the technical)Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 GTB5
Forum: Fixing WordPress
In reply to: How to FTP images and import them using WordPressbump
Forum: Fixing WordPress
In reply to: How to FTP images and import them using WordPressOkay I’ve decided to resize them and upload, but thing is where did that option to configure images settings go?
You know there used to be this page under Settings that let you choose like, link to File URL, alignment center and show the large size. Now where did that go.
And if I uploaded 10 images do I have to Add Image>Show>Insert 10 times? Or can I insert all of them into the post simultaneously?
Forum: Fixing WordPress
In reply to: WordPress time is screwed up???Okay I contacted my hosting provider already. Anyway if they corrected the problem already, will the time of my posts change? I have the loop set to show the time of posting ??
Forum: Fixing WordPress
In reply to: WordPress time is screwed up???But what if even UTC+14 (maximum) is still 2 hours slower than my time? :O
Forum: Fixing WordPress
In reply to: WordPress time is screwed up???How do you check the server’s time?
Anyway if I fixed it later on will the time for the past posts change as well?
Forum: Fixing WordPress
In reply to: WordPress time is screwed up???@kmessinger yours is correct, but mine is wrong. Mine says:
UTC time is 2009-05-18 0:18:34 UTC +8 is 2009-05-18 8:18:34
Forum: Fixing WordPress
In reply to: WordPress time is screwed up???Yup I set it to UTC+8 which is my time zone, and it says “UTC +8 is 2009-05-18 6:01:37 ” which is incorrect!
Forum: Fixing WordPress
In reply to: I am “logged out” though I’m “logged in”.Solved. In my wordpress admin panel I have www. for the wordpress URL but not for the installation URL.
Forum: Fixing WordPress
In reply to: I am “logged out” though I’m “logged in”.Bump
Forum: Fixing WordPress
In reply to: I am “logged out” though I’m “logged in”.Bump
Forum: Fixing WordPress
In reply to: I am “logged out” though I’m “logged in”.Weird here it says
The only catch is the “Edit this” links will no longer appear by every entry and comment if you’re using this option. This is a limitation of how we’re setting cookies, and this may be fixed in the future.
but I managed to fix it yesterday?
Forum: Fixing WordPress
In reply to: The loop doesn’t work on some pagesThanks stvwlf…
Your small chunk of code solves everything rather than adding one complex chunk of code to single.php and stuff like that.
So it works now no problem! ^.^
Forum: Fixing WordPress
In reply to: The loop doesn’t work on some pagesFixed.
header.php:
<div id="custom"> <?php query_posts('cat=3&showposts=3'); ?> <?php $posts = get_posts('category=3&numberposts=3&offset=0'); foreach ($posts as $post) : start_wp(); ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endforeach; ?> </div>
index.php:
<?php query_posts('showposts=10'); ?>
single.php:
<?php function selfURL() { $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : ""; $protocol = strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s; $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]); return $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI']; } function strleft($s1, $s2) { return substr($s1, 0, strpos($s1, $s2)); } $url=selfURL(); $postslug=substr($url,43); $postslug=substr_replace($postslug ,"",-1); query_posts('name='.$postslug); ?>
Brilliant! Free for all to use.
But page.php gives Not found error .