Jump to content

activeserver

Members
  • Posts

    28
  • Joined

  • Last visited

About activeserver

  • Birthday 01/01/1980

Profile Information

  • Gender
    Male

activeserver's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Replying to old thread for completing the discussion: if you want just one user and a few domains try this one: http://www.webuzo.com/ Has a free license with basic functions intact.
  2. http://devzone.zend.com/node/view/id/91 Also, google: "zend search lucene" No other popular(==supported) option that I know of. if you can separate the indexing from the server that does the main stuff.... that will help a lot. But that's not practical(bandwidth, https) or secure(http), IMO, on a shared host.
  3. Er.... I'm not asking for a timestamp just an estimate. (I know the cvs snapshot is de facto version 6, but a "release" has more weight....) Also, is it a good idea to start using "namespace" and "phar" in new code being written now? Googled and searched but could not find much. Even a few relevant links will be helpful. TIA
  4. [1] If you have the time for it, could you publish anonymized versions of logs of the results of these tests. Those would be a great help for everyone, including me Lots of people learning PHP (it takes much more than one paying project, trust me) out there don't have the resources to repeat-test their own sites by paying for hosting and asking testers here to test the same things. These reports would be very helpful to the community here at phpfreaks and if done correctly would also give a little more weight to your "portfolio" or "skillset" section on your personal business site. Just my thoughts, be free to ignore or correct In fact, may I suggest anyone who has such data and a little time to spare (without taking risks, of course) to publish such reports. Security researchers do a lot of this stuff, but a set of real, hand-edited, not-so-polished, plainspeak data has its uses and target audience. Again, feel free to ignore or correct [2] I am no designer, and you did not ask for design ideas, but IMO, a 2-column layout inside the main part, would probably get across more info to your users on the first page itself. (Please ignore if it conflicts any of your decisions...) A look at http://www.1234.info/webtemplates/ will explain what i'm trying to say. Since you're not making money on ads, and your visitors are on broadband, your site might be that much more helpful to users in finding information.
  5. another thing: asking intelligent questions needs your audience to be intelligent... which is not a reliable thing....
  6. I'm as new to questchas as you are. But it think there's a few things worth mentioning here: IMO (strictly), every site isn't hammered by captcha beating bots - those guys direct their time and energy at productive cracking - which gives them paswords and financial info. So, for a time questchas may work. all depends on your luck, IMO Reading answers requires the page scraper bots to read the answers - which is what the captcha obfuscates by using images. Why can't we obfuscate using Javascript, so that only real browsers execute the javascript and not command-line bots? Much the infamous exploits the crackers try for cross-site scripting injection. Of course they could very well embed javascript parsers and all, but if your site has no valuable information to reveal, they would not waste their time.... Yes, "alpha males" have a lot of time and enthusiasm, I know So "blue" will be string.replace("clue", "c", "B").tolowercase() .. something of that kind (pardon syntax errors) I'm not sure this is great, something good may spring from this line of thought....
  7. in general, the unwritten rule is to read source code of widely deployed web applications. basically, you get the source code, read it, even if you don't understand much in the first week, a few weeks later (i am slow ) you will. http://api.qcodo.com/index.php/QDatabaseBase, for example
  8. activeserver

    email link

    Hey, nice. New to me. Thanks for posting. I would have used a CSS class for those 'a' elements that I needed to handle this way...
  9. (In reply to my own question about topic bookmarks above....) Bookmarking can be done by clicking "Notify" on any thread. Just be careful as to not disable when you click "notify" a second time - that is, read the popup message box for enable/disable. [pre]"Profile"(top nav bar on every page) -> "Modify profile" (tab on the left side) -> "Notifications and email"[/pre] Essentially the same thing as bookmarks
  10. Hi all, I'm writing a big app (big for me - 300-500 lines per page - 50+ pages ) and I've decided to use $_SESSION to sore intermediate data. The part for which I'm using $_SESSION is not high-volume - registration and form filling - which will be done *once* by any user, so using $_SESSION may be OK for now High traffic pages will have no memory usage - lest I exceed memory on shared hosting and crash other people's apps I'm completely fed up completely of typing long names like $_SESSION['RegSection']['Email'], $_SESSION['RegSection']['FirstName'] etc. So, I want to ask: Is there a way of using aliases to refer to $_SESSION simply as '$s'? or this: $s =& $_SESSION['RegSection']; followed by $s['Email'] = $something_else; etc etc import_request_variables() is only for GPC - http://php.net/manual/en/function.import-request-variables.php and extract() is not useful either Any help is greatly appreciated TIA
  11. heh, i think you should also ask on the forum of your linux distro or at linuxquestions , linuxhq or linuxforums . and please do post the relevant answer link here tia
  12. A lot depends on what software you plan to use If you have an app framework like Cake or Symfony in PHP, for example, you can merrily do a lot of good things pretty quickly - including roles/permissions tables and stuff like that. OTOH, if the app is smallish and has not much complexity behind it, and maybe will not scale up either, then a few ugly hacks can do the job. how much time do you have and finally, how much is it worth... if it's something you would like to put on your CV/Bio then do it good, with a full framework et al, even if it's a bit slow coz i don't see a traffic of more than 10 users per second. perl users sometimes use flat files for small apps (sounding just like this one)
  13. You dont need to follow any hard-and-fast rules, IMO. You could make a custom "permission updater" or "BulkUpdater" class Like there are "data loader" utilities with just that much description, it's difficult to give you a good answer because it seems you want things to speed up as well - which is called optimization - and to optimize, you need to know a lot about the structure. fwiw, the MVC concept should have been called CMV and maybe even CMV/IPO, coz that's what it is exactly. ( IPO for Input-processing-output, but that's another story.... ) More info needed for anything concrete... hth
  14. does this give some clues: 1. http://php.net/soundex and http://www.w3schools.com/php/func_string_soundex.asp and 2. http://php.net/levenshtein and http://www.w3schools.com/php/func_string_soundex.asp If things work well for you, please be kind to post the results. thanks
×
×
  • 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.