- Invision Power Services
- → Viewing Profile: Likes: Abomination
About Me
Community Stats
- Group Visitors
- Active Posts 530
- Profile Views 7,155
- Member Title Spam Happy
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Male
-
Location
California
Contact Information
User Tools
Latest Visitors
#2039836 I am accusing IPS of sexism
Posted
Matt
on 08 November 2010 - 08:03 AM
#2037005 Why is Nexus Encoded with Zenguard?
Posted
Ikadon
on 02 November 2010 - 03:38 PM
Lindy, on 02 November 2010 - 03:01 PM, said:
To me, as non-native-speaker this sounds like the "sensitive data" is also stored in databases. Lindy goes on and explains that those can be encrypted, which, I guess, means that it's not encrypted by default.
Sorry, I really love this software, but currently it looks a little unplanned and more like "we-do-as-we-feel" to me. I'm not quite sure if I should use Nexus for a future project I'm currently planning. Sure it would be great to have it directly tied to the forums, but... no, currently I'm just unsure.
#2036985 Why is Nexus Encoded with Zenguard?
Posted
Dannyarr
on 02 November 2010 - 02:55 PM
michelle82, on 02 November 2010 - 02:46 PM, said:
Not to mention that if someone gets into your server he has the access details to your database aka all your data.
I am really disappointed with IPS dropping something like this on us on release day. I haven't the words.
#2036943 Why is Nexus Encoded with Zenguard?
Posted
michelle82
on 02 November 2010 - 01:29 PM
#2036909 Why is Nexus Encoded with Zenguard?
Posted
Dannyarr
on 02 November 2010 - 12:39 PM
How extensible is the system now that everything is encoded? I doubt IPS is going to build in all the functionality a few people may require. Not having the option of hiring a developer to build in things makes Nexus a whole lot less appealing than it was before.
Why the lack of transparency? There should have been a blog post on this before release to bring attention to the fact it will be encoded. I've been planning on using this for my company for months now (and even delayed launching products specifically so we wouldn't have to switch just a couple months down the road) and now I'm left with a really bad taste in my mouth.
Disappointing.
#2028831 Like Button similar to XenForo
Posted
Matt
on 12 October 2010 - 10:41 AM
For the record, I don't think that a "like" feature is a bad idea. It's just that I want to fully consider how it fits in with our current reputation system. It would be wrong to throw out a feature on a whimsy.
#2014062 Close to Moving Back to Vbulletin
Posted
Biker.GA
on 01 September 2010 - 08:11 AM
bfarber, on 31 August 2010 - 10:56 AM, said:
- "Shows in topic views" - I do not understand what you mean by this
Contrary to popular belief, there are power users who use View New Content and Today's Active Content as their primary links for new posts and threads. Since new reports and active posts from the report center are not included in "search", often times new items in the report center can go unnoticed. This has been one of my primary beefs with the report center and how it was implemented, and the biggest reason I and others have requested the option to send reported posts to a specific forum rather than that #$)(*&#$)(*& report center.
#2012890 Close to Moving Back to Vbulletin
Posted
Biker.GA
on 29 August 2010 - 11:44 AM
#2010041 Feature request: Auto-resize images attached to posts
Posted
Matt
on 22 August 2010 - 04:32 PM
#2000646 More indepth profile customisation
Posted
bfarber
on 05 August 2010 - 08:49 AM
#2001758 More indepth profile customisation
Posted
Guest
on 07 August 2010 - 04:28 PM
Jυra, on 04 August 2010 - 07:19 PM, said:
This is the same exact attitude that kept me from participating at vbulletin.com forums for years. Apparently, there are people here that don't want to hear other peoples suggestions either. Maybe you don't mean to sound offensive...but that's how some of us will take it. And that's why you won't see others reply with their support or suggestions, too. They don't want your kind of responses on their opinions.
It would be different if you replied once. I already read that you don't support this idea. But, replying to anyone who supports the idea is a bit much and comes off offensive to some.
Just trying to explain my view...and going off the topic (ugh!) to do so....Sorry...maybe I should just keep quiet or look for other solutions elsewhere....or go back to using my vbulletin licenses.
glorify, on 04 August 2010 - 08:30 PM, said:
My profile messages look great with all the unparsed bbcode throughout them that were imported from vb. NOT.
Then why are so many people here requesting the useless Social Group feature (which, by the way, my community could care less about when I used vb)?
Before you answer that--
You'll probably say people think they will be able to use them, etc, etc.
But what cheat and CallieJo are requesting has been a feature set that has been used at their sites in the past and it was successful.
My point is--just because there is a request out there, the feature may not work for you, but may work for others.
No need to have an elitist attitude.
Thank you and have a splendid week*
#1993039 IPS Shirt Design
Posted
Mark
on 25 July 2010 - 05:03 AM
Collin1000, on 24 July 2010 - 03:25 PM, said:
They're different things. A single = is of course an assignment operator, a double (or triple) = is a comparison operator.
This is completely valid code:
if ( $foo = bar() )
{
// Is executed if bar() returns true. $foo is now true.
}
else
{
// Is executed if bar() returns false. $foo is now false.
}
On the other hand:
if ( $foo == bar() )
{
// Is executed if bar() returns the same value as whatever $foo is
}
else
{
// Is executed if bar() returns a different value as whatever $foo is
}
#1993160 let's discuss IPB v4 architecture
Posted
Mark
on 25 July 2010 - 11:54 AM
IP.Board uses completely object oriented programming, and is split into applications. The "forums" are simply an application which can be disabled. In fact, our website, invisionpower.com is running IP.Content with no forums attached (it is a separate installation, on a different server, to these company forums) - we simply turned off the forums and made IP.Content the default application - there is nothing special about this setup and can be done out of the box.
Applications make use of "extensions" which are standalone files that can be added and removed to applications. These enable things like attachments, notifications, reputation, etc. which are shared features. Our addon applications (IP.Blog, IP.Gallery, etc.) all use these shared features, yet there is no code in IP.Board at all that is specific to Blog or Gallery.
You can upgrade applications independently without affecting the others. We on these forums have IP.Board, all the applications and several "third party" apps (Tracker, Links) all of which have different development cycles and we upgrade independently.
If you have an application which breaks on a minor upgrade - that application is not making use of things like the hooks system, which it probably could to avoid this issue.
There are some things which textbook examples of modular applications would suggest which we deliberately don't do for technical reasons of a scalable and distributable application (for example, one might suggest one database table for posts, and comments in Blog, Gallery, Downloads, etc. but doing this you could easily hit some MySQL or OS limitations on tables/file sizes) but by and large, I'm confused as to what specifically you're suggesting we change... most of what you suggest is a description of what we already do.
The next major versions will definitely be 3.2, and then likely 3.3, etc - 4.0 is something we're not going to be thinking about any time soon.
#1992829 IP.Content
Posted
Nemean
on 24 July 2010 - 03:33 PM
#1992483 Undecided: IPB or vB
Posted
GodForum.com
on 23 July 2010 - 09:30 PM
- Invision Power Services
- → Viewing Profile: Likes: Abomination
- Privacy Policy
- Community Rules ·



Find content