Re: [PHP] Blooging Portal

2007-07-31 Thread Jad madi
also take a look at WordPress MU
http://mu.wordpress.org/


On 31/07/07, Paul Scott [EMAIL PROTECTED] wrote:

 On Tue, 2007-07-31 at 10:27 +0200, Christian Hänsel wrote:
  Does any of you know a decent Blooging Portal software? Of course, it should
  be OpenSource ;o) What I wanna do is: I want to give people the ability to
  create their own blogs on my server under one domain name... so
  myblogonchrisserver.com/stephen would go to stephen's blog (just so you see
  what I mean).
 

 Well, to bring this back to a PHP question, you could try the Chisimba
 blogging software. See it in action at http://fsiu.uwc.ac.za (where this
 list is blogged using it) and download it at http://avoir.uwc.ac.za or
 contact me off list to ask any questions.

 --Paul


 All Email originating from UWC is covered by disclaimer 
 http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
Jad Madi


[PHP] How would you do this ?

2006-09-25 Thread Jad madi

I'm building an RSS aggregator so I'm trying to find out the best way to
parse users account feeds equally so Lets say we have 20.000 user with
average of 10 feeds in account so we have about
200.000 feed

How would you schedule the parsing process to keep all accounts always
updated without killing the server? NOTE: that some of the 200.000 feeds
might be shared between more than one user

Now, what I was thinking of is to split users into
1-) Idle users (check their account once a week, no traffic on their RSS
feeds)
2-) Idle++ (check their account once a week, but got traffic on their
RSS feeds)
2-) Active users (Check their accounts regularly and they got traffic on
their RSS feeds)

NOTE: The week is just an example but at the end it’s going to be
dynamic ratio

so with this classification I can split the parsing power and time to
1-) 10% idle users
2-) 20% idle++ users
3-) 70% active users.

NOTE: There is another factors that should be included but I don’t want
to get the idea messy now (CPU usage, Memory usage, connectivity issues
(if feed site is down) in general the MAX execution time for the
continues parsing loop shouldn’t be more than 30 minutes 60 minutes)
Actually I’m thinking of writing a daemon to do it “just keep checking
CPU/memory” and excute whenever a reasonable amount of resource
available without killing the server.


Please elaborate.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP daemons

2006-05-16 Thread Jad madi
Martin, 
I'm afraid we cannot help you without reading the code, paste it to
phpfi.com and send the url here

now the general answer is, OOP or not OOP it doesn't matter
there is problem in the code whatever and however it's written dude. 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP Book Recommendation

2006-04-08 Thread Jad madi
it depends on your programming level and taste of reading 
I really like Advanced PHP programming but some people he's a lousy
teacher, SitePoint books are the most reader friendly books but maybe
they aren't the most valuable books in the market.

In the last two months the market got load of new PHP books but this
time it wasn't General-PHP books but php-specific-topic books, namely
design patterns, security, php5 objects etc.. 
so the best now is to look for php book talking about specific php
related topic

for me the best are
Topic   book
General Advanced PHP Programming
Security:   Ilia's security book Guide to php security
OOP patterns:   PHP design patterns
PHP5/general php:php5 power programming
Tools/extensions/internals: essential php tools

Finally the best is to read some chapters of the book to see if you like
how it's written and to check reviewers comments on Amazon.











On Fri, 2006-04-07 at 21:50 -0700, Jim Lucas wrote:
 Paul Goepfert wrote:
  Hi all,
 
  Can anyone tell me a good php book to buy.  I already have Web
  Database Applications with PHP  MySQL by O'Reilly.
 
  Thanks,
  Paul
 

 Professional PHP5 by WROX
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] IF or SWITCH

2006-04-07 Thread Jad madi
Kevin, 
I'm just curious to know how to did you do that benchmark.


On Fri, 2006-04-07 at 12:40 +1000, Kevin Waterson wrote:
 This one time, at band camp, Robert Cummings [EMAIL PROTECTED] wrote:
 
  I'm gonna go out on a limb here and say WRONG!
  
  Run yourself a benchmark.
 
 benchmarks can be hazardous, but lets look at them at their most basic level. 
 By this
 I mean how folks use them every day...
 
 http://www.phpro.org/benchmarks/if-switch-benchmark.html
 
 Kind regards
 Kevin
 -- 
 Democracy is two wolves and a lamb voting on what to have for lunch. 
 Liberty is a well-armed lamb contesting the vote.
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Zend Certification

