Bugs/reports

2456

Comments

  • @AnthonySmith said:

    @Solaire said:
    Do you have any PHP cache enabled?

    Nope, I have an Nginx+Apache hybrid setup so I can use the required htaccess files for vanilla to actually work though, but i doubt that would be the issue.

    Here's the complete, modified, class.thankfulpeople.plugin.php https://pastebin.com/RJf9Dmub.
    If you want to make sure the function is actually being hit, put an echo followed by a die (i.e. echo "HITT"; die;).

  • InceptionHostingInceptionHosting Hosting ProviderOG

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:
    Do you have any PHP cache enabled?

    Nope, I have an Nginx+Apache hybrid setup so I can use the required htaccess files for vanilla to actually work though, but i doubt that would be the issue.

    Here's the complete, modified, class.thankfulpeople.plugin.php https://pastebin.com/RJf9Dmub.
    If you want to make sure the function is actually being hit, put an echo followed by a die (i.e. echo "HITT"; die;).

    Replaced, sorry but could you explain that last part to me like I am 5 or 70 years old? where specifically do I put that?

    Thanked by (1)Solaire

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • @AnthonySmith said:

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:
    Do you have any PHP cache enabled?

    Nope, I have an Nginx+Apache hybrid setup so I can use the required htaccess files for vanilla to actually work though, but i doubt that would be the issue.

    Here's the complete, modified, class.thankfulpeople.plugin.php https://pastebin.com/RJf9Dmub.
    If you want to make sure the function is actually being hit, put an echo followed by a die (i.e. echo "HITT"; die;).

    Replaced, sorry but could you explain that last part to me like I am 5 or 70 years old? where specifically do I put that?

    You'd put that in front of the code block you adapted. That said, since I changed the "Thanks" thingy I reckon it's not a PHP cache issue. Is your plugin in "plugins/ThankfulPeople"?

  • InceptionHostingInceptionHosting Hosting ProviderOG
    edited November 2019

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:
    Do you have any PHP cache enabled?

    Nope, I have an Nginx+Apache hybrid setup so I can use the required htaccess files for vanilla to actually work though, but i doubt that would be the issue.

    Here's the complete, modified, class.thankfulpeople.plugin.php https://pastebin.com/RJf9Dmub.
    If you want to make sure the function is actually being hit, put an echo followed by a die (i.e. echo "HITT"; die;).

    Replaced, sorry but could you explain that last part to me like I am 5 or 70 years old? where specifically do I put that?

    You'd put that in front of the code block you adapted. That said, since I changed the "Thanks" thingy I reckon it's not a PHP cache issue. Is your plugin in "plugins/ThankfulPeople"?

    Its /plugins/ThankfulPeople2/

    From: https://open.vanillaforums.com/addon/thankfulpeople2-plugin

    Thanked by (1)Solaire

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • SolaireSolaire OG
    edited November 2019

    @AnthonySmith said:

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:
    Do you have any PHP cache enabled?

    Nope, I have an Nginx+Apache hybrid setup so I can use the required htaccess files for vanilla to actually work though, but i doubt that would be the issue.

    Here's the complete, modified, class.thankfulpeople.plugin.php https://pastebin.com/RJf9Dmub.
    If you want to make sure the function is actually being hit, put an echo followed by a die (i.e. echo "HITT"; die;).

    Replaced, sorry but could you explain that last part to me like I am 5 or 70 years old? where specifically do I put that?

    You'd put that in front of the code block you adapted. That said, since I changed the "Thanks" thingy I reckon it's not a PHP cache issue. Is your plugin in "plugins/ThankfulPeople"?

    Its /plugins/ThankfulPeople2/

    Figured. Please adjust the "class.thankfulpeople.plugin.php" accordingly (note the 2 at the end):

            $Sender->addJsFile('jquery.expander.js', 'plugins/ThankfulPeople2');
            $Sender->addCssFile('thankfulpeople.css', 'plugins/ThankfulPeople2');
            $Sender->addJsFile('thankfulpeople.functions.js', 'plugins/ThankfulPeople2');
    

    Also, sorry for the crappy "Thanks" link right now. If you have an older version, please restore from there and apply the code above. Else, comment line 161 and 169 and uncomment lines 160 and 168 :)

  • InceptionHostingInceptionHosting Hosting ProviderOG

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:

    @AnthonySmith said:

    @Solaire said:
    Do you have any PHP cache enabled?

    Nope, I have an Nginx+Apache hybrid setup so I can use the required htaccess files for vanilla to actually work though, but i doubt that would be the issue.

    Here's the complete, modified, class.thankfulpeople.plugin.php https://pastebin.com/RJf9Dmub.
    If you want to make sure the function is actually being hit, put an echo followed by a die (i.e. echo "HITT"; die;).

    Replaced, sorry but could you explain that last part to me like I am 5 or 70 years old? where specifically do I put that?

    You'd put that in front of the code block you adapted. That said, since I changed the "Thanks" thingy I reckon it's not a PHP cache issue. Is your plugin in "plugins/ThankfulPeople"?

    Its /plugins/ThankfulPeople2/

    Figured. Please adjust the "class.thankfulpeople.plugin.php" accordingly (note the 2 at the end):

          $Sender->addJsFile('jquery.expander.js', 'plugins/ThankfulPeople2');
          $Sender->addCssFile('thankfulpeople.css', 'plugins/ThankfulPeople2');
          $Sender->addJsFile('thankfulpeople.functions.js', 'plugins/ThankfulPeople2');
    

    Also, sorry for the crappy "Thanks" link right now. If you have an older version, please restore from there and apply the code above. Else, comment line 161 and 169 and uncomment lines 160 and 168 :)

    Back in business, I guess unthank is not so imprtant right now. :D happy days, appreciate the assistance!

    Thanked by (1)flips

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • InceptionHostingInceptionHosting Hosting ProviderOG

    @Ympker you can thank without reload now thanks to @Solaire

    Thanked by (3)Solaire Ympker flips

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • Emoji fixed after a Shift+refresh. Thanks working properly and doesn't jump up anymore, either on my computer or mobile. Thanks @Solaire for the help!

    Deals and Reviews: LowEndBoxes Review | Avoid dodgy providers with The LEBRE Whitelist | Free hosting (with conditions): Evolution-Host, NanoKVM, FreeMach, ServedEZ | Get expert copyediting and copywriting help at The Write Flow

  • InceptionHostingInceptionHosting Hosting ProviderOG

    The temptation to change "Thanked by :" to "Amitz? :" is overwhelming

    Thanked by (2)ITLabs uptime

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • @AnthonySmith said:
    Back in business, I guess unthank is not so imprtant right now. :D happy days, appreciate the assistance!

    You're most welcome :). Unthank is a setting apparently (according to the README):

    $Configuration['Plugins']['ThankfulPeople']['AllowTakeBack'] = true;
    

    Should go in conf/config.php I guess.

  • InceptionHostingInceptionHosting Hosting ProviderOG

    so it is..

    Thanked by (2)Solaire Ympker

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • YmpkerYmpker OGContent Writer
    edited November 2019

    I can't really post an image based on an url using mobile. There seems to not exist an "upload/submit" button.

  • YmpkerYmpker OGContent Writer

    @AnthonySmith said:
    @Ympker you can thank without reload now thanks to @Solaire

    Awesome!

  • InceptionHostingInceptionHosting Hosting ProviderOG

    @Ympker said:
    I can't really post an image based on an url using mobile. There seems to not exist an "upload/submit" button.

    I still use a samsung galaxy S2... I wont be troubleshooting that one any time soon haha.
    Maybe the ipad in moble view will work to take a look.

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • @AnthonySmith said:

    @Ympker said:
    I can't really post an image based on an url using mobile. There seems to not exist an "upload/submit" button.

    I still use a samsung galaxy S2... I wont be troubleshooting that one any time soon haha.
    Maybe the ipad in moble view will work to take a look.

    Chrome can emulate any sort of device :). I can have a look later.

  • @AnthonySmith said:
    I still use a samsung galaxy S2... I wont be troubleshooting that one any time soon haha.
    Maybe the ipad in moble view will work to take a look.

    No kidding.. :o

    Deals and Reviews: LowEndBoxes Review | Avoid dodgy providers with The LEBRE Whitelist | Free hosting (with conditions): Evolution-Host, NanoKVM, FreeMach, ServedEZ | Get expert copyediting and copywriting help at The Write Flow

  • edited November 2019

    There seems to be lots of unnecessary vertical space, when text wraps around in the comment editor.(mobile Firefox on Android)
    This could do with tweaking, to be able to distinguish between user-inserted newlines vs wraparounds.

    Thanked by (1)uptime
  • InceptionHostingInceptionHosting Hosting ProviderOG
    edited November 2019

    @vimalware said:
    There seems to be lots of unnecessary vertical space, when text wraps around in the comment editor.(mobile Firefox on Android)
    This could do with tweaking, to be able to distinguish between user-inserted newlines vs wraparounds.

    Yes I noticed that too, the plan is to see if the community is viable, has any life blood beyond the first 30 days, take stock of things, start monetizing in 2020, use proceeds to pay for development work to be done, something that LET never did despite the obvious requirements.

    So small annoyances like this wont be made worse by me just tinkering. :)

    Thanked by (2)vimalware uptime

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • InceptionHostingInceptionHosting Hosting ProviderOG

    Turns out user driven theme switching is not so simple, I will pop "user CSS selector options" on the long term dev/features list.

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • I think the mobile experience is quite acceptable and we can get a pro to look at it a little later. I am confident this will live beyond 30 days!

    Deals and Reviews: LowEndBoxes Review | Avoid dodgy providers with The LEBRE Whitelist | Free hosting (with conditions): Evolution-Host, NanoKVM, FreeMach, ServedEZ | Get expert copyediting and copywriting help at The Write Flow

  • InceptionHostingInceptionHosting Hosting ProviderOG

    @poisson said:
    I think the mobile experience is quite acceptable and we can get a pro to look at it a little later. I am confident this will live beyond 30 days!

    The whole thing could be tightened up a bit in almost every area in terms of layout as @Brendan suggested.

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • Don't go dark by default. If you do, enforce CAPS and make the text pale green, then it'll be truly Dragon 32 retro.
    There's a very good reason why Kindle use black on white. ;)

    It wisnae me! A big boy done it and ran away.
    NVMe2G for life! until death (the end is nigh)

  • Thanks for all the efforts!

    Amitz, a very stable genius (it's true!) and Grand Rectumfier of the official LESLOS® (LES League of Shitposters).
    Certified braindead since 1974 and still perfectly happy.

  • @Ympker said:
    I can't really post an image based on an url using mobile. There seems to not exist an "upload/submit" button.

    Yep, same problem here with Galaxy S8 + Android.

    BF/CM - Buyer Beware. Conduct your own due diligence on the sustainability of the deals presented here as well as the provider's track record.

  • @ITLabs said:

    @Ympker said:
    I can't really post an image based on an url using mobile. There seems to not exist an "upload/submit" button.

    Yep, same problem here with Galaxy S8 + Android.

    Just copy the markdown code below and change the URL for now:

    ![](https://domain. com/filename.jpg)
    
    Thanked by (1)ITLabs

    Deals and Reviews: LowEndBoxes Review | Avoid dodgy providers with The LEBRE Whitelist | Free hosting (with conditions): Evolution-Host, NanoKVM, FreeMach, ServedEZ | Get expert copyediting and copywriting help at The Write Flow

  • mikhomikho AdministratorOG

    I made this for the old forum
    https://github.com/mikho/autosinkincategory
    Not sure if it would work on this version of vanilla. It did work on the test-version I installed to create it.

    “Technology is best when it brings people together.” – Matt Mullenweg

  • I can't type Amitz!

    Body is 5 characters too short.

    Thanked by (1)Amitz
  • InceptionHostingInceptionHosting Hosting ProviderOG

    @mikho said:
    I made this for the old forum
    https://github.com/mikho/autosinkincategory
    Not sure if it would work on this version of vanilla. It did work on the test-version I installed to create it.

    I might use it for Rants, although I have to say the offers not sinking on LET (By happy accident) was not really a bad thing as it turned out.

    Also I have set this one up whereby hosts can essentially moderate/sink/unsink/close their own offer threads.

    https://inceptionhosting.com
    Please do not use the PM system here for Inception Hosting support issues.

  • mikhomikho AdministratorOG

    @AnthonySmith said:

    @mikho said:
    I made this for the old forum
    https://github.com/mikho/autosinkincategory
    Not sure if it would work on this version of vanilla. It did work on the test-version I installed to create it.

    I might use it for Rants, although I have to say the offers not sinking on LET (By happy accident) was not really a bad thing as it turned out.

    Also I have set this one up whereby hosts can essentially moderate/sink/unsink/close their own offer threads.

    use it, abuse it or even forget all about it :)

    “Technology is best when it brings people together.” – Matt Mullenweg

  • mikhomikho AdministratorOG

    request: group membership besides the username
    Makes it easier to see who are Providers without visiting their profile

    Thanked by (2)Amitz poisson

    “Technology is best when it brings people together.” – Matt Mullenweg

This discussion has been closed.