Jump to content

Nathan Explosion

Friends
  • Posts

    6,982
  • Joined

  • Days Won

    127

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Nathan Explosion

  1. Opportune time to add tags functionality back to this forum, to indicate current state of the idea. 'Planned for future version', as an example.
  2. What does your application state - Custom or MarketPlace? If it says 'Marketplace', and it is doing what you say when you click to update, then log a ticket with support. If it says 'Custom' then either: contact the developer to obtain the update to then manually upload it or log a ticket with support to request assistance with converting the app from 'Custom' to 'Marketplace'
  3. Text - no problem at all. But then have to handle all the other elements that can be added to a post...images, links, videos etc. Already regretting taking a look...parking it for another time.
  4. What I posted is what should be used. _processLogin = the NAME of the button on the login button on the login page. usernamepassword = the VALUE of that button elSignIn_submit is the ID for that same button - if you do what you are suggesting it is telling Google to add set the value of _processLogin to elSignIn_submit, which is not going have any effect. The crawler probably tried to login and got a CSRF key - you can read the full background to all this information in
  5. Sorry, I'm out - can't help further based on just text, I'd need to be hands-on to assist and I've not got time to do that.
  6. Thought so, specifically the theme resources. The conf_global doesn't control those items you see in the ACP, you have to modify them to match up to your installation. Go to the Configurations tab - create a new storage method that matches to your TEST site Back to the Storage Settings and modify each entry to use the newly created storage method. Allow it to do its stuff.
  7. ok. Go to the ACP, go to System -> Files -> Storage Settings. Are they all pointing to your live site folders, or to the test site's folders? Pretty sure you're sharing data files...
  8. I'm going to ask the obvious questions, going right back to the very start of the process Have you definitely modified your conf_global.php file to point to the correct database? Have you definitely modified your conf_global.php file to change the base_url from https://ffoc.co.uk to https://testing.ffoc.co.uk ? Also...are you still 'restoring' the live site's datastore content to the test site's datastore folder, or have you stopped doing that as previously advised? Each site has its OWN datastore content, and you should not restore the live site's content to the test site.
  9. You might want to go full bells and whistles on a test site to understand what is currently possible with the software; could save you some time at a later point.
  10. Which is what is currently already a feature... ...which is what he is suggesting as a change to the functionality.
  11. You can upgrade whenever you want...but don't upgrade if the site isn't working.
  12. If your site is still at 3.4.x then you can't be using PHP 7.x at all. Use PHP 5.6 If you are then upgrading, you will need to flip PHP to 7.4 before you start the upgrade.
  13. Those 'errors' are icons from font-awesome....you are going to have to provide a link to your sites for anyone to help you, I think. A screenshot only presents a picture....a link gives the full picture.
  14. Does that directory, that exact path, actually exist? You shouldn't really be restoring anything into the datastore folder. It's created on the fly, and is specific to the site being accessed. www.domain.com and test.domain.com would have different datastore content.
  15. "auth" = the username of the account, "password" = the password for the account.
  16. POST Are you having an issue with the crawler not being able to login, possibly due to CSRF protection?
  17. Yep, template edit - this will do it in the default theme... Template: forums -> front -> index -> forumRow Locate: {{if $forum->hasChildren()}} <ul class="ipsDataItem_subList ipsList_inline"> To (change value for 'data-ipsTruncate-size' to suit): {{if $forum->hasChildren()}} <ul class="ipsDataItem_subList ipsList_inline" data-ipsTruncate="true" data-ipsTruncate-size="10 lines" data-ipstruncate-expandtext="See all" data-ipstruncate-type="hide">
  18. Easily achieved with a template edit, I reckon...post a link to your site please.
  19. Already possible... The hook is hard-coded to use the 'fa-chevron-circle-up' font from font-awesome, which looks like this: https://fontawesome.com/v4.7.0/icon/chevron-circle-up Changing the color via CSS, which is currently possible, will change the font's colour...but people perceive it as the background changing; the up arrow is not going to change. However...you can also change the font used via CSS, by doing the following instead: #backtoTop .fa-chevron-circle-up::before{ content:"\f077"; /* changes the fa-chevron-circle-up unicode value (f138) to use the unicode value for fa-chevron-up (f077) instead */ color:green; /* Your chosen colour */ }
  20. It hides all information about the poll once a vote has been made (see the screenshots on the MP listing)
  21. I'm not a user of the Commerce application so can't confirm this on my own site, but this is what is seen on here when you are not logged in. Is it possible that you have previously modified the language string, or the template that handles that section of the page? Or maybe that there is already a setting that allows it to present as below?
  22. I think nested quotes are an absolute mess waiting to happen, and I am glad the functionality was removed with the move from 3.4.x to 4.x
  23. It will strip out ALL html...there is no in-between, it's all or nothing.
×
×
  • Create New...