Medizinische Abkuerzungen
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: limited number of smilies per comment.Did you mean 5 different or a total maximum of five per comment (different or not)?
Forum: Fixing WordPress
In reply to: footer: only show a line when on home.phpAnd if you use
<?php if ( is_home() ) echo “< a href=\”https://www.linktomysite.com\” target=\”_blank\”>Link Text”; ?>
Forum: Fixing WordPress
In reply to: Directly to subpage when root page is selectedYes,
but if you use permlinks the htaccess checks if the file exists. If so it will serve out the file.
It is possible that the wordpress shows malfunctions after creating a subdir, it normally uses virtually. (I didn’t try). In that case you have to redirect via htaccessForum: Fixing WordPress
In reply to: Internal Server Error 500Yeah, now they are different.
Perhaps you had a rewrite-htaccess in the old (deleted) folder?
Forum: Fixing WordPress
In reply to: getting my includes to workFatal error:
Call to undefined function: bloginfo() /home/mikestah/public_html/rochelle/wordpress/wp-content/themes/default/header.phpIt seems that there is no function bloginfo defined.
What are we looking at? A wordpress-blog? Did you include parts of wordpress in a different php-file?
Forum: Fixing WordPress
In reply to: Internal Server Error 500I think both urls
milyani.com/arabic
and
milyani.com/
point to the same blog, not two different ones.Perhaps milyani.com/arabic is rewritten by htaccess to the first blog?
Forum: Plugins
In reply to: Some kind of session management?I don’t know a plugin.
Do you know php?
There are tqo ways: cookies and php-sessions.
Forum: Fixing WordPress
In reply to: Forbidden:You don’t have permission to access on this serverDo you have set the right permissions for your subdir and php-files (755, 644)?
Forum: Fixing WordPress
In reply to: Internal Server Error 500I do not understand.
Blog is in milyani.com
But what is in arabic.milyani.com and milyani.com/arabic?
It looks like the subdomain arabic.milyani.com is wrong implemented and the page milyani.com/arabic is redirected to your blog?
Forum: Fixing WordPress
In reply to: Forbidden:You don’t have permission to access on this serverDoes log-in as admin work?
Forum: Fixing WordPress
In reply to: Directly to subpage when root page is selectedYou put a new index.php in your gallery-subdir
<?php
header (‘HTTP/1.1 301 Moved’);
Header(‘Location: http:/www.yourwebs.com/gallery.html’);?>
Use two // not one in url
Forum: Themes and Templates
In reply to: XHTML Validation QuestionsThere a minor errors which all browsers ignore and there are errors which cause a different style or not-display.
I had a look at your site yesterday. You see othing in Netscape (except header and hidden text).Forum: Fixing WordPress
In reply to: Internal Server Error 500Do you have an url?
Forum: Themes and Templates
In reply to: sidebar marginslook for your style.css in
div id=”sidebar”and add a
padding-left:10px;
or
margin-left:10px;Forum: Fixing WordPress
In reply to: Directly to subpage when root page is selectedThere are different ways.
Use .htaccess
use an index.php which redirects to the subpage