jumbo1
Forum Replies Created
-
Forum: Plugins
In reply to: [Double Opt-In for Download] Show download countPS: I’ve been able to figure this one out.
Anyone who needs the solution let me know. I’ll offer it for $5 only.
You can email me at manager11 at gmail
Forum: Plugins
In reply to: [Double Opt-In for Download] Text Input ElementHi itsdps,
I can do these modifications for you for only $5.
Let me know if you’re interested.
Forum: Plugins
In reply to: Is there a plugin that preloads tags in wordpress editor?In case there is no plugin, is there a hack or tweak that makes it possible to have all tags loaded into the editor instead of waiting for the ajax code to query the server each time I type in the tag box?
Maybe that’s because you’re using custom post types?
Just a guess..
Forum: Plugins
In reply to: [Plugin Organizer] Unicode permalinks not supported?I finally made it work.
I had to use the hex version of the permalink, and add a trailing / at the end.
Forum: Plugins
In reply to: [Plugin Organizer] Unicode permalinks not supported?I finally made it work.
I had to use the hex version of the permalink, and add a trailing / at the end.
Forum: Plugins
In reply to: [W3 Total Cache] W3TC CloudflareBut you can’t have both if you are using the cloudflare extension.
You mean the cloudflare plugin for WP?
Were u able to fix it? That page looks fine from here
Forum: Fixing WordPress
In reply to: Auto repairing database resultsany help from the experts?
How can I solve the options table crashing every now and then?
Would I need to re-install WP?Forum: Fixing WordPress
In reply to: Auto repairing database resultsAlso, here are the 3 first error messages in my error_log file (I have a bunch of different error messages, ALL of them having to do with the vs_options table):
[06-Jun-2014 21:54:04 UTC] WordPress database error Incorrect key file for table ‘./mysite_vids/vs_options.MYI’; try to repair it for query DELETE FROM vs_options WHERE option_name = ‘_site_transient_theme_roots’ made by do_action_ref_array, call_user_func_array, wp_maybe_auto_update, WP_Automatic_Updater->run, wp_update_themes, wp_get_themes, search_theme_directories, get_site_transient, delete_site_option, delete_option
[06-Jun-2014 21:54:04 UTC] WordPress database error Incorrect key file for table ‘./mysite_vids/vs_options.MYI’; try to repair it for query DELETE FROM vs_options WHERE option_name = ‘_site_transient_timeout_theme_roots’ made by do_action_ref_array, call_user_func_array, wp_maybe_auto_update, WP_Automatic_Updater->run, wp_update_themes, wp_get_themes, search_theme_directories, get_site_transient, delete_site_option, delete_option
[08-Jun-2014 07:50:34 UTC] WordPress database error Table ‘vs_options’ is marked as crashed and should be repaired for query SELECT option_value FROM vs_options WHERE option_name = ‘adinj_options’ LIMIT 1 made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), include_once(‘/plugins/ad-injection/ad-injection.php’), adinj_setup_hooks_and_filters, adinj_option, adinj_options, get_option
Forum: Plugins
In reply to: [Lightbox Pop - Responsive Lightbox] Conflict with w3t cacheCool, I’ll try it, thanks.
i had temporarily resolved the issue by reverting to the previous version of w3t cache
In my server log I’m only getting entries about the wp_postmeta table crash. Where can I check the mysql logs from? I’m on a shared server…
One thing I tried that seems to resolve the issue (for now) is to I deactivated and re-activated W3 Total Cache. The problem is gone, but I’m not sure how often it will keep coming back.
I’ll keep this thread updated, if anyone else is experiencing the same issue plz give ur feedback
Thanks!
Forum: Plugins
In reply to: [Lightbox Pop - Responsive Lightbox] Conflict with w3t cacheBTW I tried that on 2 different WP installations, same result.
It even breaks down with WP Super Cache
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Add custom link under imageWhat I did so far (and it works) is:
1- I added a “doc” attribute to the
<a>
tag of my image, so I get something like this with the name of the document I want to link to (taken from the nextgen database):<a rel="lightbox[set_1]" title="Picture1" href=".../wp-content/gallery/gallery1/pic1.jpg">
2- I played with the code of jquery.colorbox.js to display my new “doc” attribute instead of the Title attribute, so I turned this:
settings.title = settings.title || element.title
Into this:
settings.title = '<a class="doc" href="/wp-content/uploads/docs/'+$(element).attr('doc')+'">Download File'</a>';}
And that’s it! Under each picture, I get a link to the document associated with it.
This is a dirty fix for me. If anyone has a better solution without removing the original title code, please tell me about it. I’m a total noob when it comes to javascript.
cool
it turned out for me it was an htaccess problem ??
anyway i’ll be looking for ur docs as a future reference