Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

bang-phpug · Bangalore PHP User Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1011
  • Category: PHP
  • Founded: May 29, 2006
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 915 - 944 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#915 From: "Vinu Thomas" <vinuthomas@...>
Date: Wed Jan 9, 2008 12:39 pm
Subject: Re: Can we Install PHP4 and PHP5 ON Same System
uglyftp
Send Email Send Email
 
You can also check if the WAMP addons help you:
http://www.wampserver.com/en/addons_php.php

Regards,
Vinu
--
-------------------------------
www.vinuthomas.com
blogs.vinuthomas.com

#916 From: "guruj_r" <guruj_r@...>
Date: Wed Jan 9, 2008 1:36 pm
Subject: The web pages in production are being run twice.
guruj_r
Send Email Send Email
 
Hi,

	 We are recently facing few problems. The background of us is
We are currently built a website which will serve the users to get
in and buy something from the site. Also we have option for the user
to get in and place their advertisement (selling their car,
truck, ...). We are facing the issue that all records have been
created twice (meaning page has been run twice only in production),
whereas in our dev environment, we are able to create records
clearly even now...

	 We are struck in this portion. The application is on
production (and the request from the users are being handled through
web farms), so we need to find the solution as soon as possible.
Please let us know if anyone knows anything related to that or test
scenarios to test ....

	 Our doubt is whether this is due to web farm or some other
thing which causes this issue...

Thanks in advance.

Regards,
Guru

#917 From: "Amit Rana" <amitrana77@...>
Date: Wed Jan 9, 2008 1:41 pm
Subject: Re: Can we Install PHP4 and PHP5 ON Same System
amitrana77
Send Email Send Email
 
I agree this is the simplest way to do.

To install multiple version on linux use --prefix=/usr/local2 option
while compiling. You can even specify the location of php.ini file
using --with-config-file-path

You can even work with single httpd.conf file just make sure you are
loading correct modules. Check for LoadModule in conf file.

Regards,
Amit.

--- In bang-phpug@yahoogroups.com, "pinky_goyal22" <pinks.forums@...>
wrote:
>
> i dont have idea about the WAMP package but i have installed both php4
> and php5 on my system.
>
> i do this way:
>
> you can have both php4 and php5 on your system but you can run 1 at a
> time and for running the other you need to make some changes.
> for php4 and php5 httpd.conf and php.ini file is different.
> place both httpd.conf(php4 and php5) file in conf folder, one with the
> name httpd.conf and rename the other one say httpd_php4.conf.
> same as make two copies of php.ini and name one as php.ini and rename
> the other one say php4.ini. if you are running php5
>
> if you want to run php4 rename httpd_php4.conf to httpd.conf and
> php4.ini to php.ini and rename the previous httpd.conf and php.ini to
> httpd_php5.conf and php5.ini.
>
> i hope this will help you
>
>
>
>
> --- In bang-phpug@yahoogroups.com, "Senthil Kumar B" <skumar.bj@>
> wrote:
> >
> > Hi Karthik,
> >
> > There is no way to install PHP 4 and 5 in a same system.....
> > Actually php5 is the upgrade version of php4, so you can't install
> both on
> > same machine...
> >
> > --
> > Regards,
> > Senthil Kumar B.
> >
> >
> > On Jan 9, 2008 12:09 PM, KARTHIKEYAN RANGASWAMY <karthikranga83@>
> > wrote:
> >
> > >   Hi Friends,
> > >
> > > I am currently Using PHP 4.4.7,Mysql 4.1.14 and Apache 2.0.59.
> > >
> > > Currently I have installed my PHP in c:/Program Files/Apache
> > > Group/apache2/php
> > >
> > > All These Things are working Fine
> > >
> > > I have also tried to install PHP5 Using WAMP Package
> > >
> > > I Have downloaded WAMP and tried to install WAMP but when Installing
> > > Apache in WAMP it gives the error as port 80 is blocked
> > >
> > > I dont know how to fix this
> > >
> > > I want to run both PHP4 and PHP 5 in the same system by installing
> > > successfully through WAMP
> > > without uninstalling the PHP 4.4.7 installed
> > >
> > > Is there any way to do that
> > >

#918 From: ganu.ullu@...
Date: Wed Jan 9, 2008 6:11 pm
Subject: Re: Re: Can we Install PHP4 and PHP5 ON Same System
dave.ankur
Send Email Send Email
 
This I have tested this for my linux box.

install php5 as normal and install php4 as cgi module.

and in the same httpd conf file made change , so your php4 things will run
from cgi module.
say like -
AddHandler php-script .php4
Action php-script /somedir/php4

so when you run your php4 then your server type will be fastCGI. for php5 it
will be apache.

so with one apache conf file you can run your php4 and php5.
same time , same instance. :)

hope this will help.

try this.


On 1/9/08, Amit Rana <amitrana77@...> wrote:
>
>   I agree this is the simplest way to do.
>
> To install multiple version on linux use --prefix=/usr/local2 option
> while compiling. You can even specify the location of php.ini file
> using --with-config-file-path
>
> You can even work with single httpd.conf file just make sure you are
> loading correct modules. Check for LoadModule in conf file.
>
> Regards,
> Amit.
>
> --- In bang-phpug@yahoogroups.com <bang-phpug%40yahoogroups.com>,
> "pinky_goyal22" <pinks.forums@...>
> wrote:
> >
> > i dont have idea about the WAMP package but i have installed both php4
> > and php5 on my system.
> >
> > i do this way:
> >
> > you can have both php4 and php5 on your system but you can run 1 at a
> > time and for running the other you need to make some changes.
> > for php4 and php5 httpd.conf and php.ini file is different.
> > place both httpd.conf(php4 and php5) file in conf folder, one with the
> > name httpd.conf and rename the other one say httpd_php4.conf.
> > same as make two copies of php.ini and name one as php.ini and rename
> > the other one say php4.ini. if you are running php5
> >
> > if you want to run php4 rename httpd_php4.conf to httpd.conf and
> > php4.ini to php.ini and rename the previous httpd.conf and php.ini to
> > httpd_php5.conf and php5.ini.
> >
> > i hope this will help you
> >
> >
> >
> >
> > --- In bang-phpug@yahoogroups.com <bang-phpug%40yahoogroups.com>,
> "Senthil Kumar B" <skumar.bj@>
> > wrote:
> > >
> > > Hi Karthik,
> > >
> > > There is no way to install PHP 4 and 5 in a same system.....
> > > Actually php5 is the upgrade version of php4, so you can't install
> > both on
> > > same machine...
> > >
> > > --
> > > Regards,
> > > Senthil Kumar B.
> > >
> > >
> > > On Jan 9, 2008 12:09 PM, KARTHIKEYAN RANGASWAMY <karthikranga83@>
> > > wrote:
> > >
> > > > Hi Friends,
> > > >
> > > > I am currently Using PHP 4.4.7,Mysql 4.1.14 and Apache 2.0.59.
> > > >
> > > > Currently I have installed my PHP in c:/Program Files/Apache
> > > > Group/apache2/php
> > > >
> > > > All These Things are working Fine
> > > >
> > > > I have also tried to install PHP5 Using WAMP Package
> > > >
> > > > I Have downloaded WAMP and tried to install WAMP but when Installing
> > > > Apache in WAMP it gives the error as port 80 is blocked
> > > >
> > > > I dont know how to fix this
> > > >
> > > > I want to run both PHP4 and PHP 5 in the same system by installing
> > > > successfully through WAMP
> > > > without uninstalling the PHP 4.4.7 installed
> > > >
> > > > Is there any way to do that
> > > >
>
>
>


