significance
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: wordpress portability?ah – i see. that would explain me being linked to this ticket http://core.trac.wordpress.org/ticket/11394
their solution seems awfully complicated though – surely it’s just a case of concatenating $blog_url on to the relative url of the image?
Forum: Requests and Feedback
In reply to: wordpress portability?ah – excellent.
i have noticed other entries in the sql file but that is maybe just a dodgy plugin..
thanks!!! 🙂
Forum: Requests and Feedback
In reply to: wordpress portability?i can see where you’re coming from, but for me the url should be defined either in the wp-config.php file with the database details or not at all.
i don’t know too much about server compatibility so couldn’t comment 🙂
thanks for your answers!
Forum: Requests and Feedback
In reply to: wordpress portability?surely it would be possible to use the $SERVER globals to get the ‘blog url’ rather than making entries in the database with the http://blog.url/ part of the url?
that would make the process so much easier, since you could just backup/reup the database using your normal database admin tools without messing around…
Forum: Plugins
In reply to: add a css stylesheet to of the_editor iframethat didn’t seem to work as i needed a way to get the stylesheet into tiny MCE using a plugin.
i found out how to do it though:
add this to your plugin:
$initArray = add_filter('tiny_mce_before_init', 'tiny_mce_config'); function tiny_mce_config($initArray){ $initArray['content_css'] = '/wp-content/plugins/pvc/assets/css/oneup_forms.css?version='.time(); return $initArray; }and then edit your referenced css file:
#tinymce p{ font-family:helvetica,verdana; font-size:2em; }etc.
Forum: Plugins
In reply to: add a css stylesheet to of the_editor iframethanks, will have a look at that when i get a moment!
Forum: Plugins
In reply to: using the wordpress wysiwig editor in my own pluginsperfect! thankyou!!
Forum: Fixing WordPress
In reply to: html getting escaped with backslashes in WP 2.7i worked it out – i was calling bb-config.php in wp-config.php in order to run bb-admin plugin for wordpress.