[PHP] Re: Migration to PHP5

2005-12-06 Thread Amir Mohammad Saied

Hi,
I think for someone like you that's a Java developer, php4 seems crap 
when OO programming comes to mind.
If you are going to write products that should be hosted on vary 
features (e.g one with php5, the other 4.4 and someother 4.3) I suggest 
you to use 4.3 and take care about some notes, but if you know your 
customers and like the OO advantages of php5, why not migrate?


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



[PHP] Re: Debuggers on Windows Servers

2005-12-06 Thread Amir Mohammad Saied

Mark Steudel wrote:

Anyone out there running debuggers and profilers on your windows boxes? I'd
like to start profiling some of my code and use some debuggers. Since we
have dev sites on the same box with product sites, I wanted to make sure
that before I ask our Sysadmin to install anything that they are stable and
easy to install. Any suggetsions out there? Ones that I have run across,
xdebug, DBG, Advanced PHP Debugger.

 


Thanks, Mark



Hi,
It's possible to get the source-codes of that extensions and compile 
them, but http://pecl4win.php.net/ is a good repository for DLL compiled 
files for the extensions you want, like APD


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



[PHP] Installing APD

2005-09-09 Thread Amir Mohammad Saied

Hi there!

I'm trying to upgrade my APD from 0.4p2 to 0.9.2, but when pear want to 
install it, i get the error that "phpize" command not found, i have 
installed the php4-dev package in my Ubuntu 5.0.4,

I'm on PHP 4.3.10, Apache 2.0 and my PEAR version is 1.3.2.

Even any link will be a lot helpful...

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



Re: [PHP] searching multiple fields

2005-07-14 Thread Amir Mohammad Saied

Brent Baisley wrote:
Sounds like you want to use full text indexing. Create one full text  
index spanning name, area, organisation. Then search on all three  
fields at once.
SELECT * FROM sheet1 MATCH(name,area,organisation) AGAINST ('textstring* 
otherstring* etc*). The * means use LIKE searching.  There are a bunch 
of other options you can use and also limitations.  Read the manual for 
all the details.



On Jul 14, 2005, at 4:37 AM, Ross wrote:


Just to remember!
this method works just with MyISAM table types.

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



[PHP] APD Problem

2005-06-27 Thread Amir Mohammad Saied

Help!
I have installed the APD, but when i want to execute a page to have it's 
 pprof.id in the apd.dumpdir for checking it by pprofp the execution 
terminate with this fatal error (for example):


Fatal error: apd_set_pprof_trace() failed to open 
/tmp/traces/pprof.07084 for tracing in /var/www/apd.php on line 2


APD is installed correctly (from it's outputs in phpinfo()) and i have 
set the apd.dumpdir to /tmp/traces.


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



[PHP] Re: php forum and (almost certainly 0T) client editor

2005-05-31 Thread Amir Mohammad Saied

For your 2nd question, try kupu
http://kupu.oscom.org/
It really rocks!

--
http://www.iranamp.com

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



[PHP] RE

2005-05-16 Thread Amir Mohammad Saied
Those attributes is just when you use from some functions like 
highlight_file() and highlight_string() functions!

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


[PHP] Re: PHP-GTK, or something else, for desktop app development?

2005-05-16 Thread Amir Mohammad Saied
[pardon me for my poor english]
What you want to do?
If you just want to be a desktop applications programmer, i dont think 
learning PHP-GTK be a good way to produce them (learning a language like 
PHP that is specialized in web environment for desktop programming colud 
not be a good idea) but if you want to be a web programmer too, it's 
here you could use PHP-GTK with the most TRUST!

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


[PHP] Re: Posts taking over an hour to be displayed

2005-05-12 Thread Amir Mohammad Saied
No!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: Bug, erreurs ou non =?ISO-8859-1?Q?document=E9?=

2005-05-04 Thread Amir Mohammad Saied
[EMAIL PROTECTED] wrote:
Bonjour,
J'utilise php en profondeur depuis peu.
Je viens d'utiliser les fonctions sur les fichier tel que is_file(), is_dir() ou
encore file_exists().
J'obtiens des résultat qui ne correspondent pas à la documentation.
Apparement la longueur de chaîne influe sur le résultat obtenu.
En effet voici le test simple que j'ai effectuer :
$file =
"\\\srvdfs00\\partages\\0-50\\M7\\05_APValidation\\Forfait_Entreprise_Chaîne_de_Valeur";
echo "len : " . strlen($file) ."";
echo "file : " . $file . "";
if (is_dir($file)) {
echo "false";
} else {
echo "true";
}
echo "";
$file =
"\\\srvdfs00\\partages\\0-50\\M7\\05_APValidation\\Forfait_Entreprise_Chaîne_de_Valeur\\Entreprise";
echo "len : " . strlen($file) ."";
echo "file : " . $file . "";
if (is_dir($file)) {
echo "false";
} else {
echo "true";
}
echo "";
Voici le résultat :
len : 83
file :
\\srvdfs00\partages\0-50\M7\05_APValidation\Forfait_Entreprise_Chaîne_de_Valeur
false
len : 94
file :
\\srvdfs00\partages\0-50\M7\05_APValidation\Forfait_Entreprise_Chaîne_de_Valeur\Entreprise
true

Il est evident que j'ai tester les 2 repertoires dans un explorateur windows et
que les chemins sont les bons.
Je suis sous NT et le partage réseau doit surement être sous windows
Merci de votre réponse.
Jérémy Hennegrave (Pour Bouygues Telecom)
Here is an english newsgroup, please ask your question in english, or go 
to your language sections

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


[PHP] Show data in two columns

2005-04-26 Thread Amir Mohammad Saied
Hi,
i want to extract the data from my DB (it's an articles database) and 
want to show them in 2 columns way, like zend.com's articles section,
could any one help me?

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


[PHP] Re: A question

2005-04-16 Thread Amir Mohammad Saied
phpinfo()
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: pixels per character

2005-04-14 Thread Amir Mohammad Saied
We have to kinds of fonts,
One the fonts that size of all thier characters are equal such as 
Courier, but in the other fonts etc. (Verdana) all of characters haven't 
an equal width

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


[PHP] mod_rewrite from .htaccess

2005-04-12 Thread Amir Mohammad Saied
I want to use mod_rewrite patterns, but i have not access to the 
httpd.conf so i think i should use .htaccess, but the patterns don't 
work properly there, have my admin should set any settings in the 
httpd.conf?

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