chrisada
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why should I upgrade -> 1.2I think the CSS file is not loaded at all. I think the problem is the path in your index.php
@import url( /wp-layout.css );
That stated the wp-layout.css file is in the root (may be called “public_html” or “www” or something else) directory on your server. But your wordpress is installed in a directory called “wordpress”, and the wp-layout.css is actually in that directory.
May be change it to
@import url( /wordpress/wp-layout.css );
would help? Or change the directory according to your particular server.Forum: Plugins
In reply to: Exhibit 1.1d Photo Gallery Pluginre: downsample
Yes, that works! I have overlooked it the first time. Thanks πForum: Plugins
In reply to: ImageManger pluginGreat plugin!
I feel the separate configuration screen is not quite working (I have server error about the script using a session side-effect in older version of PHP). But to configure it by hand is pretty easy, to most, I hope.
CheersForum: Plugins
In reply to: Exhibit 1.1d Photo Gallery PluginWould it be resonable to add a resize function to the rotation? On a site I admin, peoples always post gigantic images (from new many megapixels camera) . I be able to manually or automatically reduce the sizes would be wonderful.
Forum: Plugins
In reply to: EzStatic Pluginsame as Xyth
Forum: Fixing WordPress
In reply to: same level authors able to edit eachother’s postsI thought it used to be the case that, a user can edit posts by users whose level are “lower” than him, not “the same” as him. Or am I mistaken? This is quite a serious problem for me now.
Forum: Fixing WordPress
In reply to: same level authors able to edit eachother’s postsand me too. to me it’s a bug, not a feature. but let’s hear..
Forum: Your WordPress
In reply to: OK, let me have it!very nice! π
why would you need style switcher? I’m just wondering…Forum: Installing WordPress
In reply to: Creating mySQL Linkwonder if it will help much, but yeah.. cool! : )
Forum: Installing WordPress
In reply to: Creating mySQL LinkBecause that’s one thing PHP cannot do. (I think) The install script will create all the tables you need in the database, but you still have to make a blank database for it to work on.
To neumannu47, there is a file named wp-config.php, in which you can change the parameters (database name, user, password, hostname, I think that’s all)
When you point your browser to install.php, it will use these parameters.Forum: Installing WordPress
In reply to: intall problemsA verbatim error message would be helpful in seeing what went wrong.
I think the bit about log-in page with no password is normal, you just enter whichever password you want to start with.
And one thing, you might actually need just ‘localhost’, instead of ‘kioko_localhost’. (I could be wrong here.)Forum: Fixing WordPress
In reply to: Lost image download featureI am missing that too. I’m pretty sure it was there in 1.0.2 release. You could just click a link down your post page to upload an image and insert the code into your post.
Forum: Plugins
In reply to: Adding smiliesno, i was wrong! even though the comment says that, the declaration in vars.php does get executed even when I define the array in my wp-config.php
strange things is, the order I define them in wp-config.php does influence the ordering of the smilies above my textarea, and the keyboard shortcuts defined there was used instead of those in vars.php. BUT, in the post itself, the replacement of texts with smiley images were done according to the definitioni in vars.php.Forum: Plugins
In reply to: Adding smiliesIt seems to me better to define your smilies in wp-config.php, so it won’t get overwritten next time you upgrade. I did it by adding the following near the end of wp-config.php
$wpsmiliestrans = array(
‘ :)’ => ‘icon_smile.gif’,
‘ :D’ => ‘icon_biggrin.gif’,
‘ :)’ => ‘icon_smile.gif’,
.
.
);
I’m still having problem with adding my own smilies to the list though π