Login
Username

Password



Not a member yet?
Click here to register.

Forgotten your password?
Request a new one here.
Navigation
Latest Addons
AD Gallery 60
SyntaxHighlighte... 51
Newsletters v4.03 112
Facebook Like Box 131
Newsletters v4.02 58
Metro 168
Facebook Connect 172
Shoutbox Panel 128
Redactor for PHP... 107
MI Floating Side... 109
Facebook Login/R... 155
Avatar Studio v2.03 180
Relationship Sta... 98
Sexual Orientati... 116
Fisherman 144
Popular Addons
iTheme2 5807
Arise 5803
User Control v1.23 4622
Event Calendar 4052
Photowidget panel 3888
Radio-Theme red2... 3358
Highslide Gallery 3315
CSS/JavaScript D... 3234
Facebook Connect... 2988
Dynamic Menu 2894
Slideshow Lightb... 2725
L-AMANT 2659
Enigma 2637
2Dark 2607
Black 2580
View Thread
Who is here? 1 guest(s)
 Print Thread
Venue Christmas presents
Domi
YouTube Video

[ Visit Venue Productions here ]

This will be my Christmas present for you all and for the PHP-Fusion community.

Member Pages are now free for all
vBlog are now free for all
CrewDB are now free for all
Latest Kroax versions are now free for all etc.

Edit :
Here is the long awaited VArcade 3.0 aswell !
Download VArcade 3.0 ]

Everything i had have been released.

I really wished i had time to finnish up the eShop, but it will just haveto wait some more.

Old V.i.P Members from EarnIT will retain their status and get exclusive support when they need it, i also throw in a Copyright removal license (CRL) on any of the above programs desired to old V.i.P members.

I hope to be able to keep the forums open, altho i wont be able to answer all questions that may arise.

[ Visit Venue Productions here ]
Edited by Domi on 23-12-2011 11:58
PHP-Fusion Project Manager
 
http://www.venue.nu
Craig
Oh very, very, very nice of you. Smile
 
http://www.fusiontube.co.uk/
Harly
Very cool, Domi. I remember that Member Pages infusion well. And I liked it then, and I'm sure I'll like this new and improved version even more. Thank you very much for that! Grin
Edited by Harly on 14-12-2011 22:09
Best regards, Harly.
OPEN SOURCE RULES! Cool
 
http://php-fusion.openworld.dk/
Richard Ainz
Great job!
www.8.php-fusion.net/images/smiley/fusion.png Coordinator of the Development of PHP-Fusion 8 www.8.php-fusion.net/images/smiley/fusion.png
Community Moderation Management & Support Team Leader
Owner of: www.php-fusion.se | www.php-fusion.net | www.php-fusion.us | www.php-fusion.mobi
 
www.php-fusion.se
DrunkeN
Very nice domi Grin
Dark Fusion - PHP Fusion v7 Mods , Tutorials , Support
 
http://dark-fusion.se
HaYaLeT
Great productions..Congrats Domi..
 
http://www.hayaletsevgili.com
Ankur
Looks very nice... Thanks for sharing Grin
ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
djtommy
Thank you very much, this is a really great christmas present.

I wish you offcourse also and everybody else a very nice holyday time.
You know what?... I Don't Know Either. (And No Matches - Scooter (2008))

PHP Fusion Dutch & Belgium Support:
(http://www.phpfus...ands.info/)
Theme Specialist | Support Crew
 
http://www.magicradio.nl/
Dav
very Nice site! Wink

But why you post it in Forum "security issues & announcements"?

Edit:
Good question, thread moved, And thank you Wink
Edited by Domi on 17-12-2011 14:32
Greets, David.
PS.: Sorry for my bad English, i am from Austria =)
 
http://www.phpfusion-pro.com/
Craig
A very nice site with loads a great addons. Smile Testing Members Pages soon. Smile
 
http://www.fusiontube.co.uk/
HaYaLeT
member page is great..i tested it..now i have two pages error on error log hehe..But i think its minnor bugs.. example forgotten some locale words..and mktime(),opendir(),closedir(),file_get_content,unlink,Undefined index,Undefined variable etc.

Again great infusions and presents..Thanks for its.
 
http://www.hayaletsevgili.com
Domi
Thank you, please feel free to give me some fixes or show me the lines, iam heavily loaded with work atm but iam trying to keepup and sort all simple issues that may be with MP.
PHP-Fusion Project Manager
 
http://www.venue.nu
Craig
I will install it tonight and post errors logs etc. Grin
 
http://www.fusiontube.co.uk/
Grimloch
Domi wrote:

