Jump to content

fullyloaded

Members
  • Posts

    133
  • Joined

  • Last visited

    Never

Everything posted by fullyloaded

  1. hi i was wondering if anyone can help me?i have a php/html website and when i goto upload a image it wont show up until i hit the refresh button on my webpage any idea how i can fix this? here are the 2 pages from my site hope some one can help thanks... [attachment deleted by admin]
  2. [!--quoteo(post=366735:date=Apr 20 2006, 03:35 AM:name=Tux User)--][div class=\'quotetop\']QUOTE(Tux User @ Apr 20 2006, 03:35 AM) [snapback]366735[/snapback][/div][div class=\'quotemain\'][!--quotec--] It would be better if you could show the code snippet(upload script) which is responsible for the error. Note : Check if GD library is installed on the server. [/quote] hi Tux User here is the code witch its saying the error is its to big to copy and paste here so i paste it on my server at the link below thanks... [a href=\"http://www.singlespleasures.com/code.htm\" target=\"_blank\"]code for wicth its saying the error is[/a]
  3. hi i have an error in my website that i cant fix can anyone please help me?when i go to upload a image that is not aloud to be uploaded on my site im getting the following errors is there away to make it so that it will say image not aloud or away to fix the errors?thanks... [code]Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: gd-jpeg: JPEG library reports unrecoverable error: in /home/singlesp/public_html/member/classes/cls_member.php on line 2388 Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: '/tmp/phpEjwYh5' is not a valid JPEG file in /home/singlesp/public_html/member/classes/cls_member.php on line 2388 Warning: imagesx(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2389 Warning: imagesy(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2389 Warning: Division by zero in /home/singlesp/public_html/member/classes/cls_member.php on line 2389 Warning: Division by zero in /home/singlesp/public_html/member/classes/cls_member.php on line 2396 Warning: imageistruecolor(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2400 Warning: imagecreate() [function.imagecreate]: Invalid image dimensions in /home/singlesp/public_html/member/classes/cls_member.php on line 2409 Warning: imagesx(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2414 Warning: imagesy(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2414 Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2414 Warning: imagejpeg(): supplied argument is not a valid Image resource in /home/singlesp/public_html/member/classes/cls_member.php on line 2416 Problem In saving[/code]
  4. hi i was wondering if anyone can help me with a small pice of coding i have in my website?what im trying to do is get the total number of males signed up to my website and the same for females also.ok here is the code i have to show how many members i have signed up witch would be under (member)and for there gender its under member then (gender)is there anyway this can be done?thanks... $dbu->query('SELECT COUNT(*) AS rowcount FROM member'); $dbu->move_next(); $ft->assign('MEMBER', $dbu->f('rowcount'));
  5. [!--quoteo(post=362857:date=Apr 8 2006, 03:52 PM:name=mistergoomba)--][div class=\'quotetop\']QUOTE(mistergoomba @ Apr 8 2006, 03:52 PM) [snapback]362857[/snapback][/div][div class=\'quotemain\'][!--quotec--] paypal has a merchant account where it will accept credit cards from users that do not have paypal accounts. it will also provide you with the code for a shopping cart. when the user wants to check out, paypal will ask them if they want to use their pay pal account or use a credit card. [/quote] ok thanks alot for your help!!!!
  6. hi i was wondering if anyone can help me out?i have a dating website that only accepts paypal at this time,what i want to do is keep the paypal payment and add credit card payments to my site can anyone tell me how to go about doing this?thanks..(and if so is there away to make the payments from the credit card go into my paypal account?)
  7. [!--quoteo(post=358697:date=Mar 26 2006, 06:31 PM:name=mb81)--][div class=\'quotetop\']QUOTE(mb81 @ Mar 26 2006, 06:31 PM) [snapback]358697[/snapback][/div][div class=\'quotemain\'][!--quotec--] What error message are you gettitng or what is happening that makes you think it is not working. [/quote] number 1 and number 2 works fine but im trying to do is get number 2 changed into number 1 coding because number 1 is the code from my site but number2 is code i just came up with in a new php file im just trying to get how many members in total signed up to my site hope you know what im talking about lol thanks...
  8. hi can anyone help me please? here is the code from my database witch is the first(1)what im trying to do is get this code to read how many members have signed up to my site i know how to do it one way witch is number(2)and it works fine but the problem is my site is html and php witch is number (1)anyone no how to take number (1) and make it do the same as number (2)? thanks.. (1) $dbu->query("SELECT COUNT(*) AS maxrows FROM p_message WHERE member_id='".$vars['member_id']."' AND `read`='0'"); $dbu->move_next(); $ft->assign("PM_NO", $dbu->f('maxrows') ); (2) <?php $holder = mysql_connect("localhost", "name here", "password here"); mysql_select_db("name here", $holder); $result = mysql_query("SELECT * FROM member", $holder); $members = mysql_num_rows($result); echo "$members members to date! \n"; ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.