Forum Replies Created

Viewing 15 replies - 31 through 45 (of 92 total)
  • Thread Starter chuckingit

    (@chuckingit)

    Hi TobiasBG – thanks in advance for your help with this … i went in this AM and looked at my table … there is only one … so i exported it to see if error was anywhere in the table … it was not … but there are some extra double quotes that might be the issue and not sure if it is how i am importing it or how your code is handling html hrefs … details below …

    here is example of original table exported from TablePress … this snippet only shows first ten rows including the header:

    Domain Names,Domain Contact
    AvantiGroup.net,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=100"" title=""This domain - AvantiGroup.net could be yours - click here to make an offer"">Contact Agent</a>"
    Avantigrp.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=101"" title=""This domain - Avantigrp.com could be yours - click here to make an offer"">Contact Agent</a>"
    BcReports.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=102"" title=""This domain - BcReports.com could be yours - click here to make an offer"">Contact Agent</a>"
    BizRSVP.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=103"" title=""This domain - BizRSVP.com could be yours - click here to make an offer"">Contact Agent</a>"
    BizSafe.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=104"" title=""This domain - BizSafe.com could be yours - click here to make an offer"">Contact Agent</a>"
    BohemianChic.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=108"" title=""This domain - BohemianChic.com could be yours - click here to make an offer"">Contact Agent</a>"
    BrainLove.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=110"" title=""This domain - BrainLove.com could be yours - click here to make an offer"">Contact Agent</a>"
    BusinessRSVP.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=109"" title=""This domain - BusinessRSVP.com could be yours - click here to make an offer"">Contact Agent</a>"
    CandidCooking.com,"<a href=""http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=111"" title=""This domain - CandidCooking.com could be yours - click here to make an offer"">Contact Agent</a>"

    because the double quotes seem like they might be the issue, i thought that maybe this was due to table import from WP Table Reloaded so i created a new table …

    with the new table, i tried several import options and in each case got the same result upon table export … in all cases, after import the preview looked great thus gave me false security that all was well … it was only during file export and looking at the exported table locally did i see the double quotes …

    some of the import methods i tried included … first, “Manual Import with CSV” and that worked but export showed the extra quotes … then i tried “Manual Import with HTML” but this did not work in that i got an error message … then i tried import from file locally and ditto in that it worked but on export it showed extra quotes …

    here is how i constructed my initial table data ->

    Domain Names,Domain Contact
    AvantiGroup.net,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=100" title="This domain - AvantiGroup.net could be yours - click here to make an offer">Contact Agent</a>
    Avantigrp.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=101" title="This domain - Avantigrp.com could be yours - click here to make an offer">Contact Agent</a>
    BcReports.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=102" title="This domain - BcReports.com could be yours - click here to make an offer">Contact Agent</a>
    BizRSVP.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=103" title="This domain - BizRSVP.com could be yours - click here to make an offer">Contact Agent</a>
    BizSafe.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=104" title="This domain - BizSafe.com could be yours - click here to make an offer">Contact Agent</a>
    BohemianChic.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=108" title="This domain - BohemianChic.com could be yours - click here to make an offer">Contact Agent</a>
    BrainLove.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=110" title="This domain - BrainLove.com could be yours - click here to make an offer">Contact Agent</a>
    BusinessRSVP.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=109" title="This domain - BusinessRSVP.com could be yours - click here to make an offer">Contact Agent</a>
    CandidCooking.com,<a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=111" title="This domain - CandidCooking.com could be yours - click here to make an offer">Contact Agent</a>

    note the above is also only showing first ten rows …

    so then i figured maybe my html code in the second field was throwing off everything so i recreated the table in html as follows ->

    <table>
    <tr><td>Domain Names</td><td>Domain Contact</td></tr>
    <tr><td>AvantiGroup.net</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=100" title="This domain - AvantiGroup.net could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>Avantigrp.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=101" title="This domain - Avantigrp.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>BcReports.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=102" title="This domain - BcReports.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>BizRSVP.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=103" title="This domain - BizRSVP.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>BizSafe.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=104" title="This domain - BizSafe.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>BohemianChic.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=108" title="This domain - BohemianChic.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>BrainLove.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=110" title="This domain - BrainLove.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>BusinessRSVP.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=109" title="This domain - BusinessRSVP.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    <tr><td>CandidCooking.com</td><td><a href="http://cooltea.com/cgi-bin/start.cgi/avanti/stores/102-avantidomains/cart.html?id=111" title="This domain - CandidCooking.com could be yours - click here to make an offer">Contact Agent</a></td></tr>
    </table>

    and then imported this as html instead of csv … here again, preview looked fine but on export i got same double quotes …

    in the end, i suspect that i need to format my table somehow in order to play nice with your plugin ..??.. essentially this table is simple two columns with about 100 rows … the first column is a domain name, the second is a link to corresponding shopping cart …

    thanks again for any pointers you can share in this dept … cordially, chuck scott

    okay – i might be answering my own question here as i found this info -> “Fullscreen: JavaScript can’t initiate Flash’s true fullscreen, and Firefox still has terrible Flash support (if you try to adjust the size of a Flash movie’s surrounding DOM nodes, Firefox reloads it!)” on the developer’s site at this url -> http://johndyer.name/html5-video-wrapper-for-youtube-and-vimeo-api-mediaelement-js/

    what a pain … i would of thought Firefox was better than that … i mean, yes i would expect said bugginess from IE but i digress …

    i have same issue – in that fullscreen does NOT work in Firefox 18.2 – ugh

    Thread Starter chuckingit

    (@chuckingit)

    wow – your tweak did the trick in that i can do the bulk edit options and no more errors … way cool – thanks 🙂

    Thread Starter chuckingit

    (@chuckingit)

    Awesome suggestions – Thank You!

    Thread Starter chuckingit

    (@chuckingit)

    just a post fyi … in that the latest version of Relevanssi 3.0 DOES work fine with latest version of Formidable Pro 1.6.05 on latest version of WP Multisite Network 3.4.1 … kudos to 3.0 improvements … thank you 🙂

    Hi David – thanks for loop back and here is hoping your todo lists hits 110% in said depts :>) … seriously, i’m not sure how to loop into WP DB at sub site on network level either but share some data points i think i read along the way as fyi in hopes they might help …

    a) using sub-site RSS into primary site = bad given extra load on server … not sure about iframes but recall reading something about using switch_to_blog() as best method to get sub-site info from one site to other on network ..??..

    b) reading this Smashing Mag article ->
    http://wp.smashingmagazine.com/2012/03/22/useful-wordpress-tools-themes-plugins/

    which has link to slideshare by Otto and Nacin ->
    http://www.slideshare.net/andrewnacin/wordpress-transients-caching-and-the-complexities-of-multisite

    and i believe in slide 23 -> 27 there are clues to multisite success ..??..

    accordingly, best of ongoing success and to be continued … cordially, chuck scott

    not sure this is 100% on topic but i’d like to add / inquire -> How can your plugin do it via WP Multisite Network ..??.. that is -> how can you get terms / custom post types from sub-sites on the network to show on other network sites ..??.. e.g., if sub-site-B has custom post type xyz, how can primary site show said xyz post type from sub-site-B on the primary network site ..??.. or for that matter, how can sub-site-C show custom post type xyz from sub-site-B ..??..

    regardless, kudos to you and others like you with WP sensibilities et al. :>) cs

    i don’t have an answer for you in this dept but share as fyi in that i created group and made a post reserved for that group … when not logged in and a user of that group tries to access the post, they get 404 page not found error … when logged in, they can see the post … i share because it would be better instead of 404 for something more graceful like “sorry – you gotta be member of xyz-group to access this” … this is akin to your shortcode example above in that other plugins allow for -> if member of group show x, if nonmember show y …

    Hi Kelly – i’m currently testing this plugin, ver 1.3.55, on MultiSite 3.3.1 and it seems to work … e.g., i activated it on a sub-site and not on the other sub-sites and indeed the plugin groups / roles do not transfer from one sub-site to the other … initially i thought i experienced the plugin showing groups / roles on the primary site but i believe this was browser cache thing as i had several windows open during testing and then cleared all cache and now have not been able to repeat …

    i am having issue protecting direct file access and my notes from testing previous ver 1.3.27 indicated that this htaccess trick worked but not yet in 1.3.55 but here again, i might be missing something ..??..

    hey trevor – just a quick follow up … i tried a number of things including putting the filter in the mu-plugin folder for network activation but did not help … so i moved the wp-config.php to public www root and went back to default plugin files and that worked which gave me ability to take plugin for a spin … accordingly, big thank you for your assitance with all this … best wishes for Happy Holiday Season and best of ongoing success in 2012 and beyond! cheers – chuck scott

    i’m not sure about ABSPATH constant but did as you suggested – e.g., change the file “env.php” from the include_once to the variable of $path_to_config = … yet to no avail … see data points below …

    ====================
    error message 03 ->
    ====================
    The plugin generated 604 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.

    ====================
    error message 04 ->
    ====================

    Warning: include_once(/home/mydomain/public_html/wp-config.php) [function.include-once]: failed to open stream: No such file or directory in /home/mydomain/public_html/wp-content/plugins/topquark/lib/env.php on line 15

    Warning: include_once() [function.include]: Failed opening ‘/home/mydomain/public_html/wp-config.php’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/mydomain/public_html/wp-content/plugins/topquark/lib/env.php on line 15

    hey trevor – thanks for super fast response … interesting … my wp-config.php files are normally moved up north of www root thus to help with security as that is what i read and saw in other posts about one of the ways to help prevent hacks … hence my file path for this site is -> /home/mydomain/wp-config.php … thanks in advance for help and pointers … cordially, chuck scott

    Hi – i tried activating v2.0.13 and had some issues that might be related … see two error messages below … cordially, chuck scott

    ps – not sure this matters but i tried to install on Multisite Network sub domain via WP 3.2.1

    ====================
    error message 01 ->
    ====================
    The plugin generated 692 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.

    ====================
    error message 02 ->
    ====================
    note i put in mydomain instead of direct account …

    Warning: include_once(/home/mydomain/public_html/wp-content/plugins/topquark/lib/../../../../wp-config.php) [function.include-once]: failed to open stream: No such file or directory in /home/mydomain/public_html/wp-content/plugins/topquark/lib/env.php on line 11

    Warning: include_once() [function.include]: Failed opening ‘/home/mydomain/public_html/wp-content/plugins/topquark/lib/../../../../wp-config.php’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/mydomain/public_html/wp-content/plugins/topquark/lib/env.php on line 11

    at the risk of being an e.pest, i was working on another site today while considering your plugin activated options -> i.e., the -> Let admin subscribe … and thought, “hmm. double hmmm. wonder if code behind this option is not firing 100% hence this thread ..??..” …

    on related fronts of good cheer, not sure what GMT zone you call home but happy turkey day from this -5 GMT zone :>) cordially, chuck scott

Viewing 15 replies - 31 through 45 (of 92 total)