Jump to content

robert_gsfame

Members
  • Posts

    876
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

robert_gsfame's Achievements

Advanced Member

Advanced Member (4/5)

0

Reputation

  1. I don't have any idea where should i post this topic. Just want to ask which programming language have to be used to create teleconference website (Webcam). Thanks in advance.
  2. I got my website let say www.abc.com and for mobile version m.abc.com so i use php script to detect if the browser was running from mobile or pc device then redirect it to each of them. my question is that if this will affect the SEO? I mean i don't want the mobile one to be crawled. thx in advance
  3. How can i save image just assume that i have "test.jpg" and wish to store the image to directory "directory A" using Curl..how can i do that? thx in adv
  4. I have this function to get other website title tag. But since the fopen is disabled in my shared server, this function cannot work. How can i still do it? thx in adv function getTitle($Url){ $file=@fopen($Url,"r"); if($file) { fclose($file); $str=file_get_contents($Url); if($str) { if(strlen($str)>0){ preg_match("/\<title\>(.*)\<\/title\>/",$str,$title); return $title[1]; } }else{ return true; } }else{ return false; } }
  5. I use poshy tip (Tooltip plugin) n i have let say 10 data by loop so it looks like this: $("document").ready(function(){ $("a[id^=myid]").poshytip({ className: 'tip-darkgray', bgImageFrameSize: 11, alignTo: 'target', alignX: 'inner-left', offsetX: 0, offsetY: 5, content: function(updateCallback) { return this.id; } }); }); my problem is with the content part, above.. everything run well, i can get the id. But when i try to call the value based on that return id using AJAX, it always goes blank although i can still get the value when executing alert(); thx in advance
  6. I have just reinstalled my xampp, n when starting the apache and mysql, i got mysql service not started (-1) error but apache can run well. First question: I still got my web in my localhost running well, so what is the effect of that error message then? second question: How can i solve this problem thx in advance
  7. thx @dark freaks , i finally got an idea how that guy inject the script once again thx a lot!
  8. I have a form to upload a file and file allowed must be in document format only. I have tried to filter using $filetype=$_FILES['file']['type']; if(($filetype!=="application/msword")&&($filetype!=="application/doc")&&($filetype!=="application/pdf")){ //not allowed} also i have included .htaccess in the upload folder Options -Indexes Options -ExecCGI AddHandler cgi-script .php .php3 .php4 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi <Files ^(*.doc|*.pdf|*.rtf)> order deny,allow deny from all </Files> but still someone can inject PHP File into my upload folder. Which part is wrong and how to close that hole? Thx in advance
  9. then just for info. I can run that page smoothly in my localhost..
  10. no loop problem cause everything goes well in other browsers except for mozilla. i didn't use document.write() but i have some javascript inside the page.
  11. I got problem with one of my php page. Mozilla browser keeps on loading although it shows the page, i am not really sure which part is wrong. But i don't find any problem with other browsers lol. Can anyone help me please thx in advance
  12. you both are really helpful!!!! THX A LOT!!! LOVE THIS FORUM!
  13. you forget to add closing bracket before this // end if user provided image
  14. still confused anyway i use dreamweaver to do the coding...and i've tried to change certain script in my php.ini and still not working. Can help me further with this pls
×
×
  • 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.