Page 6 of 18 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 LastLast
Results 76 to 90 of 261
Like Tree150Likes

vBSEO 3.6.0 Release Candidate 1 available for Licensed Customers!

This is a discussion on vBSEO 3.6.0 Release Candidate 1 available for Licensed Customers! within the vBSEO Announcements forums, part of the Announcements & Pre-Sales category; Originally Posted by PossumX As for the "Likes" function, I am assuming it is feasible to change the icon that ...

  1. #76
    vBSEO Staff Array Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    675 times
    Blog Entries
    2
    Quote Originally Posted by PossumX View Post
    As for the "Likes" function, I am assuming it is feasible to change the icon that is used, correct?
    Quote Originally Posted by bigtree View Post
    Spot on.

    I too would like to change the heart out to something more unique to my site.
    You can easily change the path to the image in
    vbseo_buttons.css

    Code:
    .vbseo-likes-hearts {
        background:url("../images/forum/vbseo_like_bg.png") no-repeat scroll 100% 2px transparent;
        height:16px;
        position:absolute;
        right:10px;
        top:15px;
        z-index:1;
        *z-index: 10006;
    }
    to whatever you want. it is a background image in the css.

    Quote Originally Posted by Conway View Post
    How can I display Liked in postbit (postbit_legacy) like this forum?
    vb4:
    Code:
    <dt>Liked</dt> <dd>{vb:raw post.vbseo_likes_in} times</dd>


    vb3:
    Code:
    <div>Likes: $post[vbseo_likes_in]</div>
    Quote Originally Posted by Garamond View Post
    I agree with the above posters, the "Like" button must be visible - and not mouse-over visible as it is now. I presume this will change in the release version?
    Quote Originally Posted by derandechser View Post
    Totally agree. This canīt be hard to change, right? Could you give me a hint, where i can start to do it, that the Like-Link is always visible?
    No, this is not planned to be changed. If you want it to show all the time, you will need to add a window.onload event listener to call the display.

    check scripts/vbseo_ui.js for more details if you want to customize it.


    Quote Originally Posted by patrick91 View Post
    I have installed 3.6 rc1 but the likes thing is not showing @ all... :( ahh its working!!! but yeah... it's not an eye catcher...:P
    If you are having issues, please open a support thread.

    Quote Originally Posted by sensimilla View Post
    Excellent, another reason to renew.

    Quote Originally Posted by MySite View Post
    The hearts are located here: forums/vbseo/resources/images/forum/vbseo_like.png and forums/vbseo/resources/images/forum/vbseo_likes_heart.png
    If you require different sizes, changing just the image may break layout, so see above for the css block to edit.
    Brian Cummiskey / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  2. #77
    Senior Member Array
    Real Name
    Jason
    Join Date
    Jun 2010
    Location
    Maple Ridge, BC
    Posts
    118
    Liked
    1 times
    WTF is this ?

    Warning: Call-time pass-by-reference has been deprecated in /home/badtouc1/goaliecrease.net/vbseo/includes/functions_vbseo_seo.php on line 111

  3. #78
    Senior Member Array
    Real Name
    Jason
    Join Date
    Jun 2010
    Location
    Maple Ridge, BC
    Posts
    118
    Liked
    1 times
    Well my site is down, and I can't access the admin cp due to the error above. Great.

  4. #79
    Junior Member Array Garamond's Avatar
    Real Name
    Raymond
    Join Date
    Mar 2007
    Location
    Norway
    Posts
    28
    Liked
    4 times
    Quote Originally Posted by Brian Cummiskey View Post
    No, this is not planned to be changed. If you want it to show all the time, you will need to add a window.onload event listener to call the display.
    Please make it optional then. In the prefs you add an extra choice whether to make it visible or the default mouse-over visible.

  5. #80
    Member Array PossumX's Avatar
    Real Name
    Possum
    Join Date
    Oct 2007
    Location
    CT
    Posts
    41
    Liked
    2 times
    Quote Originally Posted by goaliecrease View Post
    Well my site is down, and I can't access the admin cp due to the error above. Great.
    I'd file a support ticket for that scenario, as that will be your most expedient route to resolution.

    On the flip side, your site is up and accessible for me, with the warning you reference being displayed at the top.

    What version of php is your host running?, as this has typically been associated to php4 execution.
    NBSSportfishing.com Sportfishing Forums | Saltwater Fishing

  6. #81
    Senior Member Array
    Real Name
    Jason
    Join Date
    Jun 2010
    Location
    Maple Ridge, BC
    Posts
    118
    Liked
    1 times
    I've done that, without any response. I'm sort of short of patience right now, as my site is messed up while I wait for support. I also have to leave for a few hours, and I guess I'll have to leave the site messed up.

  7. #82
    Member Array PossumX's Avatar
    Real Name
    Possum
    Join Date
    Oct 2007
    Location
    CT
    Posts
    41
    Liked
    2 times
    Line 111 is:

    Code:
    vBSEO_UI::cms_hook(&$view);
    Line 104 has a similar parameter as well:

    Code:
    function vbseo_process_cms_article(&$view)
    It may be the "&" in association to your php execution version.

    The code is relative to vB CMS functions, and is new. Personally, I would make a real quick attempt at removing the '&' in line 111 and see what happens, being prepared to change it back if it degrades. Pretty simple actually. If it works, be on the lookout for an error in Line 104. Now, this isn't a fix, but a workaround for you. Since this isn't happening to others, you really need to see what your php execution environment is configured like.

    I avoid RC versions on the main software for my production site, as they are still in flight until Gold.
    NBSSportfishing.com Sportfishing Forums | Saltwater Fishing

  8. #83
    Senior Member Array
    Real Name
    Jason
    Join Date
    Jun 2010
    Location
    Maple Ridge, BC
    Posts
    118
    Liked
    1 times
    Can't find "vBSEO_UI::cms_hook(&$view);" in the file.

  9. #84
    Member Array PossumX's Avatar
    Real Name
    Possum
    Join Date
    Oct 2007
    Location
    CT
    Posts
    41
    Liked
    2 times
    I am looking at the ../vbseo/includes/functions_vbseo_seo.php file right now (for vBSEO 3.6 RC1) and it is there on line 111, without a doubt.

    I would make sure you uploaded all the files to the proper directories on your server, as if it is not there, that would be a problem, and indicative of incorrect files being in place. It is NOT there in the 3.5.2 and prior vBSEO versions of this file.
    NBSSportfishing.com Sportfishing Forums | Saltwater Fishing

  10. #85
    Member Array PossumX's Avatar
    Real Name
    Possum
    Join Date
    Oct 2007
    Location
    CT
    Posts
    41
    Liked
    2 times
    Looks like you got it fixed ... incorrect files reuploaded?
    NBSSportfishing.com Sportfishing Forums | Saltwater Fishing

  11. #86
    Senior Member Array
    Real Name
    Jason
    Join Date
    Jun 2010
    Location
    Maple Ridge, BC
    Posts
    118
    Liked
    1 times
    Sorry, I did find it, it did rectify the issue one issue. But I'm finding my CMS css looks all messed now too.

  12. #87
    Member Array PossumX's Avatar
    Real Name
    Possum
    Join Date
    Oct 2007
    Location
    CT
    Posts
    41
    Liked
    2 times
    Quote Originally Posted by goaliecrease View Post
    Sorry, I did find it, it did rectify the issue one issue. But I'm finding my CMS css looks all messed now too.
    It's clean in IE8, Chrome, Safari, but in Firefox 3.6.13 it is fouled up for me.

    Like I said, removing that '&' is not a fix (and I would also recommend removing the line 104 duplicate parameter), it is just a workaround for that deprecation message. Is you php running as 4.x or is php4 installed? You should be running php5 in php5 mode wherever possible.
    NBSSportfishing.com Sportfishing Forums | Saltwater Fishing

  13. #88
    vBSEO Staff Array Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    675 times
    Blog Entries
    2
    Quote Originally Posted by goaliecrease View Post
    WTF is this ?

    Warning: Call-time pass-by-reference has been deprecated in /home/badtouc1/goaliecrease.net/vbseo/includes/functions_vbseo_seo.php on line 111
    After update of vbseo_3-6-0_rc1

    Quote Originally Posted by Garamond View Post
    Please make it optional then. In the prefs you add an extra choice whether to make it visible or the default mouse-over visible.
    3.6 is likely feature locked at this point. Perhaps in a future version this will be expanded upon with more features. We can never please 100% of everyone with what we do. We think this is the best way for both user interaction and SEO (keeps the actual links out of the source code for bots so your top content doesn't get riddled with like and share keywords.)


    Quote Originally Posted by PossumX View Post
    I'd file a support ticket for that scenario, as that will be your most expedient route to resolution.

    On the flip side, your site is up and accessible for me, with the warning you reference being displayed at the top.

    What version of php is your host running?, as this has typically been associated to php4 execution.
    php 5.3.x is more strict about these errors. They likely don't show on 5.2.x installs.

    After update of vbseo_3-6-0_rc1

    has a fix.

    There may be others like it. Please report anything you find in the bug reporting forum.

    Quote Originally Posted by goaliecrease View Post
    I've done that, without any response. I'm sort of short of patience right now, as my site is messed up while I wait for support. I also have to leave for a few hours, and I guess I'll have to leave the site messed up.
    It is sunday night.... Our ticket response time is offically 24-48 hours on the weekend (see the pdf with your download for a complete chart of our Service Level Agreement). You only had to wait an hour

    Quote Originally Posted by PossumX View Post
    I avoid RC versions on the main software for my production site, as they are still in flight until Gold.
    As mentioned, you should never run any non-gold software in a live production critical environment. There WILL be bugs, and some may be detrimental to your site, database, or otherwise. While we always attempt to release the best bug free code as possible, no software is perfect and we simply don't have 100 environments to test on to find certain server-related or php version issues like this.

    Quote Originally Posted by goaliecrease View Post
    Sorry, I did find it, it did rectify the issue one issue. But I'm finding my CMS css looks all messed now too.
    If you're still having issues, please open a new thread with errors details for troubleshooting. This is an announcement forum and shouldn't be used for support issues.
    Brian Cummiskey / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  14. #89
    Member Array PossumX's Avatar
    Real Name
    Possum
    Join Date
    Oct 2007
    Location
    CT
    Posts
    41
    Liked
    2 times
    Thanks for clarity Brian. I am glad to see that my remediation path was actually the same as what you posted in your referenced thread (I must have learned something over the years, and I hadn't seen your post).

    Now, back to the announcement thread purpose. As stated before, can't wait for the MaxCDN integration in 3.6 Gold...
    NBSSportfishing.com Sportfishing Forums | Saltwater Fishing

  15. #90
    Senior Member Array
    Real Name
    Jason
    Join Date
    Jun 2010
    Location
    Maple Ridge, BC
    Posts
    118
    Liked
    1 times
    Thanks for the help!

Page 6 of 18 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 LastLast

Similar Threads

  1. vBSEO 3.5 Release Candidate 1 is here!
    By Juan Muriente in forum vBSEO Announcements
    Replies: 359
    Last Post: 02-18-2013, 05:05 PM
  2. vBSEO 3.5 Release Candidate
    By helmica in forum General Discussion
    Replies: 2
    Last Post: 12-23-2009, 02:28 PM
  3. vBSEO 3.2.0 Release Candidate 7
    By Juan Muriente in forum vBSEO Announcements
    Replies: 54
    Last Post: 06-15-2008, 06:11 PM
  4. vBSEO 3.2.0 Release Candidate 4
    By Juan Muriente in forum vBSEO Announcements
    Replies: 49
    Last Post: 05-05-2008, 09:11 AM
  5. vBSEO 3.0 Release Candidate 5 Available
    By Juan Muriente in forum vBSEO Announcements
    Replies: 30
    Last Post: 10-18-2006, 02:12 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •