Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. Try [tt]Content-Transfer-Encoding: quoted-printable[/tt] as well.
  2. Also, please add [nobbc][code][/nobbc]-tags around your code. You can't edit it now as the time limit has passed, but please remember it for another time.
  3. Another thing: Don't show the password in plaintext when providing wrong credentials. There might be other people in the room or looking at the monitor.
  4. Forgot to mention that there is also http://pecl.php.net, but they aren't compiled.
  5. http://pecl4win.php.net/branch.php - Click "All (zip)" for your specific version.
  6. Just download them here: http://pecl4win.php.net/ Not necessary to compile them on Windows as it is already done it for you. The ones that normally come with PHP when you download would be in subdirectory of the PHP install directory. Put them in your extension dir (specified in php.ini) and add them using [tt]extension=php_blabla.dll[/tt] Also, you can't just say you installed a WAMP and then expect to get an answer that fits your setup. WAMP is just short for a server running: [u]W[/u]indows, [u]A[/u]pache, [u]M[/u]ySQL and [u]P[/u]HP It's also called a WAMP if you setup all things manually, so saying stuff like "WAMP's auto-installed" doesn't make much sense (at least not to me), and that also makes me unable to know what extensions there is by default as some pre-packaged WAMP distribution may differ from what comes with the standard PHP download. Edit: I didn't notice that you posted again, so some things might be answered even though I say I couldn't know.
  7. You could also just refuse to work with illegal stuff (copyright infringement in this case).
  8. I'm learning to use CakePHP and I also looked into Code Igniter.
  9. If your mail filter gets them, then maybe you need more loose settings?
  10. [quote author=The Little Guy link=topic=122021.msg502686#msg502686 date=1168557131] http://www.phpfreaks.com/forums/index.php?action=mlist;sa=search change the check turn all off except for position, and in the text field, input: administrator or moderator [/quote] Heh, not only is it unnecessary now as neylitalo made a list, but I also posted that earlier in this topic ;)
  11. [quote author=neylitalo link=topic=122021.msg502662#msg502662 date=1168555599] [quote author=Daniel0 link=topic=122021.msg502648#msg502648 date=1168555195] Go here: http://www.phpfreaks.com/forums/index.php?action=mlist;sa=search Check only "Search by position". Search for [tt]Administrator[/tt], [tt]Super Moderator[/tt] and [tt]Global Moderator[/tt]. [/quote] After trying this, it shows no results. Do you have to search one term at a time? [/quote] Yes, only one at a time and I couldn't figure out if it was possible to make a direct link.
  12. Well, they would have to had added it after beta 2, but I highly doubt they did that. But you, as well as me, have heard it would support it. I wonder where I got that from... :-\
  13. Go here: http://www.phpfreaks.com/forums/index.php?action=mlist;sa=search Check only "Search by position". Search for [tt]Administrator[/tt], [tt]Super Moderator[/tt] and [tt]Global Moderator[/tt]. Who is [url=http://www.phpfreaks.com/forums/index.php?action=profile;u=35410]Thantos[/url]?
  14. Hmm... it seems like it doesn't after all. I was SO sure that it did, but when trying to create a sample document I couldn't find that format in the file type drop down list. I found this on Google though: http://odf-converter.sourceforge.net/
  15. [quote author=neylitalo link=topic=121991.msg502536#msg502536 date=1168548749] Google is your friend [/quote] Heh, the exact same phrase was used on a page I linked to [url=http://www.phpfreaks.com/forums/index.php/topic,121651.msg500631.html#msg500631]here[/url], but it was edited out... :P Since I'm not allowed to post the URL I'll post a quote with "rude" words edited out: [quote=the site][url=http://google.com]Google[/url] Is Your Friend All Smart People Use [url=http://google.com]Google[/url] It Appears That You Are Not One Of Them [img]http://justfuckinggoogleit.com/bart.gif[/img] Someone thinks you are an <rude word starting with i> because you were too <rude word starting with s> to check [url=http://google.com]Google[/url] before asking a question. They gave you a link to this site as a joke. The fact that you followed it pretty much proves the point. Hope that helps. Have a nice day.[/quote] (How about you search Google to find the page) I think that page so much explains the point that I just had to post the link.
  16. I have a beta version of it on my desktop. It uses its new docx (xlsx etc.) as default. I suppose it's the same in the final version.
  17. I doubt you can find any chat room script that uses the EXACT database structure you have made. Try looking at [url=http://google.com]Google.com[/url], [url=http://hotscripts.com]Hotscripts[/url] or [url=http://sf.net]SourceForge[/url]. Edit: Crayon, I thought rude comments about searching the web/on Google was not allowed ;)
  18. A way to avoid using it here is to put it all in (and append to) a variable called something like $output. Then echo $output at the end.
  19. Change [code]          $content = $_POST['comments'][/code] to [code]          $content = $_POST['comments'];[/code] Edit: Another time please point out the line that the error message is talking about.
  20. Hmm... I probably should have mentioned that the thing I pointed out probably didn't cause the error. I think I found the error though. When $_SESSION['valid_user'] is not set the other form is echoed, but that form doesn't close. You need echo the [tt]</form>[/tt] tag as well.
  21. This should do what you want: [code]<?php $line_number = 135; $filename = "something.txt"; $lines = file($filename); unlink($linenumber-1); file_put_contents($filename,implode("\n",$lines)); ?>[/code]
  22. I think it would perfectly fine to use output buffering (the ob_* functions).
  23. Check your junk folder. Also the server sent to might filter it out for some reason. I believe Hotmail is often a problem for instance.
  24. Also, you cannot do this: [code]<input type="submit" name="Submit" value="Login>>" id="menu_textbox">[/code] You cannot have the > signs in there, you have to encode them to &gt;
×
×
  • 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.