kccnet
Forum Replies Created
-
Forum: Plugins
In reply to: Wp-Grins….doesn’t work in admin@ JPstyle
The only way around the problem, as far as I know, is to disable the WYSIWYG-Editor in Users/Profile…
Forum: Plugins
In reply to: Looking for upload tool for usersHi,
I’ve solved that this way (I didn’t find a plugin),
Install the ExecPHP-Plugin, and the Role Manager Plugin, create a page for Registered Users.
Put this HTML code in there:<form enctype="multipart/form-data" action="uploader.php" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Datei auswählen: <input name="uploadedfile" type="file" /> <input type="submit" value="Upload" /> </form>create a directory in your wordpress root directory called
“uploader”create uploader.php within the wordpress dir containing:
<?php $target_path = "uploader/"; $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) header("Location: http://somewhere.com/success.php"); // where you want to go after succeeded upload else header("Location: http://somewhere.com/error.php"); // where you want to go after failed upload ?>That’s only an example for a very easy upload form, but I wouldn’t recommend any uploads at all, because security reasons.
Best Regards,
Kay
http://webjunkie.de.msForum: Plugins
In reply to: king login problemsHi,
it seems not many are using this plugin. I’ve tried it, and I had problems too. So I don’t want to mess around with it. But there might be some information here:http://wordpress.org/support/topic/111535
Regards
Forum: Plugins
In reply to: Wp-Grins….doesn’t work in adminActually got the same problem, smileys only show up when I disable the Rich Text Editor while writing articles. Can’t find a solution to that, so far.
Forum: Themes and Templates
In reply to: Widgets Not Showing Up After ActivationI had similar problems with another theme as well,
I got it fixed by checking and setting the right file permissions via FTP, also you should clear your browsers cache.KCCNET
Forum: Themes and Templates
In reply to: HTML Output (Header)That’s funny, the title changes from “Someone’s Blog” to “Someone(some strange characters)Blog”,
Forum: Themes and Templates
In reply to: Looking for a themeThere are hundreds of themes availlable on the net. You should try to find it yourself.
Maybe it’s this? (looks similar)http://www.ilemoned.com/wordpress/wptheme-fresh
or just have a look here:
http://www.smashingmagazine.com/2007/02/09/83-beautiful-wordpress-themes-you-probably-havent-seen/
Regards,
KCCNET
http://kccnet.deForum: Fixing WordPress
In reply to: Widget Ready Theme (or is it?)Yes… I had a look at the JD-Site. I downloaded that 2 columns theme and tried it, it is working. Then I downloaded the 3 columns theme again, hoping that it is fixed already, but it isn’t.
Had a look at funktions.php:if ( function_exists(‘register_sidebar’) ) {
register_sidebars(2, array(
‘name’ => ‘Sidebar_%d’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));}
I replaced ‘Sidebar_%d’ with ‘Sidebar_1’, I got this name from sidebar.php, now it’s partly working as Fizzgig mentioned. But how to use widgets on both sidebars?
I’m quite new to php and css and need some help I guess.
Thx,
KayForum: Fixing WordPress
In reply to: Widget Ready Theme (or is it?)I can’t help You with that, but I’m working on the same problem, might be helpful to go to the JD site. If you get any further concerning this problem, pls. let me know.
Regards,
Kay