Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - haider512

Pages: 1 ... 3 4 5 6 [7] 8 9 10 11
91
very nice idea..
but how it works..
do we need to put media link..like youtube etc and also a thumbnail too??

92
Discussion & Troubleshooting / Re: UPLOADING ERROR?? How to fix the error??
« on: December 27, 2010, 11:59:36 PM »
@haider512

... here ...
1.0 http://www.4homepages.de/forum/index.php?topic=28267.0
2.1 http://www.4homepages.de/forum/index.php?topic=28267.msg153483#msg153483
... and for only english-speaking users ...
2.2 http://www.4homepages.de/forum/index.php?topic=28430.0

Awesome...its working fine now with your help...Many THanks for redirecting...

Long live 4images.. Keep rocking mate...cheers..
:D :D :D :D :D :D :D

93
Many Thanks...Keep rocking....

94
Discussion & Troubleshooting / UPLOADING ERROR?? How to fix the error??
« on: December 27, 2010, 10:51:40 PM »
Hi...
i noticed when i upload image on top i recive this error..
the image uploads fine..but when it uploads it shows these lines..

but if i check the image and thumbnail works fine..

what is this error and why it shows again and again when ever image and thumbnail is uploaded??



PLEASE DO ANY ONE KNOWS THAT HOW TO FIX THIS ERROR??

95
Replace
$userlist $site_template->parse_template(memberlist_sort);
with:
$site_template->register_vars("memberlist_sort"$site_template->parse_template("memberlist_sort"));
$userlist "";


Then use {memberlist_sort} tag in the template.

Wow awesome man..you are great genius..

dont know have some one told you before or not...you should also do projects online on freelancer etc...you can earn alot..

you coding is awesome..

i banged my head against these coding all day yesterday..and all i could figure out to do changes in memberlist_sort..

but this one is awesome..put anywhere in template..thats great..

Many Thanks..


Long live 4images..

96
Hi everyone.

im trying to put that drop down sorting thing in the bar above it.. how is it possible to that ...

please see the screenshot. scrn shot explains it..

-\-\-\-OFF TOPIC -/-/-/-/-/

My fellow members and admin..i know i am asking many questions about mod and enhancements and asking for help again and again.
but i dont know what else to do when i am stuked.. this the only place where i look for solutions..

i hope that all of you dont mind for my so many help questions and topics..

i also will like to help all community here with whatever i can to grow more..
i have seen many helpers who are very nice..like v@no, x23piracy etc and i m very greatful to them..
God Bless 4images..

i will put a link of 4images on my friends list of my site..
its an awesome engine..

Many thanks for this free engine..

-\-\-\-\-\ End OFF TOPIC -/-/-/-/-/

Also please help with this problem..Im stucked..i saw the coding of memberlist.html and yes i found the coding of sorting

//----------------------------
//---- Sort ------------------
//----------------------------

if(isset($HTTP_POST_VARS['order']))
{
	
$sort_order = ($HTTP_POST_VARS['order'] == 'ASC') ? 'ASC' 'DESC';
}
else if(isset(
$HTTP_GET_VARS['order']))
{
	
$sort_order = ($HTTP_GET_VARS['order'] == 'ASC') ? 'ASC' 'DESC';
}
else
{
	
$sort_order 'ASC';
}

$mode_types_text = array($lang['lang_sort_avatar'], $lang['lang_sort_username'], $lang['lang_sort_gender'], $lang['lang_sort_joindate'], $lang['lang_sort_useremail'], $lang['lang_sort_homepage'], $lang['lang_sort_comments'], $lang['lang_sort_pictures']);
$mode_types = array('user_avatar''user_name''user_gender''user_joindate''user_email''user_homepage''user_comments''user_t_images');

$select_sort_mode '<select class="select" name="mode">';
for(
$i 0$i count($mode_types_text); $i++)
{
	
$selected = ( $mode == $mode_types[$i] ) ? ' selected="selected"' '';
	
$select_sort_mode .= '<option value="' $mode_types[$i] . '"' $selected '>' $mode_types_text[$i] . '</option>';
}
$select_sort_mode .= '</select>';

$select_sort_order '<select class="select" name="order">';
if(
$sort_order == 'ASC')
{
	
$select_sort_order .= '<option value="ASC" selected="selected">' $lang['lang_sort_asc'] . '</option><option value="DESC">' $lang['lang_sort_desc'] . '</option>';
}
else
{
	
$select_sort_order .= '<option value="ASC">' $lang['lang_sort_asc'] . '</option><option value="DESC" selected="selected">' $lang['lang_sort_desc'] . '</option>';
}
$select_sort_order .= '</select>';

