mayid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ALL plugins break dashboard since 3.1 upgradeI’m having issues with the plugins also. The DMSGuestBook in particular right now. It says:
Fatal error: Out of memory (allocated 31981568) (tried to allocate 32 bytes) in /homepages/21/d359189625/htdocs/wp-admin/includes/misc.php on line 286
I’m acceding this error page through the plugins->DMSGuestBook->edit button, because the specific panel for the related plugin is just missing.
I thought that deactivating the WS-e-commerce plugin this would be solved but it’s not.
I’m setting 258MB in the memory_limit() method and even 1024MB but it wont help.
However, notice that i’m using WP 3.1.2 alpha right now.
Forum: Plugins
In reply to: Thumbnail For Excerpts generates invalid XHTMLI founded another issue. When images haves external links, and TFE_MAXSIZE is set to “yes”, this weird thing happends:
Warning: imagecreatefromjpeg(C:\wamp\www\astarbagus\wordpress/http://www.diseniomadreselva.com.ar/imagenes/borde_derecho.gif) [function.imagecreatefromjpeg]: failed to open stream
Look at the string. We have two absolute paths.
SO i’m trying to solve this issue by adding a conditional:
if (strpos($img1, “http”) !== FALSE){
$im = imagecreatefromjpeg(substr($img1,stripos($img1,”wp-content”)));
}
else{
$im = imagecreatefromjpeg(realpath(“.”).”/”.substr($img1,stripos($img1,”wp-content”)));
}This may work. But not under windows running PHP 5.2.9 (5.3 will do the work).
Forum: Fixing WordPress
In reply to: Attach image to post from media libraryI´m uploading images by ftp. And then using a plugin to enter them into the library like attachments.
The plugin also generates the html tag for each picture, and thumnbnails if required.
It´s a very simple php file. Maybe we can work on it to solve some extra needs.
Just edit it and change ‘get_setting’ by ‘get_option’
I´d like it to edit my post, no just to generate new ones.
Forum: Fixing WordPress
In reply to: Edit gallery margins?Please, guide me.
I´m trying to show the image descriptions under the thumbnails. But i can´t find documentation about this.
I guess it´s under ‘captiontag’ name. But which var should i call to print it in php plugins? (i´m up to write my first plugin so to display this ‘image description’).
Forum: Fixing WordPress
In reply to: [Plugin: Galleria WP] galleria css issue ????Ah! Yes. Now I see. Two rows or colums works fine for tiles, but not for carousel mode.
Thanx a lot for this plugin.
I see no difference. It works for my in 2.7.1, also for pages.
But there´s something i should resolve. When loading content by ajax, the galleria doesn´t loads.
Give me a rope if you think about something to make these two plugins work ok together.
Forum: Fixing WordPress
In reply to: [Plugin: Galleria WP] galleria css issue ????I´m using word press 2.7.1
In the Admin options i´m asking for a vertical carousel. But in two colums. And it doen´t function.
Also i tried to write columns=”2″ myself, and i can´t get it to work. Maybe because it´s an old plugin?
Even, the only column i get doesn´t accepts overflow:hidden option in the css file. This may be causes because the entry lacks of specific height.
Anyway, i´d like two rows like i have in http://www.zairaster.com.ar/libros.html (Galleria / Jcarousel). But i don´t know how to implement this as a plugin in wordpress, and anyway this one is much better than mine because it uses vars for changins options.