wjm
Forum Replies Created
-
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Lightbox Plus and WP 3.0.1 Not playing nice!i was having the same issue,
it is because you are runnign php 4and it’s said that is not supported
i think the author should make a php version check and if php4 is running, it shold be deactivated.
about Point no. 1,
i think it adds some level of security as the password is not exposed to pricking eyes.
specially if people use their personal email account for this purpose.It’s like storing passwords in your web browser.
Password is there stored in a database in plain text.. but that doesnt mean that every time you check your email password needs to be displayed on screen.just my two cents.
– wjmForum: Plugins
In reply to: [Plugin: WP Mail SMTP] SMTP test e-mail not working with Gmaili am using gmail and it works
Forum: Plugins
In reply to: Contact Form 7 – _wpcf7.cache is not definedthis is still happening in the latest version.
again, this solution would help
https://www.ads-software.com/support/topic/385850?replies=9#post-1492553Forum: Plugins
In reply to: [Plugin: Verve Meta Boxes] Improvements Bugs?another bug,
change line 304,
for($h=0;$h<12;$h++){
with
for($h=1;$h<=12;$h++){there was no way to set 12 Noon, hours should go from 1-12 not from 0-11
Forum: Plugins
In reply to: [Plugin: Verve Meta Boxes] Improvements Bugs?to exemplify issue #5:
https://www.alistapart.com/articles/neveruseawarning/Forum: Plugins
In reply to: [Plugin: Verve Meta Boxes] Improvements Bugs?6. This is related to bug #4,
When uploading files with non-standard characters, like publicación.txt
the link stored in the db, and the real file will be different, thus, links wont work.Forum: Plugins
In reply to: [Plugin: Debug Objects] wrong value for some constantsanother minor thing
if ($debug_queries_on) $echo .= '<small><a href="https://www.ads-software.com/extend/plugins/debug-queries/">' . __( 'See more Details with my plugin', FB_WPDO_TEXTDOMAIN) . ' Debug Queries</a></small>';
should be
if (!$debug_queries_on) $echo .= ' <small><a href="https://www.ads-software.com/extend/plugins/debug-queries/">' . __( 'See more Details with my plugin', FB_WPDO_TEXTDOMAIN) . ' Debug Queries</a></small>';
note
if (!$debug_queries_on)
$echo .= ‘ <small>a space before <small>
Forum: Plugins
In reply to: [Plugin: Verve Meta Boxes] Improvements Bugs?5. THIS IS SERIOUS
This plugin made me loose my data!!!
I was using plain custom fields before using this plugin,
I created a box that used this same field_key, as i wanted to use the new interface.
then, since i couldnt update the Descriptiong fields, i decided to remove the box and start again
what happened,
the plugin said, oh.. are we removing the box /or a field,let′s remove all the meta data associated to the posts for these fields.. and removed everything!
Why would you do that.i know , you say that in your alert box, but most of the time when you try to delete something you get a confirmation box, which i didnt read and hit ok!
also, if you create box and use an existing name, like it happened to me , why wouldt i be able to delete the box without loosing the data.Forum: Plugins
In reply to: [Plugin: Verve Meta Boxes] Improvements Bugs?4. When creating a text field with a field name with an accentuated vowel, like “Función” the ó gets replaced with “??” in the field_key like: “funci??n”. when it shold be “funcion”. The Title looks fine, but the key is wrong.
Forum: Plugins
In reply to: Sometimes displaying the shortcode [table-of-content]sorry man, i forgot i had to close it with [/table-of-content]
anyway, if the closing tag is missing, it shouldnt create a toc at all!
Forum: Plugins
In reply to: Sometimes displaying the shortcode [table-of-content]To fix this,
I have added this code, in plugin.php:
$res->content = preg_replace('/^.*?\[table-of-content\]/Usi', '', $res->content);}
right above
// finalize the "new" content}
Forum: Plugins
In reply to: [Plugin: Search Unleashed] Fatal error under WP 3.0-beta2It happened again, and after i reloaded the error was gone
a more detailed error log:
( ! ) Fatal error: Cannot redeclare class Search_Post_Module in [..]\wp-content\plugins\search-unleashed\models\search-module.php on line 237
Call Stack
# Time Memory Function Location
1 0.0205 113104 {main}( ) ..\post-new.php:0
2 1.1486 31643936 get_default_post_to_edit( ) ..\post-new.php:50
3 1.7884 32205592 wp_insert_post( ) ..\post.php:371
4 1.8027 32230968 do_action( ) ..\post.php:2294
5 1.8043 32232656 call_user_func_array ( ) ..\plugin.php:395
6 1.8043 32232656 SearchUnleashedPlugin->save_post( ) ..\plugin.php:0
7 1.8429 32338640 include_once( ‘[..]\wp-content\plugins\search-unleashed\models\spider.php’ ) ..\search-unleashed.php:452Forum: Fixing WordPress
In reply to: turn off comments on pages by defaultnews is this feature is already included in WP 3.0.
Forum: Developing with WordPress
In reply to: Batch processing all the postsare you looking for this?
in theory you can run a php script as long as needed,
and you dont need apache to run php.