$site_template->register_vars(array(
	
'lang_select_sort_method' => $lang['lang_select_sort_method'],
	
'lang_select_sort_order' => $lang['lang_select_sort_order'],
	
'select_sort_method' => $select_sort_mode,
	
'select_sort_order_form' => $select_sort_order,
	
'letterbits' => $letterbits,
	
'mode_action' => $site_sess->url(ROOT_PATH."memberlist.php".(($user_search) ? "?$user_search"")))
);
$userlist $site_template->parse_template(memberlist_sort);
if ( isset(
$HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
{
	
$mode = ( isset($HTTP_POST_VARS['mode']) ) ? $HTTP_POST_VARS['mode'] : $HTTP_GET_VARS['mode'];

	
switch( 
$mode )
	
{
	
	
case 
'user_joindate':
	
	
	
$order_by "user_joindate $sort_order";
	
	
	
break;
	
	
case 
'user_name':
	
	
	
$order_by "user_name $sort_order";
	
	
	
break;
	
	
case 
'user_email':
	
	
	
$order_by "user_email $sort_order";
	
	
	
break;
	
	
case 
'user_homepage':
	
	
	
$order_by "user_homepage $sort_order";
	
	
	
break;
	
	
case 
'user_comments':
	
	
	
$order_by "user_comments $sort_order";
	
	
	
break;
	
	
case 
'user_t_images':
	
	
	
$order_by "user_t_images $sort_order";
	
	
	
break;
	
	
case 
'user_gender':
	
	
	
$order_by "user_gender $sort_order";
	
	
	
break;

	
	
default:
	
	
	
$order_by "user_name $sort_order";
	
	
	
break;
	
}
}
else
{
	
$order_by "user_name $sort_order";
}

//--------------------------------------------
//--------------------------------------------


but how to put that sort menu in that black bar? as all the tables comes with just one code calling in html..

{userlist}

what to do??


97
i have installed this mod..its a nice mod..but im having little problems fixing it..

Well i have almost installed the mod.. but in gender column how to set the name "Gender" on top.. also how to arrange them so they come on top of their responding data..

Also im trying to show "Avatar" Name above avatars..

but now all i know i have to something in memberlist.php and memberlist.html... but dont know what should i do make it happen...

Looking for help..

Please help me with this.. i attached the screen shot..please see it..
i know its looking terrible now..lolz..
please help.


gosh spent all day in figuring out how to do that..

but any how now did it.. now avatar and gender both coming on top.

just added 1 line in main.php

$lang['user_avatar'] = Avatar;

and gender one was also there in main..

and then i did called that $lang['user_avatar'] in memberlist.php. also did same for gender..

Regards
Haider

98
Quote from: Xwall
Now someone must do this;
Select user like this (#.A. B. C. D. E. F. G. H. I. J. K. L. M. N. O. P. Q. R. S. T. U. V. W. X. Y. Z) because with many users if you want to find someone it´s very hard...  :?
Here u go ;)

Many thanks..its working great...


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

Hi..My member list is really in bad shape.. and i dont know why it is not showing images of male and female??

here you can see my memberlist page..

http://cusitonline.com/memberlist.php

i need to work on it..

but please first tell me how to make gender images to show.?

i have this mod installed for gender..

http://www.4homepages.de/forum/index.php?topic=7385.0

please looking forward for help..

99
wow awesome..yup its working..my fault...i was checking with admin account...

Many thanks..let me know if you need anything...you are awesome and really helpful....

100
Chit Chat / one domain two servers.
« on: December 24, 2010, 03:27:04 PM »
Hi there..
i have two reseller accounts from different providers..

my domain is cusitonline.com (may not work now..cuz just recently updated name servers. but soon it will)

im not expert with these. and want to know  to do 2 things.

1.
i want to ask that is it possible to point my this domain to both different reseller accounts (its ok if even cpanel account is possible)

i mean if one is down the other should b up running..

2.cusitonline.com

i want to setup my custom nameservers. if its possible please let me know...but i have only one ip..on each hosting is provided to me..and i have seen on net that it requires two ip's.. if nameservers can b fixed on 1 ip then please let me know..

Please help me solve this issue..will b really greatfull..

if you want i can provide free shared cpanel offshore hosting (germany server & second offshore is in netherland).. what ever you like..

30gb space
unlimited bandwith
25 addons
25 parked
and everything else unlimited...



please help me fix my problem.. i will give everything unlimited (lifetime-(as long as i have)) who fix my both problems..

reply please..

101
Mods & Plugins (Requests & Discussions) / Download counting- Help required
« on: December 24, 2010, 01:14:11 AM »
Hello everyone

im using the download url feild instead of uploading files to my server..as it saves me bandwith and server load..

i use mediafire( file hosting site) url's

well they are working great..when some one clicks he/she redirects to the site..

everything working kool..

but i want to know about download count..as users are not downloading directly from the site..so the counting is not happening..

counting is still 0 and will remain 0 no matters how many downloads have done..



now is there any way to make that counting work..that if some one clicks the download button..that user redirects..but counting increase by 1..

now how to do that..

my site..

cusitonline.com
cusitonline.cz.cc (if above link not working try this parked domain)

please help me fix this issue.

102
Many Thanks..

103
Mods & Plugins (Releases & Support) / Re: [MOD] Category Image v1.0.2
« on: December 21, 2010, 02:37:23 PM »
@haider512 and @kasun0777

do you have run the installer?
Step 5 on the first side?

regards,
Mary from germany
lila13. de und knipslust.de



yup sure..i did the step 5..the problem was i did mistaked in global.php

and then it did worked for me..but i found out..that my site is better off without the catogaries images..cuz i have alot of catogries.. and it will all look messy if i use images as catogaries..

Any how..are you facing any problems with it?

104
ha ha ......... :lol: thanks for your picture man

105
Plugins / Re: [Plugin] Set the correct Permission for Files and Folders
« on: December 20, 2010, 12:09:31 AM »
hey...please post in english..so non germans can also understand..

now how would i know what error were you guys talking about???

its get so confusing here when going in a flow of reading topics for solving issue and found my self with a german non understandable topic..

plus the google translator isnt working any more here..when ever i try to translate..the page appears for verification and then again i get german..

Thanks in advance..but please try english..

Pages: 1 ... 3 4 5 6 [7] 8 9 10 11