PDA

View Full Version : Add-On Releases - vBSocial.com Memberlist lite - Inspired by Facebook


daveaite
06-18-2013, 10:00 PM
The best memberlist for vBulletin 4, vBulletin 5, the userlist re-defines the way your users will find other members. Its light on load, and searches are on the fly, improve your community with this epic modification.

Mark as installed (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=299257&token=dfc9209ee5cba0b963807c3f3544838d)

https://vborg.vbsupport.ru/external/2013/06/21.png

Demo video:
http://vbsocial.com/vbsocial-memberlist-vbulletin-mods

Demo test:
http://vbsocial.com/forum/vbsocial_memberlist.php
username: user
password: test

1.1
Updated to latest version of vB5

Lite version Limits:
-Copyright: vBulletin Mods by vBSocial.com (http://vbsocial.com)
-No friends list
-No recently added list
-Ability to control itemized scroll refresh
-And other small Extra functionality are in pro

daveaite
06-19-2013, 05:09 AM
Reserved for dev.

In Omnibus
06-19-2013, 10:18 AM
Tagged

In Omnibus
06-19-2013, 10:23 AM
Attempted to install ...

Import of product XML resulted in the following error:

XML Error: Mismatched tag at Line 661

daveaite
06-19-2013, 06:55 PM
Updated

In Omnibus
06-19-2013, 07:15 PM
Thank You

daveaite
06-21-2013, 02:58 PM
Your welcome

daveaite
06-25-2013, 09:35 PM
I'll look into it soon

nice_hero60
06-27-2013, 06:06 PM
it's not working with vb 5.0.2 or vb 5.0.3

daveaite
07-02-2013, 07:44 AM
Will be testing again, we are extremely busy on our side, Thank you for your patience.

sergiomc
07-27-2013, 12:51 AM
Hello, I am very interested in installing this application, when an update will be made to work in 5.0.3?

daveaite
08-22-2013, 09:33 AM
Will test for 5.04.

Luis
09-14-2013, 01:13 PM
not work on 5.0.4 <.< update please!

https://vborg.vbsupport.ru/external/2013/09/47.png

daveaite
09-23-2013, 07:15 PM
vB5 keeps changing will take a look shortly.

MARCO1
09-26-2013, 11:31 PM
vB5 keeps changing will take a look shortly.
That's why I decided to stop developing any new mods until a stable version of vBulletin!

vvlo
07-05-2014, 07:22 AM
not work in 5.1.1

error:
failed to open stream: No such file or directory in/home/*****/public_html/includes/vb5/config.php on line 44

daveaite
07-22-2014, 07:20 AM
vB5 has been changing alot...sorry for the issues

daveaite
08-18-2014, 07:11 PM
Updated!

-Works with latest version of vB5. Be sure to replace all files in ftp

badawidollah
08-20-2014, 08:28 AM
where to put this httaccess
RewriteRule^(memberlist)$ core/vbsocial_memberlist.php [QSA,L]
RewriteRule^(memberlist)/$ core/vbsocial_memberlist.php [QSA,L]

================================================


<IfModule mod_rewrite.c>
RewriteEngine On


#In some cases where you have other mod_rewrite rules, you may need to comment out the following line
#and change it to match your folder name. This resets the other mod_rewrite rules for just this directory
#If your site was www.example.com/forum, the setting would be /forum/
#RewriteBase /

# Send css calls directly to the correct file VBV-7807

RewriteRule ^css.php$ core/css.php [NC,L]

# Redirect old install path to core.
RewriteRule ^install/ core/install/ [NC,L]

# Main Redirect
RewriteCond %{REQUEST_URI} !\.(gif|jpg|jpeg|png|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?routestring=$1 [L,QSA]

# Because admincp is an actual directory.
RewriteRule ^(admincp/)$ index.php?routestring=$1 [L,QSA]


RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

</IfModule>

<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE application/atom+xml \
text/javascript \
application/x-javascript \
application/javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
application/x-font-ttf \
application/xhtml+xml \
application/xml \
font/opentype \
image/svg+xml \
image/x-icon \
text/css \
text/html \
text/plain \
text/x-component \
text/xml
</IfModule>

<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType application/x-javascript A1209600
ExpiresByType text/javascript A1209600
ExpiresByType application/javascript A1209600
ExpiresByType text/css A31536000
ExpiresByType image/x-icon A2592000
ExpiresByType image/icon A2592000
ExpiresByType application/x-ico A2592000
ExpiresByType application/ico A2592000
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A1209600
ExpiresByType image/jpg A1209600
ExpiresByType image/png A1209600
ExpiresByType application/x-shockwave-flash A1209600
ExpiresByType font/ttf A2592000
ExpiresByType font/otf A2592000
ExpiresByType font/x-woff A2592000
ExpiresByType image/svg+xml A2592000
ExpiresByType font/truetype A2592000
ExpiresByType font/opentype A2592000
ExpiresByType application/x-font-woff A2592000
ExpiresByType application/vnd.ms-fontobject A2592000
</IfModule>

<IfModule mod_headers.c>
Header set Connection keep-alive
<filesmatch "\.(ico|flv|gif|swf|eot|woff|otf|ttf|svg)$">
Header set Cache-Control "max-age=2592000, public"
</filesmatch>
<filesmatch "\.(jpg|jpeg|png)$">
Header set Cache-Control "max-age=1209600, public"
</filesmatch>
<filesmatch "\.(eot|woff|otf|ttf|svg)$">
Header set Cache-Control "max-age=2592000, public"
</filesmatch>
# css and js should use private for proxy caching https://developers.google.com/speed/docs/best-practices/caching#LeverageProxyCaching
<filesmatch "\.(css)$">
Header set Cache-Control "max-age=31536000, private"
</filesmatch>
<filesmatch "\.(js)$">
Header set Cache-Control "max-age=1209600, private"
</filesmatch>
</IfModule>

Jean Pierre
11-04-2014, 08:35 PM
That's a great plugin, but the trouble is that the characteristics of user and are not displayed:

Join us
Posts
last Visit
reputation
messaging