nvg
Forum Replies Created
-
Forum: Plugins
In reply to: [Header Slideshow] [Plugin: Header Slideshow] Just doesn't workHi Michael: Oh yeah it’s connected to the internet all right, it’s running on a server on an OC192 backbone ;^) This is a fresh WordPress install on a VPS where there’s other similar installs with other variations of plugins, etc. running with no problems. There’s no other plugins installed on this one, again it’s a fresh install with the default 2011 template on it, linux OS, wp 3.2.1, php 5.2.14, php memory limit 256M, & mysql 5.0.51.
Forum: Plugins
In reply to: [Easy Modal] [Plugin: Easy Modal] Messes with the admin stylesWhoops, nope it’s still messing with the admin styles some. Seems the problem is that the easy modal stylesheet that’s being called into the admin area has general selector styles attached to it like this:
input {float:right;}
instead of something like:
input#easy-modal {float:right;}
so what it does is, for example, when you’re in the editor and editing a theme stylesheet, it floats the “Update” button to the right and way down at the bottom of the page.
I just commented out the easy modal admin stylesheet and it works fine.
The plugin itself works beautifully…
Sure did! Many thanks…
Forum: Plugins
In reply to: [PressBackup] Fatal Error on Installgot it, thanx inf…
I had the same problem with business pages but there’s a workaround. Just connect with a Twitter account and you’ll suddenly be able to connect with the FB pages. Strange but true.
Hey xcloner – yeah if I had time to experiment with it and debug I would but I’ve deinstalled it. I’m doing this from work in a production setting. All I can tell you is I’ve got several virtual servers running in this environment with several wp installs and plugins on each one and they’re humming along – all php errors are file logged – it’s just not producing one. Thanks for the info – what I really need to do though is set up some cron scripts and do some rotating mysql dumps and dir backups – I just thought I’d give this a quick try…
Yeah, I am the admin for the server. It’s not producing an error in the log.
Yeah it’s not working. I got the activation email so the email address is correct. After activation, it says a dev key was sent but it never arrived. And no, it’s not in my Google Apps email junk folder either. It never arrived.
Forum: Fixing WordPress
In reply to: Upgrade issueit’s still a permissions problem. if you’re using unix try making sure that the files in your wordpress install are owned by the same owner that runs www (such as apache).
also you can try adding this to the bottom of wp-config.php:
if(is_admin()) { add_filter('filesystem_method', create_function('$a', 'return "direct";' )); define( 'FS_CHMOD_DIR', 0751 ); }