Jump to content

TSP

Clients
  • Posts

    6,674
  • Joined

  • Last visited

  • Days Won

    9

 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 TSP

  1. Sorry for my delayed reply, I'm rarely on this community anymore. I missed the post from ResPecT My Authoritah. I'm not entirely sure what issue he is talking about, last time I checked everything worked as it should. EDIT: If there is any bugs, I will work to resolve them for you.
  2. You are not properly reading what he has written. He is missing the go to first unread link that was within topics. He is not asking for going to first unread link in lists of topics at all.
  3. I've earlier shared some thoughts on this: Not something I would want IPS to spend time on.
  4. Do you have anything in the SQL error logs related to it? Sounds most likely that the connection haven't been saved for some reason. I would have a look at the SQL error log saved by IPS for the day the comment you have trouble checking was posted on. Send me a PM if you need me to log in to see further or you find me the error message.
  5. No. Uhm, was that something I coded for this on 3.4?
  6. . 1. Because privacy is important to me. In my opinion, even those with the permission to view the real identity, should not be presented with this information right away. They should feel a genuine need to have that information revealed. If the post content does not go against your community guidelines or any extra guidelines concerning the intended use of this feature, then there is likely no need for you to know it, besides just being a nosy person. Most people on your community wouldn't have the permission to check this anyway, so I really don't see the problem. 2. Because development suddenly gets a lot more involved/advanced. Let's say I don't have a problem with the moral implications I explained earlier, I would still have to ensure that privacy is upheld when regular members view posts posted anonymously, while still conveniently display the real information for those able to. There are numerous places where author information for posts is presented, some of the basics: topic view, search view, forum view, activity streams, notifications etc. All of these views would be areas where I would potentially have to test more properly, hook into and add extra queries to ensure the privacy for users and/or convenience for admins. It would involve extra SQL-queries and PHP logic in a lot more places. This creates a vast amount of potential points of failure. Failures that could lead to private information being leaked to users not intended to have that information. For example: IPS could, in new versions, change code in such a way that my code would break. Depending on what approach I would take to this, it could potentially make private information non-private in some or all places. It creates a risk and amount of complexity I'm not willing to go into when privacy is on the line. 3. Because efficiency is also important to me, as I personally work with communities that has tens of millions of posts. I don't want to add any extra SQL queries that would be necessary to be executed inside the topic view. Neither do I want to add extra columns to the posts table, as the posts table is generally large enough already. As for using md5: There may be better ways to randomly generate a "human-friendly" word or sentence that could be used instead, that would always be the same for the same user within the same topic and different for different users. I feel though that the md5-method provides the most reliable and easily implemented solution.
  7. All anonymous posts will be tied to that one user account. But there can of course be multiple "real authors". Yes, you can find out who the real author was. There is a "Check anonymous"-link next to the IP-address in all posts that is tied to the anonymous user account. You can see this in the images provided: It's not possible to edit a post that has been posted anonymously. (Unless it's a moderator with permission to edit all posts) The user can continue to post new replies inside the topic anonymously in order to reply to any replies to their post. Multiple users can post anonymously within the same topic. In order to differentiate / determine whether it's the same user or not, posts are appended with a anonymous poster hash/code. This code is made up of values you determine yourself from the plugin settings. This is mentioned on the plugin information page here. Generate md5-hash from (Multiple select: Topic ID, Forum ID, Member ID of original author, Email of original author, Joined time of original author, Unique Board Anonymous Key, Community Install Date) With the default settings the same user will generally receive the same code as before for any new anonymous posts within the same topic. If two posts within the same topic has the exact same identifier code, then you and your members can be confident that the same member has written those two different posts. (Please read the entire plugin information page and view all images.) Then all existing posts posted anonymously will continue to exists in the same way as before. They would still exist under the same md5-generated guest names or tied to the user you defined as the anonymous user account, as when it was posted. They would still contain the identifier code within the posts. You would (as the administrator) no longer be able to check the real author behind these posts. The reason is that the table that keeps track of that information is deleted by IPS 4 when the plugin is uninstalled.
  8. Theoretically, if you knew all the information that makes up the anonymous identifier code, someone could try to generate an md5-hash from this information for each member to get an exact match on the code, and thus reveal the identity. Although I view it as unlikely, the unique key setting is available so you could add in a string that you choose, so it's much less likely that someone will guess all the information that the md5-code is made up of. In order to remove the code from the post itself atm, you could change the language string anon_poster_hash in your default language pack. You can search for "Anonymous poster hash" within the language pack translate screen to find it. Replace it with   I currently don't have a way to remove this from the guest name when you don't have a user configured, but you could connect it to a user account named "Guest" or whatever you choose, and then it will use that account name. I can provide a way to disable this in a later update, I thought it was possible to deselect all for the md5-setting, but that doesn't work, so I'll fix that.
  9. This will be the support topic for the Post Anonymously in Forums plugin. It will be priced at 7.50 USD. (Currently pending approval)
  10. Jeg har lastet opp en ny versjon for IPS 4.1 Problemet her er at samme tekst brukes uavhengig av om man starter en ny tråd eller redigerer den. Må evt. bytte til en tekst som gir mening i begge kontekstene eller få IPS til å lage en egen tekst som brukes ved redigering.
  11. Planen er å oppdatere språkpakken, men jeg har ikke lenger mulighet til å oversette Gallery og Downloads. Jeg er dog nedlesset i andre oppgaver, men håper å kanskje få det gjort til helgen.
  12. Jeg tror det muligens er et locale-problem, slik det ser ut for i koden. Kunne du prøvd å bytte locale på språkpakken til engelsk og se om det løser seg da? Ved å trykke på blyantikonet ved språkpakken inne i adminpanelet. Se om det gjør at nye varsler inneholder komma (Gamle varsler vil mest sannsynlig ikke oppdatere seg) Du kan også prøve med f.eks nynorsk eller en annen norsk-locale hvis du har flere, men jeg ville prøvd engelsk først, for å best kunne avdekke hvorvidt locale er problemet eller ei. Evt. forsikre deg om at _list_format er satt til "a, b og c"
  13. Line 1842 in that file seems to deal with reports, so it would seem you have a duplicate entry in your reports table somehow. One possible reason is that the report it tries to convert has already been converted and something caused it to incorrectly convert it one more time. In which case I think it would be fine to simply click continue to see if that resolves the issue. You can paste the query to somewhere like http://pastebin.com/ instead. Either way, you are an active client. So you should probably send a support ticket to IPS so they can have a look
  14. I would personally be fine with just cookies. There would need to be some unique identifier for each message so new messages wouldn't get hidden.
  15. Any plans to allow option to let members dismiss messages?
  16. Jeg har ikke sett dette problemet selv. Har dere prøvd å høre med server-leverandøren deres om de har en oppdatert og gyldig locale? Man skal hvertfall kunne bruke nb_NO eller nb_NO.UTF8. Selv har jeg nb_NO. Hvilken PHP-versjon har dere? Kan jo være dette, selv om det skal ha blitt løst: https://community.invisionpower.com/4bugtrack/400-thousand-separator-in-nb_no-locale-r5066/
  17. I know I did at least one utf8 to utf8mb4-conversion with the IPS stand-alone converter script when I prepared some 3.4 forums a while back. So at least it worked for me. (There was a bug in that it wouldn't work to get it over to utf8mb4 without issues before all tables had been converted to utf8_unicode_ci-collation though.)
  18. Jeg tror det gjøres direkte fra serveren, du må konfigurere locale-dataene. Jeg synes det er en stor ulempe at man ikke lenger kan konfigurere det i adminpanelet, men det er en annen diskusjon.
  19. Det er sannsynligvis en feil med den norske locale-pakken på din server og/eller du må velge en annen tilsvarende locale på systemet. Ved å velge engelsk så påvirker det vel det også hvordan datoene, tall osv. vises.
  20. Takk for tips og hjelp @Arve, @Vikestart og @Kjell Iver Johansen. Jeg landet på "oppføring" Jeg har nå oppdatert oversettelsen til IPS 4.0.3 og oversatt IP.Pages. ​ ​Takk for det
  21. Noen som har forslag til hva man oversette records med i "Pages"? Jeg tenkte at jeg muligens kunne bruke "artikler", men det passer ikke over alt og "Articles" oversettes allerede til det. For eksempel "Latest Records", "Show Records in Listing", "a record", "This adds an image upload field to the record form. The image is displayed within the record text area by default." osv. @Jens C, @Kjell Iver Johansen, @Vikestart, @Arve, @olela Tilsvarende problemstilling for "revisions", jeg kan muligens bruke "revisjon", men jeg har ikke veldig lyst. Alternativ kan være "endring".
  22. Har oppdatert for 4.0.0 og IP.Downloads er også oversatt.
  23. Jeg har nå oversatt IP.Gallery også. Filen er oppdatert.
  24. http://community.invisionpower.com/files/file/7383-norwegian-norsk-bokmål-for-blog-calendar-and-forums/ (You will have to wait until it's been approved) This is the Norwegian translation of IPS 4, the remainder of this text will be in Norwegian. Dette er den norske språkpakken for Invision Power Suite 4. Oversettelsen er gjort til bokmål. Disse applikasjonene er oversatt: System / CoreForum - IP.ForumsBlogger - IP.BlogKalender - IP.CalendarGalleri - IP.GalleryNedlastninger - IP.Downloads Jeg blir veldig takknemlig for tips til små og store ting som bør endres. Språkpakken er ikke testet eller brukt i et reelt miljø og er gjort uten kontekst. Det kan derfor hende at enkelte ord eller fraser kan misforstås, være for kompliserte eller ikke passe inn i konteksten akkurat nå. Det å oversette alt sammen tar svært mye tid (da mener jeg myyyyyeee tid) og er til tider svært krevende og monotont arbeid. Jeg ber dere derfor være forståelsesfulle hvis dere finner ting dere mener burde vært oversatt på en annen måte, høres helt feil ut, er ukonsekvent osv. Det kan godt være jeg er helt enig med dere, men det kan være vanskelig å vite før det blir påpekt. Jeg blir spesielt glad hvis du har forslag til hvordan enkelte tekster kan forenkles, det er mange ganger jeg har oversatt en frase eller ord hvor jeg har tenkt "Dette ordet eller setningen trenger vel ikke så være lang eller bestå av så mange delord?", men det finner man liksom først ut etter man har brukt det. Jeg planlegger å oversette andre applikasjoner etterhvert. God fornøyelse!
  25. You'll be presented with queries against tables that have x number of rows. You'll also be able to set another x value in your constants.php. I can't remember name of constant currently, but take alook in init.php and you'll find it. Either way I would say it's always advisable with test upgrades, especially with forums at your size.
×
×
  • Create New...