Merlin Silk
Forum Replies Created
-
Forum: Plugins
In reply to: [eShop] How is a successful paypal payment reported to eShopThanks esmi,
I understand that there is this other mechanism in paypal that waits for the answer. But this mechanism would not allow for eShop to be notified when an eCheck clears after three day, correct? After such a payment is posted by eShop, it would get a message with status Pending back, and that’s it for eSchop, right?
Cheers,
MerlinForum: Plugins
In reply to: [WordPress Access Control] Subscribe2 WordPress Access Control ExtensionThank you so much, Robert!
Forum: Plugins
In reply to: [WordPress Access Control] Subscribe2 WordPress Access Control ExtensionHi robertjj,
how do explain to WP to use this plugin this plugin. I know, it’s probably a noob question but I could not find in all my searches what file I would put plugins like this in so that WP executes it.
Thanks,
MerlinForum: Plugins
In reply to: [Fourteen Colors] Site Title ColorThank you!
I found this thread after encountering the problem that suddenly – after upgrading to 3.8.1 – my ftp credentials were not accepted anymore. It had worked for many years.
I found out a solution, and wanted to post it here in case somebody else runs into the same problem.
The hostname now had to be localhost – while in the past I had used the domain name of the site. This is why I was sure that my ftp credentials were correct – I had tried them on the command line.
Maybe somebody can shed some light what’s causing that.Hi Alex,
it’s getting weirder – nothing has changed – neither firefox nor my server setup – but it’s not doing it anymore when I wanted to follow your recommendations on disabling Kimili first – wierdissimo!
Cheers,
MerlinThanks, Sivel!
that did it.
Cheers, Merlinjust found this thread on search for a solution to the same problem I have (the youtube part).
My setup is very similar in terms of version of WP and shadowbox.
Here is an article where the youtube video is not playing after the box opens:http://www.merlinsilk.com/2007/12/03/nothings-gonna-change-my-world-jai-guru-deva-om/
The link is below the lyrics. I only noticed that by accident, it’s an old post and it did work at one point in the past – when I posted it.
The shadow box does work in that blog for images and galleries.
Forum: Fixing WordPress
In reply to: Header already sent by post-template.phpThanks, macmanx!
It was caused by the pluginLucia’s LinkLove
Now I’m a happy camper 😉
Forum: Fixing WordPress
In reply to: Header already sent by post-template.phpthanks for the answer. Yeah, that was one of my first thoughts as well, but they are identical, and, as a bit of further info, the same files used for a new installation are working just fine.
Any further thoughts?
Forum: Fixing WordPress
In reply to: Plugin upgrade automatically issue in 2.5.1 and 2.5Want to chime in here and hope that somebody has a solution for this – because I have the problem too. Only on one blog, another one works just fine, but can’t see the difference between the two.
Forum: Fixing WordPress
In reply to: upload and file ownerOK, as there is nobody with an idea I had to go to work, and do binary elimination process.
I have another server with some blogs and they work just fine, so I first attempted to break those, then I did a lot of other if-this-than-that’s and I finally found a very simple thing:I needed to turn off safe mode which in my plesk setup was turned on. So for all the blogs on the server I made sure I had a vhost.conf file in the plesk conf directory and that this file contained
<Directory /var/www/vhosts/merlinsilk.com/httpdocs>
php_admin_flag safe_mode off
</Directory>Hope this helps somebody.
Forum: Fixing WordPress
In reply to: YouTube video: embed and not ibed, pleasepity – I just updated to 2.1.2 – but that bug is still there – no changes in tiny_mce.js
not that familiar with js, but it appears it’s looking for
<em instead of
and so finds <embedDon’t know what that syntax
h = h.replace(/<em(\/?)/gi, ‘<i’);
actually means, otherwise I could correct it more properly and stead of just getting rid of it.Is there a bug database for wordpress where we could actually report this as a bug?
Forum: Fixing WordPress
In reply to: YouTube video: embed and not ibed, pleaseOK, there is a bit of a solution if you run the wp software on your own server and have access to the sources:
go to the directory wp-includes/js/tinymce
and edit the file tiny_mce.js
Look for <em and change the place where you find it to the following// Convert all strong/em to b/i in Gecko
if (tinyMCE.isGecko) {
h = h.replace(/<strong/gi, ‘<b’);
//h = h.replace(/<em(\/?)/gi, ‘<i’);//gezi
//h = h.replace(/<em /gi, ‘<i’);
h = h.replace(/<\/strong>/gi, ‘</b>’);
//h = h.replace(/<\/em>/gi, ‘</i>’);
}in other words, just comment these three lines.
On first test it works now – you will have to clear your cache and restart firefox.Very rude fix and I don’t know if there are any bad ramifications, but for now it works.