bob58
Forum Replies Created
-
Forum: Plugins
In reply to: Need help adjusting profile.phpI don’t think you can.
These fields are for storing your IM adresses …
Forum: Installing WordPress
In reply to: MySQL Questionof course … usually the folder /phpmyadmin/
Forum: Fixing WordPress
In reply to: The uploaded file could not be moved to .Can you have a look at your fileupload_dir entry in the admin panel ? (options -> misc)
Is that set properly ?Forum: Installing WordPress
In reply to: MySQL QuestionI can try to, but you need access to your DB.
There’s a great description at
https://www.tamba2.org.uk/wordpress/site-url/
If you don’t have access to your db AND there are no entries in the db, you can work around with changing the table prefix in wp-config.php (i.e. to wp2_) and reinstall WordPress, but that’s not the best way ??
Forum: Fixing WordPress
In reply to: How determine a post position in front page don’t using categories?I don’t know, if I understand the problem (You’re japanese writing english and I’m german, trying to read it ;-)).
If so, you can assign a custom field to you post (i.e. layout-position) and then read it in your front page.
https://codex.www.ads-software.com/Using_Custom_Fields
https://codex.www.ads-software.com/Using_Custom_Fields#Getting_Custom_FieldsForum: Installing WordPress
In reply to: MySQL QuestionIn the install-process, you can define a table prefix (default is wp_) that is used when adding a table (i.e. wp_posts, wp_options, …). I have phpBB and (multiple) wps in one database and no problems.
But in general, it is a good idea, to backup the db …
Forum: Installing WordPress
In reply to: add authorI think, you want to post that in https://wordpress.com/forums/
For the software WordPress (this Forum) the question doesn’t make much sense …
Forum: Installing WordPress
In reply to: MySQL QuestionIs wp-settings.php available in your root directory ?
The error message says, that wp-config.php cannot locate wp-settings.php in the same directory.Forum: Fixing WordPress
In reply to: Previous Page link not workingTake a look into the file .htaccess. It looks like the permalink-structure is working the other way. You request ?paged=2 and the server complains about not finding /page/2 …
Forum: Fixing WordPress
In reply to: How to hide multiple categories on homeUse NOT in_category() (in php it looks like
if (!in_category('1')) { do it }
for the main page (index.php) and for the categories overview, use the following:https://codex.www.ads-software.com/Template_Tags/wp_list_cats#Categories_With_Excludes
That usally happens in sidebar.php.
Forum: Installing WordPress
In reply to: New post is showing up as my main page – helpI think, your (very pink) theme is kind of broken.
Take a look at that:
https://codex.www.ads-software.com/The_Loop
maybe you don’t have the ‘foreach’ part.
btw: Thrilling, I allways wanted to know, how to make my lipstick last all day ??
Forum: Fixing WordPress
In reply to: Error in class-IXR.phpclass-IXR.php didn’t change from 2.0 to 2.0.1.
post.php didn’t change in that part either …
Forum: Fixing WordPress
In reply to: Some users can’t log in, others can (says can’t connect to DB)For me, both seem to work fine … I think there might be a temporary database problem (maybe too many connections).
Forum: Fixing WordPress
In reply to: How to hide multiple categories on homeWhere you work through the posts (the loop), usually in the index.php of your theme, you can check for every post if it is in a certain category and display it only then.
https://codex.www.ads-software.com/Template_Tags/in_category
Forum: Fixing WordPress
In reply to: Different header images for pages?What do you want to do ? Depending on what ?