2006-04-07 Thread Jad madi
If taking the exam now makes different to you then go for it, actually I
scheduled the exam 29 April bluntly just for the sake of salary
increment heh



On Fri, 2006-04-07 at 14:33 -0700, Ray Hauge wrote:
 Hello All,
 
 I've been thinking about taking the ZCE test.  I want to, but I also want it 
 to be current for as long as possible.  Should I wait for it to be revised 
 for PHP5, or are they even going to update it?  I just don't want to end up 
 taking it and then a few months later have it be outdated because it was 
 for PHP4, and not PHP5.
 
 Thanks,
 -- 
 Ray Hauge
 Programmer/Systems Administrator
 American Student Loan Services
 www.americanstudentloan.com
 1.800.575.1099
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Zend Certification

2006-04-07 Thread Jad madi
in my case the salary increment is more valuable than the $400 



On Sat, 2006-04-08 at 00:24 +0200, Rory Browne wrote:
 My info may be dated but AFAIK the exam is $200 - so what if you have
 to take one one month and another the next? That (assuming PHP5 was
 the same price) would still only be $400. I don't want to sound petty,
 but what's another $200 for a second certification - having both will
 give you that long_time_user status. 
 
 On 4/7/06, Jad madi [EMAIL PROTECTED] wrote:
 If taking the exam now makes different to you then go for it,
 actually I
 scheduled the exam 29 April bluntly just for the sake of
 salary
 increment heh
 
 
 
 On Fri, 2006-04-07 at 14:33 -0700, Ray Hauge wrote: 
  Hello All,
 
  I've been thinking about taking the ZCE test.  I want to,
 but I also want it
  to be current for as long as possible.  Should I wait for it
 to be revised
  for PHP5, or are they even going to update it?  I just don't
 want to end up 
  taking it and then a few months later have it be outdated
 because it was
  for PHP4, and not PHP5.
 
  Thanks,
  --
  Ray Hauge
  Programmer/Systems Administrator
  American Student Loan Services
  www.americanstudentloan.com
  1.800.575.1099
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] fetching words

2005-10-19 Thread Jad Madi
Hi,
guys I have two tables, articles and keywords, what I want to do is to
scan articles and grab every single word
used in an article to the keyword table
any idea how to do that
--


Regards
Jad madi
Blog
http://EasyHTTP.com/jad/
Web standards Planet
http://W3planet.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] session clustering

2005-09-22 Thread Jad Madi
guys, do you recommend session clustering within php application
itself or going with higher level, maybe database sessions and then
database clustering?


--
Regards
Jad madi
Blog
http://EasyHTTP.com/jad/
Web standards Planet
http://W3planet.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php products licensing system

2005-02-15 Thread Jad Madi
as I said, we are willing to have our product open source, but No
free. and that fair enough, thats why I'm asking about a good method
to protect our products from being used illegaly and keeping it open
source


On Tue, 15 Feb 2005 13:05:52 +0200, Jad Madi [EMAIL PROTECTED] wrote:
 as I said, we are willing to have our product open source, but No
 free. and that fair enough, thats why I'm asking about a good method
 to protect our products from being used illegaly and keeping it open
 source
 
 
 On Tue, 15 Feb 2005 10:11:59 +, timothy johnson
 [EMAIL PROTECTED] wrote:
  So you want to use open source to make it so people cant use your
  code. Does just doesnt sound right, but whatever
 
 
  On Tue, 15 Feb 2005 09:48:44 +0200, Jad Madi [EMAIL PROTECTED] wrote:
   Hi folks
