michiko
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WordPress 2 Theme CompetitionI find no relevance from being hacked and not having copies of emails and submitted themes. It’s his site that has been hacked and not his computer. Therefore, he must still have the copies of both. Hmmm, weird.
Forum: Themes and Templates
In reply to: WordPress 2 Theme CompetitionI’m one of the qualified competitor and I’m so disappointed about this incident. Very odd indeed.
Forum: Themes and Templates
In reply to: New 3 column Theme – Relaxationhi 7milesdown, sorry if it took me long to reply. re theme of mine, i use the original version of jowra’s relaxation. he is using a small image as header there which is positioned on the right. what i did is simple.. i changed the image size and adjusted the css. as for the column…copy sidebar css tags and paste if below the original. rename it to whichever name you like…i named mine sidebar2.
Forum: Themes and Templates
In reply to: New 3 column Theme – Relaxationhello seattleduck,
i am not using any background-color for the sidebar because “page” div has already a background-image. you may go back to my site and right click the content or sidebar area and download the graphic and you will see waht i mean. i’m also a novice like you…i know it is not easy to customize available templates for people like us. but just keep on practicing like i did. it helps a lot 🙂
Forum: Themes and Templates
In reply to: New 3 column Theme – RelaxationHi, I would like to show you my three column version based on “Relaxation”. You can view it here Aromatic Blend
Relaxation is really a great template just like Blix. They are very easy to modify and you can style it in many different ways. Just depend on how creative you are 🙂
Forum: Installing WordPress
In reply to: Host in Europehi adeco2, i’d like to know where in europe are you? i live in germany and planning to open a hosting services for WordPress users soon. i have a very fast and reliable server. just incase you are interest you can visit my blog and contact me from there. here’s the link: Aromatic Blend
Forum: Installing WordPress
In reply to: Warning: call_user_func(doGeoUrlHeader)Hi Beel,
Once again thank you (sorry if I sound like a broken record) but I just can’t stop thanking you guys. Everything works great now, no more error to see. I forgot to mention that I was still using the old “vars.php”. Guess what! I overwrote it with the new one and voila…Forum: Plugins
In reply to: Error while RumGallery loadsHello RummandDan,
I upgraded my blog from 1.2 to 1.3 now so I have no more problem re modifying the gallery files to make it work. I only need to change the image position…currently it is centered. Which file do I have to modify in order to change it?Forum: Fixing WordPress
In reply to: Incorporating the new is_paged()hello all,
hmm, i’m very keen to know the answer of your query Beel because i wanted to do or have that function too on my blog.
michikoForum: Your WordPress
In reply to: nicolesutherland.comhello lucky,
your site looks great!!! can you perhaps tell me your secret how you did that photo section of yours?
greetings,
michikoForum: Your WordPress
In reply to: Aromatic BlendHi all,
I’m so glad to hear about your positive feedback 🙂 Re footer I forgot to adjust the font size and have to place WordPress linkon the left. Once again thank you so much.Forum: Fixing WordPress
In reply to: Warning: mysql_affected_rows():okay, i already solved the problem. no need to reply anymore.
Forum: Fixing WordPress
In reply to: Warning: mysql_affected_rows():hi podz,
do you have any idea how can i solve this problem aside from removing this included file?Forum: Fixing WordPress
In reply to: Warning: mysql_affected_rows():I’m using version 1.2 and the site stats I uploaded is called “countersolution”. It has only one file and that is the one I included on my blog.
Here is the code of above mentioned site stats:
<?php
//#######Copyright#########################
//#Das Copyright auf den gesamten #
//#script liegt bei #
//#henrik@script-solution.de #
//#Dieses Script darf nicht weiterverkauft#
//#werden, änderung brauchen meine geneh- #
//#migung!!!www.script-solution.de #
//#########################################
//########################################
//#Bitte hier die Einstellungen vornehmen#
//########################################
$hoster=”localhost”; //dein host standard ist localhost
$login=”DWXX231″; //dein mysqllogin
$passw=”password”; //dein passwort
$datenb=”DWXX231″; //datenbank auswählen
//##########Ende der Änderungen!##########
$link=mysql_connect($hoster, $login, $passw)or die (“konnte Keine
Verbindung herstellen!”);
mysql_select_db($datenb,$link) or die
(“Datenbank nicht vorhanden!”);
//######Hier bitte Farb-und Texteinstellungen vornehmen!######
$f_color=”#73665B”; //die schriftfarbe
$f_size=”1″; //die schrifgröße
$f_face=”verdana”; //die Schriftart
$f_besucher=”Visitors:”; //besucher gesamt
$f_today=”Today:”; //Besucher heute gesamt
$f_zugriff=”Last Access:<br>”; //Letzter zugriff
$f_maxonline=”Max. user online:”; //Gleichzeitig user online max.
$f_besucheronline=”User online”; //wie viele besucher online
$f_deltime=”86400″;//wie lange soll die ip-sperre bestehen bleiben in sek.
##########Ab hier nichts mehr ändern!!!###################
####Datenbank entleeren#############
$zeit = time();
$datum = date(“d.m.Y”);
$loeschzeit= $zeit-$f_deltime;
$haha=mysql_query(“DELETE FROM csip_list WHERE del<$loeschzeit”,$link);
####################################
$ip=$REMOTE_ADDR;
$queryone=mysql_query(“SELECT * FROM csip_list where ip=’$ip'”, $link);
$querytwo=mysql_num_rows($queryone);
if($querytwo == “0”)
{
$order=mysql_query(“UPDATE cshits SET hits=hits+1”, $link);
$order2=mysql_query(“Select login, lastlogin from cshits”, $link);
$fetchit=mysql_fetch_array($order2);
$nocf=mysql_query(“Update cshits SET lastlogin=’$fetchit[login]'”, $link);
$queryt=mysql_query(“Update cshits SET login=’$zeit'”, $link);
$hehe=mysql_query(“INSERT INTO csip_list (dates, del, ip) VALUES (‘$datum’, ‘$zeit’, ‘$ip’)”, $link);
}
########Ausgabe kann beginnen###############
$ausgabe=mysql_query(“SELECT * FROM cshits”, $link);
$holit=mysql_fetch_array($ausgabe);
print “<font color=\”$f_color\” size=\”$f_size\” face=\”$f_face\”>$f_besucher $holit[hits]</font><br>”;
$daftpunk =@mysql_query(“SELECT count(ip) FROM csip_list where dates=’$datum'”, $link);
$dumdidum = mysql_result($daftpunk, 0);
print “<font color=\”$f_color\” size=\”$f_size\” face=\”$f_face\”>$f_today $dumdidum </font><br>”;
print “<font color=\”$f_color\” size=\”$f_size\” face=\”$f_face\”>$f_zugriff”;
$tdate=date(“d.m”, $holit[lastlogin]);
$hdate=date(“d.m”);
if ($tdate == “$hdate” )
{
$kzeit= date(“G.i”, $holit[lastlogin]);
print “Today at $kzeit</font><br>\n”;
}
else {
$vzeit=date(“d.m \u\m G.i”, $holit[lastlogin]);
print “Am $vzeit</font><br>”;
}
$hostering= gethostbyaddr($ip);
$deleteuser= mysql_query( “delete from cs_useronline where date < $zeit -300”, $link);
$usergesamt= mysql_fetch_row(MYSQL_QUERY( “SELECT * FROM cs_useronline where ip=’$ip'”, $link));
if($usergesamt == false)
{
$ok= mysql_query(“INSERT INTO cs_useronline (ip,host,date) VALUES(‘$ip’,’$hostering’,’$zeit’)”, $link);
}
$resultit = mysql_query(“SELECT Count(*) as total FROM cs_useronline”, $link);
$blubb= mysql_fetch_array($resultit);
echo “<font color=\”$f_color\” size=\”$f_size\” face=\”$f_face\”>$blubb[total] $f_besucheronline<br></font>”;
######max user online#####################
if ($blubb[total] > $holit[maxuser] )
{
$jepp=mysql_query(“UPDATE cshits SET maxuser=’$blubb[total]'”, $link);
}
#########################################
$ripper=mysql_query(“SELECT maxuser FROM cshits”, $link);
$holme=mysql_fetch_array($ripper);
print “<font color=\”$f_color\” size=\”$f_size\” face=\”$f_face\”>$f_maxonline $holme[maxuser]</font>\n”;
mysql_close($link);
?>
many thanks for your attention 🙂
michikoForum: Plugins
In reply to: Exhibit 1.1 Photo Gallery Plugini solved the problem by changing the path from:
// File was executed in admin or plugin
require_once(‘exhibitimg/exhibit10i.php’);
require_once(‘exhibitimg/exhibit10p.php’);
to:
require_once(‘/home/www/htdocs/mysite.com/diary/wp-content/plugins/exhibitimg/exhibit10i.php’);
require_once(‘/home/www/htdocs/mysite.com/diary/wp-content/plugins/exhibitimg/exhibit10p.php’);
thanks and sorry as well
michiko