Thank you, please feel free to give me some fixes or show me the lines, iam heavily loaded with work atm but iam trying to keepup and sort all simple issues that may be with MP.


D/L'ed your Member Pages infusion Domi and installed it. Very nice! Had a problem though that I fixed. It did not want to show the users location flag. From 'index.php' file:

$user_flag = $data['location'];
foreach ($countries_list as $key => $value) {
if (strtolower($user_flag) == strtolower($value['name'])) {
$user_flag = $value['iso2'];
}
}
$location = $data['location'];
$age = $data['age'];
opentable("<span style='white-space: nowrap;'><img src='".INFUSIONS."member_pages/img/flags/s/".$user_flag.".png' alt='".$location."' width='20' height='10' /></span> - ".$userpagedata['user_name']." ".$locale['MPPROF101']." ".$age." - ".$gender." - ".$lastseen2." - ".$lastseen."");
} else {
$user_flag = "";
$location = "";
$age = "";
opentable("<span style='white-space: nowrap;'>".$userpagedata['user_name']." ".$lastseen2." - ".$lastseen."");
}


The $value['iso2']; when view source was done was looking for an image with caps.ext. i.e. EN.png ... I don't know why your strtolower coding doesn't work right!

I made a slight modification and changed the code to this and it works fine.

$user_flag = $data['location'];
foreach ($countries_list as $key => $value) {
if (strtolower($user_flag) == strtolower($value['name'])) {
$user_flag1 = $value['iso2'];
$user_flag = strtolower($user_flag1);
}
}
$location = $data['location'];
$age = $data['age'];
opentable("<span style='white-space: nowrap;'><img src='".INFUSIONS."member_pages/img/flags/s/".$user_flag.".png' alt='".$location."' width='20' height='10' /></span> - ".$userpagedata['user_name']." ".$locale['MPPROF101']." ".$age." - ".$gender." - ".$lastseen2." - ".$lastseen."");
} else {
$user_flag = "";
$location = "";
$age = "";
opentable("<span style='white-space: nowrap;'>".$userpagedata['user_name']." ".$lastseen2." - ".$lastseen."");
}


I simply changed your $user_flag variable to $user_flag1 and then did the strtolower function. This works flawlessly for me.
Energy can neither be created nor destroyed; only transformed !
 
http://www.whisperwillow.com/
Domi
Thank you Grimloch, ill keep this fix in mind, if more people have the same issue ill make your fix static.

Dont miss VArcade 3.0! [ Get VArcade 3.0 ]

I really stretched myself to get it workable and done until xmas..
PHP-Fusion Project Manager
 
http://www.venue.nu
jikaka
very nice video
www.rusfusion.ru - russian nss
 
www.rusfusion.ru
Craig
It's good to see old horses BACK AYE! Grin
Edited by Craig on 23-12-2011 19:31
 
http://www.fusiontube.co.uk/
Domi
Thank you Smile
I hope people will aprichiate it.
PHP-Fusion Project Manager
 
http://www.venue.nu
Ankur
I hope that I am asking it in right Thread.

Just to Report : I have installed a fresh pack of it in my Localhost. And when I go to infusions, it give me error :
C:\wamp\www\fresh\infusions\varcade\infusion.php
Use of undefined constant DB_MEMBERPP_BLOG - assumed 'DB_MEMBERPP_BLOG' Line: 192

However, it is infused... Cool

EDIT :
C:\wamp\www\fresh\infusions\varcade_tournament_center_panel\varcade_tournament_center_panel.php
Use of undefined constant TOUR001 - assumed 'TOUR001' Line: 30

ankurthakur.co.cc/images/freelancer.png
 
http://ankurthakur.in/
Craig
Love it great site. Smile

Any plans for any new future developments Domi? Your stuff rocks man!!
 
http://www.fusiontube.co.uk/
Jump to Forum:
Similar Threads
Thread Forum Replies Last Post
Christmas Addons And Themes List General Discussion 7 19-12-2012 13:44
Christmas Panel Official releases [Panels] 2 19-12-2012 09:57
Merry Christmas and Happy New Year General Discussion 13 24-12-2011 11:26
Christmas Theme General Discussion 8 04-12-2011 03:12
Grafiks On Christmas 4 You General Discussion 3 02-12-2011 07:54
Official Home of PHP-Fusion uses cookies. Some may already have been set. Read more about our Cookies here.
Please click the button I Consent Cookies to hide this bar and accept our cookies. If you continue to use the site with no action taken, we'll assume that you consent our cookies anyway.
Cookiebar Panel byVenue