Jump to content

Ollifi

Members
  • Posts

    75
  • Joined

  • Last visited

    Never

Everything posted by Ollifi

  1. Hello, I want to order a Memory stick pro duo memory card 16GB for my SONY HDR-TG3E camera. But now I would want to know which I should choose of these: (Option 1) http://www.dealextreme.com/p/designer-s-ultra-high-speed-memory-stick-ms-pro-hg-duo-memory-card-16gb-44845 or (Option 2) http://www.dealextreme.com/p/mark2-memory-stick-pro-duo-memory-card-16gb-15682 It seems that Option 1 have faster shipping time ("ships in 2 to 4 days") than the Option 2 ("ships in 4 to 7 days"). But, could someone confirm does Option 1 work in my camera? Thank you very much for the answer. (By the way, here is link to the tech specs.)
  2. Hello. how could I search all anchors <a name="****A****">****B****</a> And then edit the text part B. Example, this <a name="1202">Hello!</a> would replace <a name="1202">Hello! <small>ID#1202</small></a> This is coming a greasemonkey script. Hopefully you can help. thank you very much. EDIT: I coded this: (bookmarklet test) javascript:function(){for(i=0;i<document.links.length;i++){if(document.links[i].name){document.links[i].innerHTML = "Test "+document.links[i].name+"";}};}(); but it didn´t work.
  3. Also mark your post as solved if you don´t need more help
  4. I think I will start from beginning , and add necessary php codes in the file again. And don´t change any css/html if possible. Hopefully it works then. Anyway, thank for helping
  5. Ok , I posted there . Thank your for help
  6. Installation is then complete. No button 'Go to website' or something below or above the sql queries? Otherwise go to the main website and try to login to the admin panel. I tried to login to admin panel then. It said cant login or user not found. I also tried to change md5 hash to an other password in the config file, and it didn´t work.
  7. yes,i tried that. But then how can i proceed installation ?
  8. I´ve tried to install phpwcms contentmanagement system but I get an error when installing: Errors while creating initial phpwcms tables. Solve it manually: And after this there is a big list of db queries. How could I have this fixed? I´m using by own ubuntu server.
  9. You need to use headers. This is working code: <?php $where_form_is="http://".$_SERVER['SERVER_NAME'].strrev(strstr(strrev($_SERVER['PHP_SELF']),"/")); // Checkbox handling $field_1_opts = $_POST['field_1'][0].",". $_POST['field_1'][1]; $headers="Reply-To:".$_POST['email'].""; mail("randy@reefsclub.com","Invitation - Form submission","Form data: rooms: $field_1_opts First Name: " . $_POST['fname'] . " Last Name: " . $_POST['lname'] . " Your Email: " . $_POST['email'] . " Phone Number: " . $_POST['pnumber'] . " Request your arrival date: " . $_POST['field_2'] . " Request your departure date: " . $_POST['field_3'] . " Please send me an ownership package: " . $_POST['field_4'] . " ",$headers); include ("confirm.html"); ?> Please try, does it work as supposed.
  10. Why you cannot stop using urls with ending slash / ?
  11. If you don´t have more question please mark topic solved.
  12. Oh sorry. I think vijaya´s reply bumped this thread up.
  13. I´m using this template: http://www.templatemo.com/templates/templatemo_162_gray_company/ But I think I have changed something when editing to work PHP and IE does not like the changes.
  14. It should remove javascript codes from a string. Did you mean that?
  15. I´m not sure if there is a ready-to-use function/class but here is some scripts http://www.php-questions.com/phpfaq/answer142 - count line change / paragraphs http://armandbrahaj.blog.al/2009/04/14/list-of-english-stop-words/ - here you found ready-to-use array of stopwords http://snipplr.com/view/6910/count-sentences-in-a-string/ - sentences
  16. Change open_account.php line 62 to this: <?php if(isset($_POST['run'])){include_once "./handlers/account.php";} ?> It should work with it.
  17. Can you use strip_tags function ? E: Hmm, it may not block javascript. Have a look at this.
  18. Hello, I have a site and it works fine in Chrome& FF. My resolution is 1280x1024 . But when I change the resolution there comes a problem with header image. It does not keep in it´s place. How could I fix this ? (And,i cannot give url to site, because it contains private information. Sorry)
  19. I´m not sure, but I think browsers cannot open doc files in browser. But you can always force doc download to computer.
  20. There may be some feature in your host control panel about cron. In my host there is a feature what will automatically create cron job based entered information. Maybe you can found it as well in your host´s controlpanel?
  21. ok, thank you for helping !
  22. Yes, thank you so much =) it helped Here´s other question: I´m creating a email unsubscribe feature. What confirmation I should use in the url that the link could only be accessed directly from the email message? The url should be like: http://yourdomain.com/unsubscribe.php?email=something@yourdomain.com&auth=XXXX What function I should use to generate the XXXX part ?
  23. Hello, how could I do a replace using one array? Example: $changes = array( "{NAME}" => $name, "{CHANGED_PART}" => $desc, "{CHANGE_D}" => date("j"), "{CHANGE_M}" => date("n") ); And then I would want to replace all parts in the left with parts in the right inside a string.Is that possible ? thank you..
×
×
  • 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.