- Invision Power Services
- → Viewing Profile: Likes: Jay
Community Stats
- Group +Clients
- Active Posts 18,851
- Profile Views 19,694
- Member Title Dirty Thirties
- Age 36 years old
- Birthday July 28, 1975
-
Gender
Male
-
Location
BBResource
Contact Information
User Tools
Latest Visitors
#2239796 Suggestion - Profile Permissions
Posted
CallieJo
on 12 March 2012 - 02:29 AM
Does anyone have any idea on how to hack some friend only privacy permissions into the profiles? It would be greatly appreciated. If there is a mod (reasonably priced or free), please point me in that direction. Thank you.
#2177895 Google Checkout - Alert Pay - and more
Posted
Michael
on 02 October 2011 - 08:19 PM
#2220065 Option for members to purchase a Store Credit
Posted
KitCarl
on 12 January 2012 - 04:45 PM
#2229222 Community Directory
Posted
Robert_ja
on 08 February 2012 - 01:12 AM
On the Right Side if this page (in dont forget about)
http://www.invisionp...m/suite/extras/
#2228864 Instant Notification Floods Followers
Posted
boschk
on 06 February 2012 - 10:15 PM
How it should work is that when offline, the user gets ONE email for the first unread post in topics they are following. That will draw them back to the topic and when there, they'll see the rest of the replies. I have a user that got 40 emails on a single topic over the weekend. That's just flat out annoying. Now, I know that he can set it up for a daily digest, our default site setting, but the fact is, there is just a better way to do it.
Please seriously consider overhauling this function.
#2228514 You cannot reply to this topic button
Posted
boschk
on 05 February 2012 - 09:37 PM
#2228127 Request for improved skin/add-on compatibility
Posted
Ryan H.
on 04 February 2012 - 03:48 PM
It is possible.
<?
/**
* Plant notification images when installing the hook.
* (c) 2012 Ryan Hoerr / Sublime Development
* http://www.sublimism.com
*/
class sldModNotifications
{
private $images = array(
'notify_arrow_right.png' => 'eJwBVAGr/olQTkcNChoKAAAADUlIRFIAAAAQAAAAEAgGAAAAH/P/YQAAAAlwSFlzAAALEwAACxMB
AJqcGAAAAQZJREFUOMvtUz9LA3EMfQdFpKNOJ4KCFNHBjopUcBInv4GLU90c/BCObrr0ewgiXRUX
FcQ/V6k42rXS++UlFwevpwWHagcXHwRCwkseeSRyd4yCEkbE3w+Auw8dW8cbp5uH62Nfaz9SIKnU
Qk9uAVT6tcjdsX9edwAwGpQKikICISkhqSCkAkkF8UQMEeIheby5PLiuDtxgdXINlhk00yJoBhrB
jKAp1BQ0Rbf7trSwW7m4O0qWS/3NNH6STcFMc7KCmg/Ie0KCoiwUKBXN57NvZYfeR14eLyOOp9B5
7SC5f7pqNdq14gbDoLq3uCKBTYq+tBrt+V/ZOLczezKzPT1gY/T/C3gHuGQMQaiwjqoAAAAASUVO
RK5CYII44YLq',
'notify_lock.png' => 'eJwB2QIm/YlQTkcNChoKAAAADUlIRFIAAAAQAAAAEAgGAAAAH/P/YQAAAAlwSFlzAAALEwAACxMB
AJqcGAAAAotJREFUOMtlks1rXGUUxn/3ziSTGfMx9ivkKulMM7RCQcVd6qJQ1IUUBNGdG3FRhAay
KVkG4jL/hIsJ0kXd9g8Q4qalQdu0xKaXMSiUFDPJJLmZ+54PF7dpJ+2BAwfOeX88z8MbuTuDtbKy
Mmpmt1R1VlVPqSqq+p+q/i4iy/Pz8/uD99EgoN1uf2xmvyZJ0pyYmCCOY8yMLMvY3t4mTdNUVb9e
WFhYewvQbrdHVfXBzMxMK89ztra2ODg4QFUpl8tMTk4CsL6+/lRVP1xcXMwAysckVf1xamqqFUJg
Y2PjmYhcU9V/VZUsy5Jut7vabDaTJElaaZreBJZPAERktlarsbm5SQjh+tzcXGfAamdpaemzTqez
3mg0EJHZ48Ug4Gwcx/R6PUQk5Y0SkTSEQBzHqOrZExn8/dv3vrp5iee7VVSVry7fo+QBV8Gl6BCU
n9c+wcyYHNnh+nv3uHTjQVQocOfbb64REROVqkR8CRZBeQRw0IBKj5++2AcLADz9ZfW1BVcBHHlx
m3LlDFE0CjYE1Tq4weEuuvcXefYPJodUmzfxvD8AEAFz0Jzuw/vE8TvUL19h6+4ybueYvvo53ceP
yLMdxhrv4q54yAcBAdxwDdQ/uEg8fAYiQ/vKHy+qTJNTbzU52q/gcljcngCEgLuCBnb+XKNUGaf+
0afYkdHP+uA53SePOTrcZfx8HczwICcBhYKc+sUGpdppiHMufHeDC0Fg7zkTrYTh3aFCgXnx5jUg
BzNMcroPH1GqjcHIKJSHwQT2umQ724SDHmPT4zhW2B4EuCuV93+ger5ENFyBchXiITCFPGMs20ND
HzcF9yL4V4C8z7M7t4osRHAJL/t4VlAtPpa+nE0B+B9k9KxgOBC4kQAAAABJRU5ErkJggm+0Uz0=' );
private $dir = '../public/style_images';
private $subd = '/notifications';
private $skins = array();
public function install()
{
$this->findSkins();
// Insert notification images in each skin folder.
foreach($this->skins as $skin) {
$cd = $this->dir . '/' . $skin . $this->subd;
@mkdir( $cd );
foreach($this->images as $image => $data) {
@file_put_contents( $cd . '/' . $image, gzuncompress( base64_decode( $data ) ) );
}
}
}
public function uninstall()
{
$this->findSkins();
// Remove the images from each folder.
foreach($this->skins as $skin) {
foreach($this->images as $image => $data) {
@unlink( $this->dir . '/' . $skin . $this->subd . '/' . $image );
}
}
}
protected function findSkins()
{
// Find skin image folders.
$style_images = scandir($this->dir);
foreach($style_images as $item) {
if( is_dir($this->dir . '/' . $item) && $item != '.' && $item != '..' )
$this->skins[] = $item;
}
}
}The code is free for use, by the way--I'd just appreciate some form of attribution if you do.
#2227745 Request for improved skin/add-on compatibility
Posted
teraίyte
on 03 February 2012 - 09:24 AM
Sandi_, on 03 February 2012 - 02:14 AM, said:
• Jay •, on 03 February 2012 - 02:32 AM, said:
Having the images in the admin folder of the app (with the url visible to everyone) would totally defeat the purpose of renaming the admin folder to hide it...
#2227659 Request for improved skin/add-on compatibility
Posted
Connor T
on 03 February 2012 - 12:40 AM
If the image cannot be found in the skin folder, check master for it. Then try and load it. Otherwise 404 the image.
#2226914 VNC "filter by forum" needs...
Posted
chilihead
on 31 January 2012 - 07:27 PM
#2226694 IPB & e-junkie/PayPal
Posted
Alex Mangini
on 31 January 2012 - 09:50 AM
Thanks a lot for the help guys!
#2225783 Registration
Posted
insectdude
on 28 January 2012 - 03:08 PM
https://www.keycaptcha.com/
I replied to a similar topic about this recently, but I really cannot recommended KeyCaptcha highly enough. I've been running it on my site for about a year and had fewer than 5 spam registrations since. I turned off the IPS spam service after running KeyCaptcha for a while as all it was catching was false positives.
#2225734 Insufficient response to our Feedback
Posted
svit
on 28 January 2012 - 12:20 PM
• Jay •, on 28 January 2012 - 10:15 AM, said:
When we look at what types of topics are at present being collected by the Feedback forum, it is clear that the forum is extremely valuable for the developer - the experience with the products via our communities translated by us admins tests its practicality, popular features, areas to be abandoned, areas to be developed more. And If you like, it can be also expressed by profit, as I assume at least portion of the feedback (intellectual property of the posters) is implemented into the final product. From this point of view it feels illogical to see posts of admins/clients, who spent their time, and made photoshop illustration attached to their suggestion of how to make some at present weak areas of the code better - to see their posts are left without any response.
I don't think, Charles, spending a few words extra, would do any harm, I think contrary, maybe if you have motivated the admins to come with ideas there would be more constructive feedback topics and at the end all parties would benefit from it.
I really don't mean to make this big, I think I have expressed myself clearly, and I would like to emphasize, that I am a very satisfied customer, which is best proving the fact that I am with you for many years now running several happy niche communities. Keep doing the great work. If me 'feedback' is in some way inspiring, then it met its purpose.
#2225641 Insufficient response to our Feedback
Posted
Charles
on 28 January 2012 - 07:47 AM
If we replied to every single post that's all we would do all day. We would then never have time to implement feedback
As you point out, a staff person didn't reply to your suggestion and I can see how you would focus only on your topic but that doesn't mean we are somehow neglecting client feedback.
#2221405 Admin CP: Log Everything.
Posted
Ryan H.
on 16 January 2012 - 10:29 AM
Someone saves a settings group? Log it.
Rebuilds some stats? Log it.
Modifies a template bit? Log it.
Runs an SQL query? Log it [the query itself!].
Changes ACP Permissions? Log it.
Installs or disables an application/hook, or runs an upgrade? Log it.
Imports/exports a skin or language pack? Log it.
Removes logs? Log it!
Yeah?
- Invision Power Services
- → Viewing Profile: Likes: Jay
- Privacy Policy
- Community Rules ·




Find content