[Non-text portions of this message have been removed]

#919 From: ganu.ullu@...
Date: Wed Jan 9, 2008 6:19 pm
Subject: Re: The web pages in production are being run twice.
dave.ankur
Send Email Send Email
 
hello,

is your production env. have load balancers. where your apllication is put
up into multiple servers and served via load balancer. if yes check that
too.

check your apache server logs.


On 1/9/08, guruj_r <guruj_r@...> wrote:
>
>   Hi,
>
> We are recently facing few problems. The background of us is
> We are currently built a website which will serve the users to get
> in and buy something from the site. Also we have option for the user
> to get in and place their advertisement (selling their car,
> truck, ...). We are facing the issue that all records have been
> created twice (meaning page has been run twice only in production),
> whereas in our dev environment, we are able to create records
> clearly even now...
>
> We are struck in this portion. The application is on
> production (and the request from the users are being handled through
> web farms), so we need to find the solution as soon as possible.
> Please let us know if anyone knows anything related to that or test
> scenarios to test ....
>
> Our doubt is whether this is due to web farm or some other
> thing which causes this issue...
>
> Thanks in advance.
>
> Regards,
> Guru
>
>
>


[Non-text portions of this message have been removed]

#920 From: ganu.ullu@...
Date: Wed Jan 9, 2008 6:34 pm
Subject: Re: Re: Multithreading in php
dave.ankur
Send Email Send Email
 
FYI
http://www.phpclasses.org/browse/package/1136.html
this gives just an idea.

but as per the above discussion.
the multiple curl and exec will do your job.


On 1/9/08, Amit Rana <amitrana77@...> wrote:
>
>   In this case what Vaijnath suggested will work pretty
> well. You dont even want to wait for child processes
> to finish. Just fork out different processes for
> copying. Just code intelligently so that all processes
> dont end up working on same rows.
>
> Regards,
> Amit.
>
> --- Anand Subramanian <axsubram@... <axsubram%40yahoo.com>> wrote:
>
> >
> > Here is my application flow. There is no UI
> > involved.
> > We have a PHP program that reads an xml file
> > (normally containing 5000+ records).
> > Each of the record can contain one or more links for
> > photos. The photos are stored in a diff server/diff
> > domain.
> > Our php program. will read the records, insert into
> > db (this gets done pretty fast)
> > Then it copies the photos for each record - this
> > normally takes 5-8 hours to copy (5000+ photos)
> > What I want to do is to run multiple processes to do
> > this copy in parallel, so that i can have say 5
> > processes doing this copy .
> >
> >
> > thanks
> >
> > Anand
> >
> >
> >
> >
> >
> >
> > Hi Vaijnath,
> >
> >
> >
> > Thats what I meant, php 'as a language' doesn't
> >
> > support muti threading there are ways to do it curl
> >
> > being one, fork being other, depends on 'what' you
> >
> > want to do.
> >
> >
> >
> > Anand,
> >
> > What exactly do you want to do? keep a web page
> > open
> >
> > (maintain session) for hours while your background
> >
> > process finishes?
> >
> > Can you share your application flow?
> >
> >
> >
> > Regards,
> >
> > Amit.
> >
> >
> >
> > ____________ _________ _________ _________ _________
> > _________ _
> >
> > Never miss a thing. Make Yahoo your home page.
> >
> > http://www.yahoo. com/r/hs
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > <!--
> >
> > #ygrp-mkp{
> > border:1px solid
> > #d8d8d8;font-family:Arial;margin:14px
> > 0px;padding:0px 14px;}
> > #ygrp-mkp hr{
> > border:1px solid #d8d8d8;}
> > #ygrp-mkp #hd{
> >
> color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px
> > 0px;}
> > #ygrp-mkp #ads{
> > margin-bottom:10px;}
> > #ygrp-mkp .ad{
> > padding:0 0;}
> > #ygrp-mkp .ad a{
> > color:#0000ff;text-decoration:none;}
> > -->
> >
> >
> >
> > <!--
> >
> > #ygrp-sponsor #ygrp-lc{
> > font-family:Arial;}
> > #ygrp-sponsor #ygrp-lc #hd{
> > margin:10px
> >
> 0px;font-weight:bold;font-size:78%;line-height:122%;}
> > #ygrp-sponsor #ygrp-lc .ad{
> > margin-bottom:10px;padding:0 0;}
> > -->
> >
> >
> >
> > <!--
> >
> > #ygrp-mlmsg {font-size:13px;font-family:arial,
> > helvetica, clean, sans-serif;}
> > #ygrp-mlmsg table {font-size:inherit;font:100%;}
> > #ygrp-mlmsg select, input, textarea {font:99% arial,
> > helvetica, clean, sans-serif;}
> > #ygrp-mlmsg pre, code {font:115% monospace;}
> > #ygrp-mlmsg * {line-height:1.22em;}
> > #ygrp-text{
> > font-family:Georgia;
> > }
> > #ygrp-text p{
> > margin:0 0 1em 0;}
> > #ygrp-tpmsgs{
> > font-family:Arial;
> > clear:both;}
> > #ygrp-vitnav{
> >
> padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
> > #ygrp-vitnav a{
> > padding:0 1px;}
> > #ygrp-actbar{
> > clear:both;margin:25px
> > 0;white-space:nowrap;color:#666;text-align:right;}
> > #ygrp-actbar .left{
> > float:left;white-space:nowrap;}
> > .bld{font-weight:bold;}
> > #ygrp-grft{
> > font-family:Verdana;font-size:77%;padding:15px 0;}
> > #ygrp-ft{
> > font-family:verdana;font-size:77%;border-top:1px
> > solid #666;
> > padding:5px 0;
> > }
> > #ygrp-mlmsg #logo{
> > padding-bottom:10px;}
> >
> > #ygrp-vital{
> >
> background-color:#e0ecee;margin-bottom:20px;padding:2px
> > 0 8px 8px;}
> > #ygrp-vital #vithd{
> >
>
>
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:upp\
ercase;}
> > #ygrp-vital ul{
> > padding:0;margin:2px 0;}
> > #ygrp-vital ul li{
> > list-style-type:none;clear:both;border:1px solid
> > #e0ecee;
> > }
> > #ygrp-vital ul li .ct{
> >
>
>
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-ri\
ght:.5em;}
> > #ygrp-vital ul li .cat{
> > font-weight:bold;}
> > #ygrp-vital a{
> > text-decoration:none;}
> >
> > #ygrp-vital a:hover{
> > text-decoration:underline;}
> >
> > #ygrp-sponsor #hd{
> > color:#999;font-size:77%;}
> > #ygrp-sponsor #ov{
> > padding:6px
> > 13px;background-color:#e0ecee;margin-bottom:20px;}
> > #ygrp-sponsor #ov ul{
> > padding:0 0 0 8px;margin:0;}
> > #ygrp-sponsor #ov li{
> > list-style-type:square;padding:6px 0;font-size:77%;}
> > #ygrp-sponsor #ov li a{
> > text-decoration:none;font-size:130%;}
> > #ygrp-sponsor #nc{
> > background-color:#eee;margin-bottom:20px;padding:0
> > 8px;}
> > #ygrp-sponsor .ad{
> > padding:8px 0;}
> > #ygrp-sponsor .ad #hd1{
> >
>
>
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%\
;}
> > #ygrp-sponsor .ad a{
> > text-decoration:none;}
> > #ygrp-sponsor .ad a:hover{
> > text-decoration:underline;}
> > #ygrp-sponsor .ad p{
> > margin:0;}
> > o{font-size:0;}
> > .MsoNormal{
> > margin:0 0 0 0;}
> > #ygrp-text tt{
> > font-size:120%;}
> > blockquote{margin:0 0 0 4px;}
> > .replbq{margin:4;}
> > -->
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> __________________________________________________________
> > Looking for last minute shopping deals?
> > Find them fast with Yahoo! Search.
> http://tools.search.yahoo.com/newsearch/category.php?category=shopping
>
> __________________________________________________________
> Looking for last minute shopping deals?
> Find them fast with Yahoo! Search.
> http://tools.search.yahoo.com/newsearch/category.php?category=shopping
>
>
>


