Try creating wp-content/uploads folder writable by web server. The plugin uses gd to create images for the tab and saves them into uploads folder. Ensure that you are using the latest 1.1a version.
thks for your quick answer. : )
The version it’s 1.1a (ok)
Permissions folder uploads 777 (ok)
You can see the output:
http://www.saracosta.com/fallo.JPG
The slide, close and open ok.
uummm… see this:
Link:
http://localhost/wordpress/?process-file=http%3A%2F%2Flocalhost%2Fwordpress%2Fwp-content%2Fplugins%2Fschemeable-sliding-panel%2Fcss%2Fslide.css.php#038;ver=3.4.2
output:
<b>Warning</b>: include(C:\xampp\htdocs\wordpress//wordpress/wp-content/plugins/schemeable-sliding-panel/css/slide.css.php): failed to open stream: No such file or directory in <b>C:\xampp\htdocs\wordpress\wp-content\plugins\schemeable-sliding-panel\schemeable-sliding-panel.php</b> on line <b>148</b>
<b>Warning</b>: include(): Failed opening ‘C:\xampp\htdocs\wordpress//wordpress/wp-content/plugins/schemeable-sliding-panel/css/slide.css.php’ for inclusion (include_path=’.;C:\xampp\php\PEAR’) in <b>C:\xampp\htdocs\wordpress\wp-content\plugins\schemeable-sliding-panel\schemeable-sliding-panel.php</b> on line <b>148</b>
The path:
C:\xampp\htdocs\wordpress//wordpress/wp-content/plugins/schemeable-sliding-panel/css/slide.css.php
Must be?
C:\xampp\htdocs\wordpress\wp-content\plugins\schemeable-sliding-panel\css\slide.css.php
¿ I think it’s not generating the css file ?
!?
The error it’s here !
with this change the plugin runs ok:
file: schemeable-sliding-panel
static function process_file( $arg1 ) {
global $wp_query;
if( isset( $wp_query->query_vars[‘process-file’] )) {
$parsed_url = parse_url($wp_query->query_vars[‘process-file’]) ;
include(“c:/xampp/htdocs/”. $parsed_url[‘path’]);
exit();
}
}
see the “include” sentence.
now i’m searching a function for get the correct url.
: )
here, a quick “solution”:
include(ABSPATH .”..”. $parsed_url[‘path’]);
: D
sorry.
I hope I have been helpful
I tried the plugin without this change on a fresh WordPress install and it worked for me. I think, the way I am identifying the path to the file from the URL is buggy. I will dig through and find a better solution.
ok, thks
I’m fighting with my “production” wordpress: an old release (3.0.1.), and your plugin don’t run:
load_plugin_textdomain was called with an argument that is deprecated since version 2.7 with no alternative available
I must update to 3.4.2 but I have fear…
There are very few places where we use strings. Just modify those parts. That said, it might fail in other places. I tried it out only with 3.4
I DONT want the sliding panel to show at all for me(the administrator) and everyone else. How do I remove it or deactivate it?