gerryliao
Forum Replies Created
-
Forum: Plugins
In reply to: Req: Add postmeta to latest post admin plugin.hi, can you tell me where to d/l the rustlinsoff plugin? It sounds nice, and i can’t find it on google. Thanks a lot.
Forum: Themes and Templates
In reply to: My style.css failed, no style at allOops! My fault!
I changed the permission into 766 accidently. After I changed back to 755 to the whole directory, the problem was resolved.
Thanks to you all.
Forum: Themes and Templates
In reply to: My style.css failed, no style at allMinna, thanks for your advise and sorry for pasting codes.
Actually style.css was set to 755, and I changed it into 777. but still not working. So i guess the permission is not the issue. Is there anything else I could have missed?
Thanks.
Forum: Themes and Templates
In reply to: My style.css failed, no style at all[Moderated – huge code chunk removed]
Forum: Themes and Templates
In reply to: My style.css failed, no style at all[Moderated – huge code chunk removed]’
Forum: Fixing WordPress
In reply to: Photos side by side, how to?knotty, this would do pefect alignment to both images and text:
<table>
<tr>
<td>
<img src=”leftimg.jpg” alt=”” /> (also replaceable with text)
</td>
<td>
<img src=”rightimg.jpg” alt=”” /> (also replaceable with text)
</td>
</tr>
</table>Forum: Themes and Templates
In reply to: wp_list_cats problem with linksBeel, if it is not too bother, I still like to know how to fix the problem, although I killed the tag.
Maybe you have a clue?Forum: Themes and Templates
In reply to: Allow blogers to post an imageNot recommended.
1. Security issue
2. the layout could be easily corruptedForum: Themes and Templates
In reply to: wp_list_cats problem with linkssorry, the tag was removed from my blog.
Forum: Themes and Templates
In reply to: wp_list_cats problem with linksMe too have the same problem.
version of WP: 1.2.1
The link was normal before I change my wp to fixed links as:
/%year%/%month%/%day%/%post_no%/
After I made this change all the links directed to https://xxx.xxx/category// instead of https://xxx.xxx/category/1.
Beel, I read through this and other relevant threads, and I still can not figure out the problem.
Can you give me a hint?
ThanksForum: Fixing WordPress
In reply to: Changing blacklistsMy way:
1. kill all Blacklist files which you copied from the intsall kit
2. get into your mysql database, kill blacklist dataForum: Plugins
In reply to: Plugin psnGallery : Coppermine in WordPressHi
I just download the plugin and I found some of the tags di not function very well in my site.
For example, I put this ‘<?php CPGAlbumName(2); ?>’ to show the name of my 2nd album
in my menu. Nothing appeared.
Also this tag ‘CPGAlbumPicCount($albumid)’ is not normal on my site either.
I have to use ‘<?php echo CPGAlbumPicCount($albumid)’ instead of the one without ‘echo’ to show the number.
Is there anything i should know?
If i want to list all my album and their inside pics no such as:
xxxxx(12)
yyyyy(10)
zzzzzzz(20)
How should i do exactly?
ThanksForum: Themes and Templates
In reply to: Defferent layout between main and postThis is a solution comes from Mister X on https://www.ads-software.com/support/5/1195
<style type=”text/css” media=”screen”>
@import url( <?php echo $siteurl; ?><?php if ($p!=””) { echo ‘/wp-layout_indy.css’; } else { echo ‘/wp-layout.css’; } ?> );
</style>
I tried, and it works! Is there any better idea?Forum: Themes and Templates
In reply to: Footer won’t go downThey are clean. But need a while to do some adjustments to my pages.
I am working on it. However some suggestions to the original code above is welcome.
Thanks.Forum: Installing WordPress
In reply to: WP support multiple databases?Thanks to NuclearMoose.
I guess multiple WP folders are still needed before WP1.3.