[Non-text portions of this message have been removed]

#921 From: "guruj_r" <guruj_r@...>
Date: Thu Jan 10, 2008 2:30 pm
Subject: Re: The web pages in production are being run twice.
guruj_r
Send Email Send Email
 
Hi,

      Thanks for your time in responding us...

      I am also not aware of load balancers and Apache server logs. I
think our client is using web farms and serving the request by load
balancers.

      1. Can you know where and what to check in Load balancers as
well as Apache to know that the program is served only once and
everything is perfect?

      2. Also can we get the server name from where the program is
served - so that it may be used for debugging.

I also have few tips on this problem,
      The issue of page running twice is happened only when it is
submitted or redirected from a page. If we type the url directly in
the browser and hit Enter, the page is run only once. This has been
captured thro insert statements wrote in the program. Another beauty
is the user does not know / realize that the page is run twice.
Meaning we have found the issue of running twice only due to
insertion of records.

Thanks in advance,

Regards,
Guru.

#922 From: ganu.ullu@...
Date: Fri Jan 11, 2008 4:54 am
Subject: Re: Re: The web pages in production are being run twice.
dave.ankur
Send Email Send Email
 
Hello,

you can be rite bcoz the most common applications of load balancing is to
provide a single internet service from multiple servers, sometimes known as
a server farm

now If we see your problem , you are saying only in production the page runs
for 2 times not in your dev box. This is clear case that your page/pages are
served 2 times, but in your dev box that is served only once.

You can just debug the page, For debugging this kind of problem you can use

    - https://addons.mozilla.org/en-US/firefox/addon/3829 ( Live HTTP
    Header ) so you can View HTTP headers of a page and while browsing.
    - Else you can see your apache server log and after parsing you can
    find , this page is served from where and with what details.
    - write some dummy page and test that. (with query insert) in your
    production server.
    - if there is a load balancer then I think the DB is also at two place
    and something like master and slave kind of setting must be there. (so if
    you say its inserting 2 times, then the DB object is called 2 times from
    diff-diff sertvers and executed. something like that ) -- this is just the
    thought.

since the load balancer is just the technique so the debug is only the
solution of this kind of issues.

IF you find the solution, please update in the group, its good issue to
discuss.

ThanQ.
Ganu.

On 1/10/08, guruj_r <guruj_r@...> wrote:
>
>   Hi,
>
> Thanks for your time in responding us...
>
> I am also not aware of load balancers and Apache server logs. I
> think our client is using web farms and serving the request by load
> balancers.
>
> 1. Can you know where and what to check in Load balancers as
> well as Apache to know that the program is served only once and
> everything is perfect?
>
> 2. Also can we get the server name from where the program is
> served - so that it may be used for debugging.
>
> I also have few tips on this problem,
> The issue of page running twice is happened only when it is
> submitted or redirected from a page. If we type the url directly in
> the browser and hit Enter, the page is run only once. This has been
> captured thro insert statements wrote in the program. Another beauty
> is the user does not know / realize that the page is run twice.
> Meaning we have found the issue of running twice only due to
> insertion of records.
>
> Thanks in advance,
>
> Regards,
> Guru.
>
>
>


[Non-text portions of this message have been removed]

#923 From: "Amit Rana" <amitrana77@...>
Date: Fri Jan 11, 2008 5:37 am
Subject: Re: Meetings
amitrana77
Send Email Send Email
 
Hello Friends,

  Today is last day for registration please register for the meetup at
this link http://upcoming.yahoo.com/event/400261/

Suggestion for agenda:
- discussion on what environment/IDE and kind of projects we work on.
- Future plan for meetups?

Regards,
Amit.