I hardly convince my company to have their PHP products open source,
   now the challenge is to protect their products from being stolen and
   used illegally so we may Encode only one or two files to keep the use
   of our products on Certain domain or IP address. Any idea how to
   accomplish this ?
  
   if its a must to encode some files to achive our goal then we prefer
   to stick with opensource/free encoder, our choice now is mmCache
   Encoder, but since dl() gonna be depracted in the mean of removed in
   php5, we will not be able to offer our products for shared hosting
   clients
  
   any idea how to protect our products, keeping it open souce as much as
   possible ?
  
   --
   Web standards Planet
   http://www.w3planet.info/
   Personal Blogger
   http://www.EasyHTTP.com/jad/
   EasyHTTP Network
   http://www.EasyHTTP.com
  
   --
   PHP General Mailing List (http://www.php.net/)
   To unsubscribe, visit: http://www.php.net/unsub.php
  
  
 
 
 --
 Web standards Planet
 http://www.w3planet.info/
 Personal Blogger
 http://www.EasyHTTP.com/jad/
 EasyHTTP Network
 http://www.EasyHTTP.com
 


-- 
Web standards Planet 
http://www.w3planet.info/
Personal Blogger
http://www.EasyHTTP.com/jad/
EasyHTTP Network
http://www.EasyHTTP.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] php products licensing system

2005-02-14 Thread Jad Madi
Hi folks
 I hardly convince my company to have their PHP products open source,
now the challenge is to protect their products from being stolen and
used illegally so we may Encode only one or two files to keep the use
of our products on Certain domain or IP address. Any idea how to
accomplish this ?

if its a must to encode some files to achive our goal then we prefer
to stick with opensource/free encoder, our choice now is mmCache
Encoder, but since dl() gonna be depracted in the mean of removed in
php5, we will not be able to offer our products for shared hosting
clients

any idea how to protect our products, keeping it open souce as much as
possible ?

-- 
Web standards Planet 
http://www.w3planet.info/
Personal Blogger
http://www.EasyHTTP.com/jad/
EasyHTTP Network
http://www.EasyHTTP.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] How does one get into programming?

2004-11-27 Thread Jad Madi
Well said Rory Browne
after that I recommend downloading some php scripts and start reading
their codes and understanding the programming design
style.. 

On Thu, 25 Nov 2004 15:18:16 +0200, Ewald [EMAIL PROTECTED] wrote:
 I've been in IT for about 12 years and is looking to change my direction to
 programming. Can anyone direct me in the right direction as to what to study
 or where to start???
 
 Thx
 
 Ewald
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
Web standards Planet 
http://www.w3planet.info/
Personal Blogger
http://www.EasyHTTP.com/jad/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] mysql_connect vs mysql_pconnect

2004-11-27 Thread Jad Madi
http://www.google.com/search?lr=ie=UTF-8oe=UTF-8q=mysql_connect%20vs%20mysql_pconnect


On Fri, 26 Nov 2004 19:55:29 +0100, fabien champel
[EMAIL PROTECTED] wrote:
 hello,
 I do not know when I must use mysql_pconnect instead of the mysql_connect :(
 
 what are the real advantages of persistent connections, please ?
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
Web standards Planet 
http://www.w3planet.info/
Personal Blogger
http://www.EasyHTTP.com/jad/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-11 Thread Jad Madi
-
User8 is [EMAIL PROTECTED] * [EMAIL PROTECTED]
User8 using arcor.de.eu.dal.net www.arcor.de - Arcor Online Serv


On Mon, 11 Oct 2004 23:34:18 +0530, Sagar C Nannapaneni
[EMAIL PROTECTED] wrote:
 You can use SMSTERM
 
 /sagar
 
 
 - Original Message -
 From: SunTan.co.uk [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, October 10, 2004 7:38 PM
 Subject: [PHP] sending SMS messages to mobile phones from PHP
 
  Hi there,
 
  I want my website to be able to send me an SMS message to my phone when
  somebody fills our contact form in.
  Does anybody do this already? If so, how?
  I think that I need an SMS service but I'm not sure what one is or how
 much
  it'll cost us.
  Please advise.
 
  [EMAIL PROTECTED]
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
http://www.W3planet.info/
http://www.EasyHTTP.com/jad/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Knowlegde Base

2004-09-03 Thread Jad Madi
greetings
i'm looking for good/free Knowledge Base/ FAQ system 
any recommendation ?



-- 
http://www.jadmadi.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] debugging messages in popup windows

2004-08-18 Thread Jad Madi
guys, I'm working on a project, and running a php debug script while
testing the script,
How can I make the debug messages(including error and warning) appears
only in popup window? and update automaticly when clicking on another
link

Thanks in advance

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php