n0ki
Forum Replies Created
-
Forum: Themes and Templates
In reply to: how-to: link listyes you could do this !
Forum: Fixing WordPress
In reply to: Image Upload On-Security Risk?mhh…
you only allowed files with extensions like JPG GIF PNG and so on.
so i think it is no security risk.
Ok if a directory on 777 so every user could write on this directory. But nobody could do this from HTTP.
The only choice is that in a script on your Website has a bug that allow that. Only than it is possible from HTTP.Forum: Plugins
In reply to: n0ki.de | WP modification | WP with SmartyUpdate !
I have published a first version ! WordPress Template Hack v. 1.0.2-th001
You could download it from my weblog: http://weblog.n0ki.de/index.php?p=51
Ok it is all German but i think a view is worth it !Forum: Themes and Templates
In reply to: how-to: link listmhh ok your second problem:
the intresting part of code for you:
if ($show_post_count) {
$text = sprintf("%s %d", $month[zeroise($arcresult->month,2)], $arcresult->year);
$after = " ($arcresult->posts)";
} else {
$text = sprintf("%s %d", $month[zeroise($arcresult->month,2)], $arcresult->year);
}
echo get_archives_link($url, $text, $format, $before, $after);
I thing the line “$after = " ($arcresult->posts)";“could possible for your problem.
change it in:
$after = " ($arcresult->posts)" . $after;
work this ? iam not sure.Forum: Requests and Feedback
In reply to: Smarty: the templating system that CAME FROM HELLYear Template Engines come from hell ! HTML seperated from PHP code ? wtf ? Who needs that ? I thing code like:
if (isset($newrow) && $newrow)
echo “\n\t</tr>\n\t<tr>\n\t\t”;
$newrow = false;
is cool and clearly arranged !
READ THIS ! http://www.sitepoint.com/article/1218/ !Forum: Plugins
In reply to: $blog = WTF?mhh….
mhh….
the first line of wp-locations.php:
<?php $blog = 1; // enter your blog’s ID
perhaps that is in preparation for an “multiple blog” feature ?
and thats not all code that are exist but that not used. I found mutch of that stuff. Because i have my “template-hack” done so i analyse mutch of code. By the Way mutch of them not really clearly arranged.
___
visit http://weblog.n0ki.de/ to see my template-hack in action !