--- In bang-phpug@yahoogroups.com, "Amit Rana" <amitrana77@...> wrote:
>
> Hello Everyone,
>  I just created an event for our meet
> http://upcoming.yahoo.com/event/400261/
>
>  Can you please review/register? If you think we should change the
> time/date please let me know.
>
> Regards,
> Amit.
>
> --- In bang-phpug@yahoogroups.com, "Vinu Thomas" <vinuthomas@>
wrote:
> >
> > Hi Amit,
> >
> > Thanks for letting us use your office for the meet up. Count me
in for
> > the meeting.
> > Which day/time will be convenient for us to meet?
> >
> > Regards,
> > Vinu
> > -------------------------------
> > www.vinuthomas.com
> > blogs.vinuthomas.com
> >
> >
> > On Jan 4, 2008 11:20 AM, Amit Rana <amitrana77@> wrote:
> >
> > > Hello Guys,
> > >
> > >  Good initiative. We can also meet in our office
www.techjini.com
> > >  (BTM layout 2nd stage)
> > >
> > >  But we will have to post pone it for next week. I am currently
not
> > >  in bangalore (reaching blr on 7th). This would be possible as
long as
> > >  head count is less than 12-15, we have pretty small conference
> room :(
> > >
> > >  For starters we can also arrange for tea/snacks and a session
on
> > >  symfony.
> > >
> > >  comments are welcome.
> > >
> > >  Regards,
> > >  Amit.
> > >  --
> >
>

#924 From: "anil_t_chacko" <anil_t_chacko@...>
Date: Fri Jan 11, 2008 5:42 am
Subject: PHP Frameworks
anil_t_chacko
Send Email Send Email
 
Hi,
Can anyone tell the adavantage of using PHP frameworks. I like the
traditional way of embedding PHP scripts in HTML. It is fast and not
very complicated unlike frameworks. Then why frameworks? For a
biginner, which is the good framework for PHP 5.0?
Regards,
Anil

#925 From: "Sunil" <ksunil@...>
Date: Fri Jan 11, 2008 6:12 am
Subject: Quartz like scheduler in PHP
sunil_virup
Send Email Send Email
 
Hello,

Does anyone here know of any Quartz(http://www.opensymphony.com/quartz/)
like scheduler in PHP? I am new to PHP and I am looking at implementing a
housekeeping job in my web application. Insight on any other ways of
implementing scheduler in PHP is appreciated.

Thanks
Sunil

#926 From: "Tapan Shah" <tapsboy@...>
Date: Fri Jan 11, 2008 8:45 am
Subject: Re: PHP Frameworks
tapan_2000_g...
Send Email Send Email
 
Frameworks are meant for large and complex applications, many a times those
are used for enterprise application development more than the website
development

Famous ones:

Cakephp
CodeIgniter
Zend Framework
Symfony

On Jan 11, 2008 11:12 AM, anil_t_chacko <anil_t_chacko@...> wrote:

>   Hi,
> Can anyone tell the adavantage of using PHP frameworks. I like the
> traditional way of embedding PHP scripts in HTML. It is fast and not
> very complicated unlike frameworks. Then why frameworks? For a
> biginner, which is the good framework for PHP 5.0?
> Regards,
> Anil
>
>
>



--
Tapan Shah
http://www.tapan.in/
http://www.assetonline.in/


[Non-text portions of this message have been removed]

#927 From: ganu.ullu@...
Date: Fri Jan 11, 2008 10:43 am
Subject: Re: PHP Frameworks
dave.ankur
Send Email Send Email
 
hello,

This will help you little more.
http://www.phpwact.org/php/mvc_frameworks
http://www.phpit.net/demo/framework%20comparison/chart.php


On Jan 11, 2008 2:15 PM, Tapan Shah <tapsboy@...> wrote:

>   Frameworks are meant for large and complex applications, many a times
> those
> are used for enterprise application development more than the website
> development
>
> Famous ones:
>
> Cakephp
> CodeIgniter
> Zend Framework
> Symfony
>
>
> On Jan 11, 2008 11:12 AM, anil_t_chacko
<anil_t_chacko@...<anil_t_chacko%40yahoo.com>>
> wrote:
>
> > Hi,
> > Can anyone tell the adavantage of using PHP frameworks. I like the
> > traditional way of embedding PHP scripts in HTML. It is fast and not
> > very complicated unlike frameworks. Then why frameworks? For a
> > biginner, which is the good framework for PHP 5.0?
> > Regards,
> > Anil
> >
> >
> >
>
> --
> Tapan Shah
> http://www.tapan.in/
> http://www.assetonline.in/
>
> [Non-text portions of this message have been removed]
>
>
>


[Non-text portions of this message have been removed]

#928 From: "thisistrinath" <thisistrinath@...>
Date: Sat Jan 12, 2008 1:47 am
Subject: Removing .php extension from a PHP page
thisistrinath
Send Email Send Email
 
Hello,
      I want to hide the .php extension from all my php files shown in
the browser. For ex: I want to change abcd.com/form.php?a=1234 into
abcd.com/form?a=1234

How can I achieve this?
Thank you

#929 From: "Sandeep --------->" <sandeepsolanki82@...>
Date: Sat Jan 12, 2008 4:24 am
Subject: Re: Removing .php extension from a PHP page
sandeep_sola...
Send Email Send Email
 
with the help of *.htaccess *file u can do this.



On Jan 12, 2008 7:17 AM, thisistrinath <thisistrinath@...> wrote:

>   Hello,
> I want to hide the .php extension from all my php files shown in
> the browser. For ex: I want to change abcd.com/form.php?a=1234 into
> abcd.com/form?a=1234
>
> How can I achieve this?
> Thank you
>
>
>



--
   -------o-0-o--------
Thanks And Regards,
Sandeep Solanki
Kalptaru Infotech Ltd.Indore


[Non-text portions of this message have been removed]

#930 From: ganu.ullu@...
Date: Sat Jan 12, 2008 6:46 am
Subject: Re: Removing .php extension from a PHP page
dave.ankur
Send Email Send Email
 
hello,

all you need to do is read about .htaccess stuffs.

For enable this stuff you have to enable mod_rewrite things for your apache.

that you can do like this ( so by this you are telling your apache to enable
the rewriteEngine.)
*Options +FollowSymlinks
RewriteEngine on

*THen you have to write the rewrite rule for this in your .htaccess file. or
if there are less rules you can wite in apache conf file only.
the rule can be written like this --
RewriteRule ^/form?a=(.+) form.php?a=$1 [L]

of you can make more goood like
RewriteRule ^/form/(.+)/(.+) form.php?$1=$2 [L]
this is abcd.com/form/a/1234

now you can do more serach on .htaccess and php and you will get your ans.


ThanQ.


On Jan 12, 2008 7:17 AM, thisistrinath <thisistrinath@...> wrote:

>   Hello,
> I want to hide the .php extension from all my php files shown in
> the browser. For ex: I want to change abcd.com/form.php?a=1234 into
> abcd.com/form?a=1234
>
> How can I achieve this?
> Thank you
>
>
>


[Non-text portions of this message have been removed]

#931 From: vaijanath rao <vaiju1981@...>
Date: Sat Jan 12, 2008 6:59 am
Subject: Re: Removing .php extension from a PHP page
vaiju1981
Send Email Send Email
 
Hi Trinath,

You can use the rewrite rule in apache, if you are using the apache to do this.
Something like below

RewriteRule  /form*    form.php$1

If you are using different webserver. Kindly find out where this rewrite rule
has to be written.

--Thanks and Regards
Vaijanath


----- Original Message ----
From: thisistrinath <thisistrinath@...>
To: bang-phpug@yahoogroups.com
Sent: Saturday, 12 January, 2008 7:17:11 AM
Subject: [bang-phpug] Removing .php extension from a PHP page













             Hello,

      I want to hide the .php extension from all my php files shown in

the browser. For ex: I want to change abcd.com/form. php?a=1234 into

abcd.com/form? a=1234



How can I achieve this?

Thank you














<!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#0000ff;text-decoration:none;}
-->



<!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
-->



<!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean,
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:upp\
ercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-ri\
ght:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%\
;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
-->








       Now you can chat without downloading messenger. Go to
http://in.messenger.yahoo.com/webmessengerpromo.php

[Non-text portions of this message have been removed]

#932 From: "thisistrinath" <thisistrinath@...>
Date: Sun Jan 13, 2008 7:23 am
Subject: What is an SMS gateway?
thisistrinath
Send Email Send Email
 
Now my mind drilling on something new. I want to send SMS via PHP for
alerts, but I came to know that all PHP can do is to call the API
provided by those offering pay-per-use service of sending sms.

On further search I found SMS gateways. Few had to be paid, I saw an
open source gateway also called Kannel. I want to pay only once if at
all. So will the gateway do my job of sending about 1000 sms's a month
without any Further Cost involvement? Does anyone of you has any
experience with this?
Thank you

#933 From: "Shyam Sundar" <csshyamsundar@...>
Date: Sun Jan 13, 2008 9:41 am
Subject: Re: What is an SMS gateway?
ssundar85
Send Email Send Email
 
Hey.,

You got confused., if you want PHP/ASP/[fill_in_the_blank] to send SMS, you
should opt for a commercial SMS gateway provider.

Kannel., is a WAP/SMS gateway software. Here you are required to have a ***CSD
Router and a simcard with a plan with your mobile provider to send and recv
messages. ( http://www.kannel.org/faq.shtml#4.9 ). it is not completely free
as you still have to pay for every sms you send. AFAIK, any GSM provider in
india has packs to offer free SMS for that intra circle alone.

Hope this clarifies your issue.
*
--
Shyam Sundar

[mobile] +91-94421-26585 | [voip] +1-425-998-1134

"In our world of game and con: there is always an opponent and there is
always a victim. The trick: is to know when you're the latter, so you can
become the former."
**
On Jan 13, 2008 12:53 PM, thisistrinath <thisistrinath@...> wrote:

>   Now my mind drilling on something new. I want to send SMS via PHP for
> alerts, but I came to know that all PHP can do is to call the API
> provided by those offering pay-per-use service of sending sms.
>
> On further search I found SMS gateways. Few had to be paid, I saw an
> open source gateway also called Kannel. I want to pay only once if at
> all. So will the gateway do my job of sending about 1000 sms's a month
> without any Further Cost involvement? Does anyone of you has any
> experience with this?
> Thank you
>
>    Messages in this topic
>
<http://groups.yahoo.com/group/bang-phpug/message/932;_ylc=X3oDMTMzdGtudnUyBF9TA\
zk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRtc2dJZAM5MzIEc2VjA2Z0c\
gRzbGsDdnRwYwRzdGltZQMxMjAwMjA5OTMxBHRwY0lkAzkzMg-->(
> 1)  Reply (via web post)
>
<http://groups.yahoo.com/group/bang-phpug/post;_ylc=X3oDMTJwOG0xMXBrBF9TAzk3MzU5\
NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRtc2dJZAM5MzIEc2VjA2Z0cgRzbGsD\
cnBseQRzdGltZQMxMjAwMjA5OTMx?act=reply&messageNum=932>| Start
> a new topic
>
<http://groups.yahoo.com/group/bang-phpug/post;_ylc=X3oDMTJmbjg3MTBoBF9TAzk3MzU5\
NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNudHBjBHN0aW1l\
AzEyMDAyMDk5MzE->
> 
Messages<http://groups.yahoo.com/group/bang-phpug/messages;_ylc=X3oDMTJmcnNiMGZp\
BF9TAzk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNt\
c2dzBHN0aW1lAzEyMDAyMDk5MzE->|
>
Files<http://groups.yahoo.com/group/bang-phpug/files;_ylc=X3oDMTJnY2owYzV0BF9TAz\
k3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNmaWxlcw\
RzdGltZQMxMjAwMjA5OTMx>|
>
Photos<http://groups.yahoo.com/group/bang-phpug/photos;_ylc=X3oDMTJmcDJhdDdpBF9T\
Azk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNwaG90\
BHN0aW1lAzEyMDAyMDk5MzE->|
>
Links<http://groups.yahoo.com/group/bang-phpug/links;_ylc=X3oDMTJnazY1YzJhBF9TAz\
k3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNsaW5rcw\
RzdGltZQMxMjAwMjA5OTMx>|
>
Polls<http://groups.yahoo.com/group/bang-phpug/polls;_ylc=X3oDMTJnOGFydTc2BF9TAz\
k3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNwb2xscw\
RzdGltZQMxMjAwMjA5OTMx>|
>
Calendar<http://groups.yahoo.com/group/bang-phpug/calendar;_ylc=X3oDMTJlc2Nsa2Zo\
BF9TAzk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNj\
YWwEc3RpbWUDMTIwMDIwOTkzMQ-->
>  MARKETPLACE
>  ------------------------------
> Earn your degree in as few as 2 years - Advance your career with an AS,
> BS, MS
degree<http://us.ard.yahoo.com/SIG=12mvhnsmp/M=571476.12066680.12490312.11509771\
/D=groups/S=3855345637:MKP1/Y=YAHOO/EXP=1200217134/A=5086951/R=0/SIG=12k8pu1n3/*\
http://college-finder.net/index.cfm?key=yahoo_colfngrouptxt_12066680&c=CA1529325\
87>-
> College-Finder.net.
>   [image: Yahoo!
Groups]<http://groups.yahoo.com/;_ylc=X3oDMTJlOG1uYWdkBF9TAzk3MzU5NzE0BGdycElkAz\
E3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNnZnAEc3RpbWUDMTIwMDIwOTkzMQ\
-->
> Change settings via the
Web<http://groups.yahoo.com/group/bang-phpug/join;_ylc=X3oDMTJnajBncnY1BF9TAzk3M\
zU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNzdG5ncwRzd\
GltZQMxMjAwMjA5OTMx>(Yahoo! ID required)
> Change settings via email: Switch delivery to Daily
Digest<bang-phpug-digest@yahoogroups.com?subject=Email+Delivery:+Digest>| Switch
> format to
Traditional<bang-phpug-traditional@yahoogroups.com?subject=Change+Delivery+Forma\
t:+Traditional>
>  Visit Your Group
>
<http://groups.yahoo.com/group/bang-phpug;_ylc=X3oDMTJlN3E3bTFtBF9TAzk3MzU5NzE0B\
GdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNocGYEc3RpbWUDMTIwM\
DIwOTkzMQ-->| Yahoo!
> Groups Terms of Use <http://docs.yahoo.com/info/terms/> | Unsubscribe
> <bang-phpug-unsubscribe@yahoogroups.com?subject=>
>   Recent Activity
>
>    -  7
>    New
Members<http://groups.yahoo.com/group/bang-phpug/members;_ylc=X3oDMTJnZWttdmJkBF\
9TAzk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDdnRsBHNsawN2bW\
JycwRzdGltZQMxMjAwMjA5OTMx>
>
>  Visit Your Group
>
<http://groups.yahoo.com/group/bang-phpug;_ylc=X3oDMTJmMHFwdjVlBF9TAzk3MzU5NzE0B\
GdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDdnRsBHNsawN2Z2hwBHN0aW1lAzEyM\
DAyMDk5MzE->
>  Parenting Groups
>
> on Yahoo!
Groups<http://us.ard.yahoo.com/SIG=12jqdqt4o/M=493064.12016283.12445687.8674578/\
D=groups/S=3855345637:NC/Y=YAHOO/EXP=1200217134/A=5045821/R=0/SIG=11gsqr691/*htt\
p://advision.webevents.yahoo.com/parenting/>
>
> Single Parenting
>
> to managing twins.
>  Dog Groups
>
> on Yahoo!
Groups<http://us.ard.yahoo.com/SIG=12j85tk8d/M=493064.12016263.12445670.8674578/\
D=groups/S=3855345637:NC/Y=YAHOO/EXP=1200217134/A=4836043/R=0/SIG=11o19ppl5/*htt\
p://advision.webevents.yahoo.com/dogzone/index.html>
>
> Share pictures &
>
> stories about dogs.
>  Yahoo! Groups
>
> How-To
Zone<http://us.ard.yahoo.com/SIG=12jr5046i/M=493064.12117566.12537396.8674578/D=\
groups/S=3855345637:NC/Y=YAHOO/EXP=1200217134/A=5170407/R=0/SIG=11gfoiqic/*http:\
//advision.webevents.yahoo.com/craftsman/>
>
> Do-It-Yourselfers
>
> Connect & share.
>   .
>
>


[Non-text portions of this message have been removed]

#934 From: "thisistrinath" <thisistrinath@...>
Date: Sun Jan 13, 2008 8:28 pm
Subject: Re: What is an SMS gateway?
thisistrinath
Send Email Send Email
 
Hi Shyam,
        Thank you for your clarification, so this means that I will
still have to pay even if I have my own sms gateway (which is not
easy). Thats why I have better realized to go with the paid service
itself without any headache.
Thank you

#935 From: Pritesh Loke <priteshloke@...>
Date: Tue Jan 15, 2008 4:43 am
Subject: SSO information
priteshloke
Send Email Send Email
 
Hello To All
                   Can any body help me in SSO [single sign-on] in php. I need
information like how sso working and one type good processes of working.

Thank You


PML

---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.

[Non-text portions of this message have been removed]

#936 From: "Amit Rana" <amitrana77@...>
Date: Tue Jan 15, 2008 5:12 am
Subject: Re: SSO information
amitrana77
Send Email Send Email
 
checkout following links
http://www.pubcookie.org/
http://openid.net/what/

--- In bang-phpug@yahoogroups.com, Pritesh Loke <priteshloke@...>
wrote:
>
> Hello To All
>                   Can any body help me in SSO [single sign-on] in
php. I need information like how sso working and one type good
processes of working.
>
> Thank You
>
>
> PML
>
> ---------------------------------
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile.
Try it now.
>
> [Non-text portions of this message have been removed]
>

#937 From: "Amit Rana" <amitrana77@...>
Date: Tue Jan 15, 2008 5:10 am
Subject: PHP Meet update
amitrana77
Send Email Send Email
 
Hello Everyone,

First of all thanks to followig people for coming and making it a
very interesting PHP-meet
Pradeep cofounder mapunity, Sandeep - 6 months with PHP, Karthik-
works in SAP domain, Shyamal - co-fouder TechJini, Amal - final year
BE, php enthusiast, Avidnyat - 3 years PHP, Ankur - 3 years php,
Vijesh - interested in php

- While waiting for others we had an interesting discussion on what
IDEs we use and everyone briefly explained whats good in their IDE.
Eclipse, Zend, VI, Html Design 2000 (is that right?)
- After everybody joined we started with brief introductions and what
areas/applications people are working on.
- There was a very interesting discussion on why not or why should
php be used for 'mission critical' applications. Shyamal did have
tough time convincing Pradeep as to what he thinks is 'mission
critical' :)
- Pradeep introduced as to easter eggs (http://www.0php.com/
php_easter_egg.php)
- Ankur talked about how to build pages for mobile. Some of the
interesting resources he mentioned were http://wurfl.sourceforge.net/
and mobilerunner.net
- There was a brief discussion on why we use frameworks and their
advantages.
- There was lot of discussion on future of php bangalore community.
How we can contribute back? Need and interest to have a set goal for
the community.

Action items:
- In order to make meetups more appealing and to build community
-- Have fixed agenda, announce in advance. (responsibility - Amit)
-- Setting up an online space where we can upload tutorials etc
-- Hacking sessions or design tear down sessions
-- Building a php resource center. Programmers still do not know what
tools to use to solve specific problems in php. Build a knowledge
base.
-- Meet once a month, discuss on list to find best date.

#938 From: "Shyam Sundar" <csshyamsundar@...>
Date: Tue Jan 15, 2008 5:54 am
Subject: Re: SSO information
ssundar85
Send Email Send Email
 
Basically., SSO is a simple over engineered concept.

For example, we have *n *different applications on *m *different domains.,
if we'd like to share login data amongst domains, we call it SSO.

Eg: We sign on in one of Yahoo! service., we get automatically signed on to
all the services of Yahoo!. Likewise we have OpenID, Live Sign On, etc.,

To get a start on SSO, try installing wordpress, mediawiki and drupal in
your XAMPP and analyse the cookie data each of the apps generate., then
modify logon code to generate cookie so that if we logon on one app., we can
logon on all the 3 apps. But, haveing done that, this is not a complete SSO.
This is to just get an headstart.

Thus if we are required to SSO between apps., we need to have an backend,
LDAP would be the preferred choice, but we can use anything!

Coming to the security aspect, make sure that SSO logon, logoff process and
check process are within SSL.

Thats it:

Finally:
Introduction to SSO:
http://www.opengroup.org/security/sso/sso_intro.htm/
PHP SSO using Oracle 10g:
http://www.oracle.com/technology/pub/notes/technote_as_signoff.html

--
Shyam Sundar

[mobile] +91-94421-26585 | [voip] +1-425-998-1134

"In our world of game and con: there is always an opponent and there is
always a victim. The trick: is to know when you're the latter, so you can
become the former."

On Jan 15, 2008 10:13 AM, Pritesh Loke <priteshloke@...> wrote:

>   Hello To All
> Can any body help me in SSO [single sign-on] in php. I need information
> like how sso working and one type good processes of working.
>
> Thank You
>
> PML
>
> ---------------------------------
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it
> now.
>
> [Non-text portions of this message have been removed]
>
>    Messages in this topic
>
<http://groups.yahoo.com/group/bang-phpug/message/935;_ylc=X3oDMTMzbWh2aTcwBF9TA\
zk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRtc2dJZAM5MzUEc2VjA2Z0c\
gRzbGsDdnRwYwRzdGltZQMxMjAwMzcyNTE5BHRwY0lkAzkzNQ-->(
> 1)  Reply (via web post)
>
<http://groups.yahoo.com/group/bang-phpug/post;_ylc=X3oDMTJwcGVzZ2poBF9TAzk3MzU5\
NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRtc2dJZAM5MzUEc2VjA2Z0cgRzbGsD\
cnBseQRzdGltZQMxMjAwMzcyNTE5?act=reply&messageNum=935>| Start
> a new topic
>
<http://groups.yahoo.com/group/bang-phpug/post;_ylc=X3oDMTJmbTBnZTFwBF9TAzk3MzU5\
NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNudHBjBHN0aW1l\
AzEyMDAzNzI1MTg->
> 
Messages<http://groups.yahoo.com/group/bang-phpug/messages;_ylc=X3oDMTJmaHI3dWx2\
BF9TAzk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNt\
c2dzBHN0aW1lAzEyMDAzNzI1MTg->|
>
Files<http://groups.yahoo.com/group/bang-phpug/files;_ylc=X3oDMTJncGI0cW0wBF9TAz\
k3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNmaWxlcw\
RzdGltZQMxMjAwMzcyNTE4>|
>
Photos<http://groups.yahoo.com/group/bang-phpug/photos;_ylc=X3oDMTJmNGVwMzlnBF9T\
Azk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNwaG90\
BHN0aW1lAzEyMDAzNzI1MTg->|
>
Links<http://groups.yahoo.com/group/bang-phpug/links;_ylc=X3oDMTJnOWFqZWVqBF9TAz\
k3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNsaW5rcw\
RzdGltZQMxMjAwMzcyNTE4>|
>
Polls<http://groups.yahoo.com/group/bang-phpug/polls;_ylc=X3oDMTJnMW5nOWVqBF9TAz\
k3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNwb2xscw\
RzdGltZQMxMjAwMzcyNTE4>|
>
Calendar<http://groups.yahoo.com/group/bang-phpug/calendar;_ylc=X3oDMTJlajkwa2lv\
BF9TAzk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNj\
YWwEc3RpbWUDMTIwMDM3MjUxOA-->
>  MARKETPLACE
>  ------------------------------
> Earn your degree in as few as 2 years - Advance your career with an AS,
> BS, MS
degree<http://us.ard.yahoo.com/SIG=12mfjftlf/M=571476.12066680.12490312.11509771\
/D=groups/S=3855345637:MKP1/Y=YAHOO/EXP=1200379719/A=5086951/R=0/SIG=12k8pu1n3/*\
http://college-finder.net/index.cfm?key=yahoo_colfngrouptxt_12066680&c=CA1529325\
87>-
> College-Finder.net.
>   [image: Yahoo!
Groups]<http://groups.yahoo.com/;_ylc=X3oDMTJldHQ5a21xBF9TAzk3MzU5NzE0BGdycElkAz\
E3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNnZnAEc3RpbWUDMTIwMDM3MjUxOQ\
-->
> Change settings via the
Web<http://groups.yahoo.com/group/bang-phpug/join;_ylc=X3oDMTJnajR2bGQ0BF9TAzk3M\
zU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNzdG5ncwRzd\
GltZQMxMjAwMzcyNTE5>(Yahoo! ID required)
> Change settings via email: Switch delivery to Daily
Digest<bang-phpug-digest@yahoogroups.com?subject=Email+Delivery:+Digest>| Switch
> format to
Traditional<bang-phpug-traditional@yahoogroups.com?subject=Change+Delivery+Forma\
t:+Traditional>
>  Visit Your Group
>
<http://groups.yahoo.com/group/bang-phpug;_ylc=X3oDMTJlaTVpMzU0BF9TAzk3MzU5NzE0B\
GdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDZnRyBHNsawNocGYEc3RpbWUDMTIwM\
DM3MjUxOQ-->| Yahoo!
> Groups Terms of Use <http://docs.yahoo.com/info/terms/> | Unsubscribe
> <bang-phpug-unsubscribe@yahoogroups.com?subject=>
>   Recent Activity
>
>    -  8
>    New
Members<http://groups.yahoo.com/group/bang-phpug/members;_ylc=X3oDMTJncTEwNDNjBF\
9TAzk3MzU5NzE0BGdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDdnRsBHNsawN2bW\
JycwRzdGltZQMxMjAwMzcyNTE4>
>
>  Visit Your Group
>
<http://groups.yahoo.com/group/bang-phpug;_ylc=X3oDMTJmb2VsaDliBF9TAzk3MzU5NzE0B\
GdycElkAzE3OTYyODE3BGdycHNwSWQDMzg1NTM0NTYzNwRzZWMDdnRsBHNsawN2Z2hwBHN0aW1lAzEyM\
DAzNzI1MTg->
>  Parenting Zone
>
> Your home
for<http://us.ard.yahoo.com/SIG=12j3mhjan/M=493064.12016283.12445687.8674578/D=g\
roups/S=3855345637:NC/Y=YAHOO/EXP=1200379719/A=5045822/R=0/SIG=11gsqr691/*http:/\
/advision.webevents.yahoo.com/parenting/>
>
> parenting information
>
> on Yahoo! Groups.
>  Featured Y! Groups
>
> and category
pages.<http://us.ard.yahoo.com/SIG=12j7hrf2v/M=493064.12016306.12445698.8674578/\
D=groups/S=3855345637:NC/Y=YAHOO/EXP=1200379719/A=4763760/R=0/SIG=11ou7otip/*htt\
p://advision.webevents.yahoo.com/bestofyahoogroups/>
>
> There is something
>
> for everyone.
>  Yahoo! Groups
>
> Special K
Challenge<http://us.ard.yahoo.com/SIG=12kd5aakj/M=493064.12016300.12445692.11323\
196/D=groups/S=3855345637:NC/Y=YAHOO/EXP=1200379719/A=5170418/R=0/SIG=11b5gu1oe/\
*http://new.groups.yahoo.com/specialKgroup>
> Join others who
>
> are losing pounds.
>


[Non-text portions of this message have been removed]

#939 From: "satvirsingh_sss" <satvirsingh_sss@...>
Date: Tue Jan 15, 2008 6:47 am
Subject: Imagemagick with magick wand for great profisonals
satvirsingh_sss
Send Email Send Email
 
hi friends,

  i configure the lamp on linux after make lamp i configure the
magickwand for imagemagick but its not run after rebuild the configure

  i call NewmagickWand function on php page but its give error

Call to undefined function: newmagickwand() in
/usr/local/apache/htdocs/m1.php on line 8

   its not take  newmagickwand() function i dont know why this error
come if magick wand is configured

  any body know why this error come, or whts step to right configure
the  magickwand on lamp
during php configure magickwanmd is  configure
aftre configure lamp then configure magicwand

#940 From: "thisistrinath" <thisistrinath@...>
Date: Tue Jan 15, 2008 7:51 am
Subject: Re: PHP Meet update
thisistrinath
Send Email Send Email
 
Nice to know that the meeting has taken place, humble it might have
been, but it has started which is good. I cannot attend them because I
live in NYC. As for hosting things like tutorials etc. Its a good
thought and you can use googlepages.com for free hosting. And as for
topics on meetings, I wrote a list few days back, if you haven't seen
it you can see it at http://yerra.trinadh.googlepages.com/phpsessions.html

#941 From: "thisistrinath" <thisistrinath@...>
Date: Tue Jan 15, 2008 8:09 am
Subject: Chat application with PHP question
thisistrinath
Send Email Send Email
 
Hi, I want to build a chat application. Initially I thought of not
using a database and directly send it from client1 to script(at
server) via AJAX and back to client2. But I cannot do it as of now
because using AJAX, server cannot push content onto client as of now.
But I did search and found that they call it Reverse AJAX (the next
big thing in the development )
http://en.wikipedia.org/wiki/Reverse_Ajax and COMET is a method
achieving the same. So, I will postpone the idea of not using database
for a while(I hope you found that informational).

But now I have a question on how to retrieve new messages from
database, on what basis? Do I have keep contacting the server
often(say 1 sec) and check for new messages or what else do I have to
do? How do other chat services like yahoo (in browser) manage to do
it? The other question is that how do I notify user1 when user2 has
just entered a message for user1? (This is just like the Gtalk in
gmail, when someone enters a message it shows up, how does that
happen?) Any tricks? Please answer me, I am working on building this
application.

#942 From: Vijay Srinivas <vijay_srini_2000@...>
Date: Wed Jan 16, 2008 4:02 am
Subject: Re: Imagemagick with magick wand for great profisonals
vijay_srini_...
Send Email Send Email
 
Dear Satvir Singh,
You will have to check for the documentation, to which
library function does Newmagickwand belong. Then, open
the php.ini file, and uncomment the required register
command. EG if it is mentioned as
;register xyz
then remove the semi colon from the starting. Then
reload, the Apache and try running it again.
Bye for now.
Vijay
--- satvirsingh_sss <satvirsingh_sss@...> wrote:

> hi friends,
>
>  i configure the lamp on linux after make lamp i
> configure the
> magickwand for imagemagick but its not run after
> rebuild the configure
>
>  i call NewmagickWand function on php page but its
> give error
>
> Call to undefined function: newmagickwand() in
> /usr/local/apache/htdocs/m1.php on line 8
>
>   its not take  newmagickwand() function i dont know
> why this error
> come if magick wand is configured
>
>  any body know why this error come, or whts step to
> right configure
> the  magickwand on lamp
> during php configure magickwanmd is  configure
> aftre configure lamp then configure magicwand
>
>
>
>
>



      
________________________________________________________________________________\
____
Never miss a thing.  Make Yahoo your home page.
http://www.yahoo.com/r/hs

#943 From: "Amit Rana" <amitrana77@...>
Date: Wed Jan 16, 2008 11:57 am
Subject: Re: PHP Meet update
amitrana77
Send Email Send Email
 
> it you can see it at http://yerra.trinadh.googlepages.com/
phpsessions.html
Good list, is there a way for others to change it? If no, shall we
use a wiki? I am not aware of any free wiki hosting sites if there
are none we are happy to host it on our servers. Comments?

Other topics:
- Creating pages that work both on web and mobile - Ankur
- Frameworks and symfony - Ved/Avidnyat/Amit
- Writing automated test cases (may be lime or phpunit?)

I would also like to gather ideas for code marathon. May be we can
start with creating some 'common component' that every uses. I am
sure really common ones would already be available online.
- Template based email sending with special attention to debugging
and i18n

I will start another thread or create a page on wiki for deciding
next meetup date.

comments are welcome

Regards,
Amit.

--- In bang-phpug@yahoogroups.com,
"thisistrinath" <thisistrinath@...> wrote:
>
> Nice to know that the meeting has taken place, humble it might have
> been, but it has started which is good. I cannot attend them
because I
> live in NYC. As for hosting things like tutorials etc. Its a good
> thought and you can use googlepages.com for free hosting. And as for
> topics on meetings, I wrote a list few days back, if you haven't
seen
> it you can see it at http://yerra.trinadh.googlepages.com/
phpsessions.html
>

#944 From: "thisistrinath" <thisistrinath@...>
Date: Mon Jan 21, 2008 1:46 am
Subject: Re: PHP Meet update
thisistrinath
Send Email Send Email
 
Hello Friends,
         Last time I was asked that if the list provided by me on PHP
topics is wiki enabled? Now I have created our own wikispace at
http://bang-phpug.wikispaces.com/
To avoid spam, I have kept it to protective mode meaning only members
can edit it. So whoever wants to join the wiki can do so by giving me
their email id. Here its a great place for us to create our own
tutorials and discussions.

Messages 915 - 944 of 1863   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help