[PHP] Re: need to find a way to remove similar keys

2002-08-25 Thread electroteque
never mind SELECT DISTINCT u.user_name, u.email, p.userID FROM user u LEFT JOIN photos p on p.userID=u.user_id WHERE p.galleryID='$galleryID' heh "Electroteque" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi i am tr

[PHP] Re: GD lib. image quality!

2002-08-25 Thread electroteque
its not a gd 2 issue , i cant even get gd2 to compile with php 4.2.2, no idea why i've installed gd2 fine imageJpeg($thumbnail, $targetPath."/".$thumbNamePrefix."_thumb.jpg",100); that'll give it a quality of 100 , even still i notice its pretty bad , i need to use the bicubicresampled gd2 funct

[PHP] imagecreatetruecolor is slow

2002-09-02 Thread electroteque
hi i have compared imagecreatetruecolor,imagecopyresampled to imagecreate,imagecopyresized and it is really slow, anyway of optimising this ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] limit in a loop function to prevent server load

2002-09-03 Thread electroteque
hi there i was wondering if there was a way to limit the ammount of items in a loop to execute sleep then execute the rest of the items to prevent server load ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] progress bar for a server side process

2002-09-03 Thread electroteque
hi there i have created a script to regenerate thumbnails for a photo gallery , i have changed my code to use gd true color although it takes forever now , i have it generating 20 at a time then doing the rest but still takes forever , i know its impossible to generate a true progress bar for imag

[PHP] ebay auction manager

2002-09-04 Thread electroteque
hi tough question but is there any way to port to ebay and manage and list the auctions remotely in php? i've seen heaps of software and websites that can do it -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] ebay management and auction listings using php

2002-09-04 Thread electroteque
hi tough question but is there any way to port to ebay and manage and list the auctions remotely in php? i've seen heaps of software and websites that can do it -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Currency Exchange and Weather

2002-09-05 Thread electroteque
oanda www.oanda.com had a service where you could socket into it , that is now not free but they still have a free email service which i parse the information out of the email and add it to a currency table in the database which is run via a daily cron job "Justin French" <[EMAIL PROTECTED]> wrot

[PHP] passing error code vars

2002-09-05 Thread electroteque
hi there i am trying to pass error code vars within a page say i post to a query string like ?action=upload i would like to be able to send an error code if any back to the page and then it can bring it up the only way i can think of it when i redirect back to the previous page is adding a ?errorc

[PHP] dynamic screencapture using gd

2002-09-05 Thread electroteque
is there a way to do a dynamic screen capture of a website using gd ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] dynamic screencapture using gd

2002-09-05 Thread electroteque
resolved. > > You could probably automate a large amount of it with Applescript (Mac, or > equiv. PC scripting) and Photoshop's actions (macros)... but someone has > prolly got a better solution that they've thought thru :) > > > Justin > > > > > on 06/09

[PHP] Re: progress bar for a server side process

2002-09-05 Thread electroteque
i've soughted out a solution with flash :) http://electroteque.dyndns.org:1023/demo/uploader/ except it adds the html output above the html do most browsers support this ? "Richard Lynch" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > >hi there i have created a script to regen

Re: [PHP] Upload Progress

2002-09-10 Thread electroteque
http://electroteque.dyndns.org:1023/demo/uploader/ following my other posts i have a working flash progress bar , although i cannot remove the empty arrays in the count how can i remove empty arrays in an array , the empty file inputs seem to still contain something , so instead of 1 as the count

[PHP] checking if an array is empty

2002-09-21 Thread electroteque
how can i check if an array is currently empty , for instance i have a file input field with an array name for multiple images, i need to check if there was no file uploaded in that field name and ignore it in the loop -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] checking if an array is empty

2002-09-21 Thread electroteque
thats the thing , the word Array is what it returns even though there was no input file. "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Sun, 22 Sep 2002 01:13:08 +1000, you wrote: >how can i check if an array is currently empty , for instance

[PHP] ob_end_clean and header redirecting

2002-09-21 Thread electroteque
function return_exit() { if (EXIT_AFTER_REDIRECT == 1) { return exit(); } } // Redirect to another page or site function redirect($url) { header('Location: ' . $url); return_exit(); } ob_start(); echo ""; ob_end_flush(); ob_end_clean(); redirect($PHP_SELF); here is

RE: [PHP] checking if an array is empty

2002-09-21 Thread electroteque
yeh wicked thanks -Original Message- From: Michael Sims [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 22, 2002 11:48 AM To: [EMAIL PROTECTED] Cc: electroteque Subject: Re: [PHP] checking if an array is empty On Sun, 22 Sep 2002 11:09:16 +1000, you wrote: >thats the thing ,

[PHP] error compiling apache2 on cobalt libgdbm error

2002-09-24 Thread electroteque
libtool: link: warning: library `/usr/lib/libgdbm.la' was moved. libtool: link: warning: library `/usr/lib/libgdbm.la' was moved. make[1]: Leaving directory `/home/src/httpd-2.0.40' what could be the problem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

Re: [PHP] error compiling apache2 on cobalt libgdbm error

2002-09-24 Thread electroteque
ork mode (or simply stick with Apache 1.3). But what does this have > to do with PHP? > > On Tue, 24 Sep 2002, electroteque wrote: > > > libtool: link: warning: library `/usr/lib/libgdbm.la' was moved. > > libtool: link: warning: library `/usr/lib/libgdbm.la' w

[PHP] general apache list

2002-09-30 Thread electroteque
where can i find it ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: general apache list

2002-09-30 Thread electroteque
essage > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Lots of ways. Perhaps, > > > > 1. You can try finding one on the Apache website. ;) > > 2. Try Google. Or, > > 3. You can try here: > > > > http://httpd.apache.org/userslist.htm

[PHP] tricky gd question

2002-10-01 Thread electroteque
here is a tricky question, i have created a photo gallery script where i can edit the photo and gammacorrect the photos, at the moment i post the gamma value and refreshes the resized preview image , what i'd like to do is be able to have a before and after preview so half the image is the normal

[PHP] Re: tricky gd question

2002-10-01 Thread electroteque
ECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Have a look at ImageCopy in the manual. > > HTH > > Mike > > > "Electroteque" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... &

[PHP] private and public in class objects

2002-10-10 Thread electroteque
hi i was wondering when this was or is going to be implemented into class objects ? i have the syntax for it ie setting a private function _function() and private var $_var, it doesnt seem to be working in PHP 4.2.2 ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

[PHP] mysql stored procedures

2002-10-11 Thread electroteque
when is this being implemented ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: private and public in class objects

2002-10-11 Thread electroteque
can anyone answer this ? "Electroteque" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi i was wondering when this was or is going to be implemented into class > objects ? i have the syntax for it ie setting a private function

RE: [PHP] mysql stored procedures

2002-10-11 Thread electroteque
it has 4.1 down here i'm upgrading to 4.04 Pro beta to check it out -Original Message- From: Jon Haworth [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 12, 2002 1:09 AM To: 'electroteque'; [EMAIL PROTECTED] Subject: RE: [PHP] mysql stored procedures Hi, >

[PHP] mysql list

2002-11-06 Thread electroteque
if anyone is on the mysql list why do i keep getting this , i can post anything dammit Your message cannot be posted because it appears to be either spam or simply off topic to our filter. To bypass the filter you must include one of the following words in your message: sql,query If you just

[PHP] php 4.3r2 and directive overrides

2002-11-08 Thread electroteque
hi since i upgraded to php 4.3 this doesnt seem to work , was doing my head in php_value register_globals Off php_value track_vars On php_value arg_separator.output "&" php_value arg_separator.input "&" i have this set in htaccess tried in httpd.conf aswell , have Allowoverrides All selected, wh

Re: [PHP] Installation Kit

2002-11-08 Thread electroteque
yes there is a way to use bind to setup a local domain that only class c network can see, or just use www.dyndns.org "Stephen" <[EMAIL PROTECTED]> wrote in message news:004301c28771$8aa50540$0200a8c0@;melchior... > I'm running Windows XP Pro with a firewall on the LAN so I'm not sure you > can, le

[PHP] upload whole direcotry using ftp functions

2002-11-09 Thread electroteque
hi i was wondering if there was anyway to upload a whole directory using the php ftp functions rather than single files ?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: upload whole direcotry using ftp functions

2002-11-10 Thread electroteque
was this an answer or a question ? "Akhil Kodali" <[EMAIL PROTECTED]> wrote in message news:Pine.LNX.4.44.0211091958120.10474-10@;gdit.iiit.net... > Hi, > > I there anyway to upload entire directory. > > -- > AKHIL K > 200101009 > Room No. 15 > BH-2 > IIIT > ---

Re: [PHP] php5 features?

2002-11-10 Thread electroteque
well i read somewhere that the zend 2 engine was coming out in 4.3 which had proper OO capabilities including public and private and maybe even error exeption handlers but doesnt look good might have to wait a little longer in the mean time i'm starting to get my head around tomcat .. "Maxim Malet

Re: [PHP] Re: upload whole direcotry using ftp functions

2002-11-10 Thread electroteque
e to > uncompress on the server, which is possible for SOME compression types. > > > Justin > > > on 10/11/02 7:30 PM, AKHIL KODALI ([EMAIL PROTECTED]) wrote: > > > > > > > Its a question. > > I want to know if there is any method to upload a dir

[PHP] post files array and registered globals off

2002-11-17 Thread electroteque
hi i need to do a foreach on post files array ie _REQUEST['photo'] or _POST['photo'] doesnt work only _FILES['photo'] works and if i do a foreach on this it gets the 5 associated array values for it not on the input value array ? say i had 2 input files i should get a count of 2 not 5 :| --

[PHP] unlink and directory ownership

2002-11-17 Thread electroteque
hi guys , having permission denied errors trying to access a directory created via ftp , when i create a directory ftp it has my login username and my group where the apache server group and user is different and cant seem to have writable access to it :|, its chmodded to 777 so no idea -- PHP

[PHP] preg_replace question

2002-11-20 Thread electroteque
how could i remove http://www. ot of a url string sing preg_replace ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to: If($var != '#' OR '#')

2002-11-20 Thread electroteque
add to that i'd do this if ($_GET['sc'] !== '2' || $_GET['sc'] !== 8) { for me single equals seem to assign the variable with the value double equals seem to check the variable for the value "Jonathan Wright" <[EMAIL PROTECTED]> wrote in message 20021120184141.GA12806@chef">news:20021120184141.G

[PHP] Anti Spam software

2002-11-20 Thread electroteque
anyone know of any good anti spam software for linux ?? and maybe be able to monitor it with php ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] getting image names from a directoryindex of files

2002-11-22 Thread electroteque
hi i have fopen a directory of files and got the directoryindex as follows IMG_0005.jpg19-Nov-2002 18:18 180K IMG_0009.jpg19-Nov-2002 18:18 248K IMG_0010.jpg19-Nov-2002 18:18 373K IMG_0011.jpg19-Nov-2002 18:18 236K IMG_0012.jpg1

[PHP] populating list menus with mysql and for statements

2002-06-09 Thread electroteque
hi i am populating a list menu with mysql , i would like to find a way to populate a form with more than one of the same list menus in a for loop fetchRow(DB_FETCHMODE_ASSOC)) { $typeID=$sample["typeID"]; $description=$sample["description"]; $sample_type[$sample['typeID

[PHP] recursive menus

2002-06-25 Thread electroteque
hi i have been trying to sought out a recursive hierarchical menu populated from mysql how is this possible ? i have tried this but doesnt work $result = $db->query("SELECT * FROM mainsection ms LEFT JOIN subsections ss ON ms.sectionID=ss.mainsectionID ORDER BY ms.sectionID,ss.subsectionID"); w

[PHP] php 4.2.1 compilation errors with apache 2.0

2002-07-17 Thread electroteque
hi guys i am getting this message when trying to compile php 4.2.1 with apache 2.0 os.h: No such file or directory , there is a missing file, i tried a symlink to /os/unix/os.h but still didnt work ?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

RE: [PHP] mysql Pattern Matching

2003-09-04 Thread electroteque
i'm doin this offlist -Original Message- From: Ralph Guzman [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 10:23 PM To: PHP General Mailing List Subject: [PHP] mysql Pattern Matching I know this question is best for the mySQL mailing list, but I am unable to subscribe to th

RE: [PHP] Re: PHP code generation

2003-09-06 Thread electroteque
what is the whole point of it again ? and how do they do this ?? http://www.meta-language.net/screenshots.html -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED] Sent: Sunday, September 07, 2003 12:48 PM To: Chris Hubbard Cc: [EMAIL PROTECTED] Php. Net Subject: [PHP] Re: PHP

[PHP] gforge

2003-09-09 Thread electroteque
anyone managed to get gforge working with mysql at all ? sorry if this might be off topic but i found the link off this list, let me know thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] what PHP really needs

2004-01-25 Thread electroteque
A database server by nature must assume that all data is equally mutable. An application developer, however, knows by design how "fresh" any one piece of data needs to be and can cache accordingly. E.g., don't hit the database for your site's navigational structure or news articles every single t

RE: [PHP] Re: XSL

2004-01-26 Thread electroteque
ok obviously you would need to store the content in the database, how else can you make it easy to edit for a user ? -Original Message- From: Aidan Lister [mailto:[EMAIL PROTECTED] Sent: Monday, January 26, 2004 12:50 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: XSL I'll tell you the

[PHP] mysqli

2004-04-10 Thread electroteque
bloody excellent, it has its own wrapper object, the prepared statements feature looks cool http://www.zend.com/php5/articles/php5-mysqli.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] cleaning up html output from php in apache

2004-04-10 Thread electroteque
Htmltidy ? > -Original Message- > From: Merlin [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 10, 2004 5:04 PM > To: [EMAIL PROTECTED] > Subject: [PHP] cleaning up html output from php in apache > > > Hi there, > > I am searching for a way to strip the white spaces from each > php ge

[PHP] error with curl and PHP5 compile

2004-04-10 Thread electroteque
Hi there i am getting a wierd error when trying to compile php5 with curl ext/curl/interface.lo /usr/share/src/php-5.0.0RC1/ext/curl/interface.c: In function `curl_free_post': /usr/share/src/php-5.0.0RC1/ext/curl/interface.c:655: warning: passing arg 1 of `curl_formfree' from incompatible pointer

[PHP] PHP5 and pear

2004-04-10 Thread electroteque
Pear does not seem to be actually in the sources for some reason [PEAR] XML_RPC: The following errors where found (use force option to install an yway): missing package name missing summary missing description missing license missing version missing release state missing release date missing relea

RE: [PHP] Re: PHP5 and pear

2004-04-10 Thread electroteque
a > pear install xml_rpc ? > > > > "Electroteque" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Pear does not seem to be actually in the sources for some reason > > > > [PEAR] XML_RPC: The following errors where found (use force option to > &

[PHP] PHP5 wont load into Apache

2004-04-14 Thread electroteque
Hi there I am running Apache 2 with PHP5 on solaris 9. I keep getting this error when I am loaded into my console xmlCanonicPath: referenced symbol not found , although apache boots up on startup without a hitch, is there a paths problem ? -- PHP General Mailing List (http://www.php.net/) To unsu

RE: [PHP] PHP5 wont load into Apache

2004-04-14 Thread electroteque
-with-expat=/opt/csw --with-iconv=/usr/local I've asked libxml2 to be from /opt/csw so no idea where it got /usr/lib from > -Original Message- > From: electroteque [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 14, 2004 10:43 PM > To: Php-General > Subject: [PHP]

RE: [PHP] PHP editor

2004-04-15 Thread electroteque
the htmlkit looks hot, although its licenced, work has a shitty copy of homesite 4 licences, i doubt i can convince them, i am using phpedit, although does it turn tabs into spaces ?? > -Original Message- > From: Arthur Radulescu [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 15, 2004 9

RE: [PHP] Finding Screen Size

2004-04-19 Thread electroteque
I dont want to start any flames, but there could be a possibility http://sharkysoft.com/tutorials/jsa/content/037.html > -Original Message- > From: I.A. Gray [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 20, 2004 6:36 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Finding Screen Size > >

RE: [PHP] Finding Screen Size

2004-04-19 Thread electroteque
actually this could also work http://www.faqts.com/knowledge_base/view.phtml/aid/131 > -Original Message- > From: electroteque [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 20, 2004 7:00 AM > To: I.A. Gray; [EMAIL PROTECTED] > Subject: RE: [PHP] Finding Screen Size &g

[PHP] objects in a session

2004-04-21 Thread electroteque
Hi there going back to the discussions of objects in a session. I would like to know what are the benifits of this, and in what scenarios would it be used. I have an application I am trying to make scalable if possible, it uses a sub class to a phplayers menu class which parses an xml file and gene

RE: [PHP] A to Z incremental

2004-04-23 Thread electroteque
use the chr($i) system > -Original Message- > From: Ford, Mike [LSS] [mailto:[EMAIL PROTECTED] > Sent: Friday, April 23, 2004 9:31 PM > To: 'Paul'; [EMAIL PROTECTED] > Subject: RE: [PHP] A to Z incremental > > > On 22 April 2004 15:22, Paul wrote: > > > Hi! > > Got this script: > > > > >

RE: [PHP] overloaded, overworked ereg statement?

2004-04-23 Thread electroteque
Isnt ereg meant to be slower than preg anyway ? > -Original Message- > From: Tim [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 24, 2004 2:02 PM > To: [EMAIL PROTECTED] > Subject: [PHP] overloaded, overworked ereg statement? > > > This script worked on one server, but started choking

[PHP] Batch/Prepared statements for Mysql in PHP

2004-04-30 Thread electroteque
I was wondering if there is any current API for creating match/prepare statements, therefore say i have a script to insert, update and insert in the same post, is there a way to reduce to many queries to the database to do it all in one hit ? Although i usually return the last inc id then add it to

RE: [PHP] Template Engine

2004-05-15 Thread electroteque
I use one called phemplate, dont be scared of the same its pretty good and follows the same ideology as the rest although check out the benchmark tool of other engines which is supplied on the site. http://pukomuko.esu.lt/phemplate/ I have been thinking of moving to smarty or i just wish there w

RE: [PHP] Release Announcement: Hardened-PHP 0.1.1

2004-05-15 Thread electroteque
please define a hastily written script ? if this is it i dont know anyone who would ever attempt this saying that anyone who codes with no security in mind should go back to school. But i'm sure it could be possible for maybe a web host to have something dodgy on there. -- PHP General Mailin

RE: [PHP] Re: PHP and qmail

2004-05-15 Thread electroteque
Could it not be you have to send the html document type in the header of the mail ? > -Original Message- > From: Manuel Lemos [mailto:[EMAIL PROTECTED] > Sent: Sunday, May 16, 2004 8:55 AM > To: Stephen Lake > Cc: [EMAIL PROTECTED] > Subject: [PHP] Re: PHP and qmail > > > Hello, > > On 05

[PHP] RSS/RDF generator

2004-05-21 Thread electroteque
Hi there, I was wondering if there is a standard pear class like the XML_Tree to build RSS/RDF documents from the database ? Let me know -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: RSS/RDF generator

2004-05-22 Thread electroteque
> > You just had to go to pear.php.net and type rss into the search form - not > too much effort, right? > http://pear.php.net/package/XML_RSS > > Regards, Torsten > Hi there, if you read my email properly "build RSS/RDF", not parse. Or is it something we have to hack up with XML_Tree ? -- PHP

[PHP] Sophisticated rss builder class

2004-06-03 Thread electroteque
Hi there, I am wanting to know if there is any good rss builder classes, that is similar to what the PEAR XML_Tree class can do. Sadly there is no pear rss builder out there, and the ones on PHP classes are dodgy. Please let me know thanks. -- PHP General Mailing List (http://www.php.net/) To uns

RE: [PHP] Re: search engine optimization and php

2004-06-08 Thread electroteque
On the topic of meta tags, can these be sent via the header or not ?? :\ > -Original Message- > From: Manuel Lemos [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 09, 2004 2:02 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Re: search engine optimization and php > > > Hello, > > On 06/0

[PHP] PHP Compiler - standalone

2004-06-08 Thread electroteque
Hi there silly question, I was wondering if there is such a php compiler available like javac to compile php classes into bytecode so they are native to the php module and dont need to be compiled, but without any extension like turk to make it work ? Unfortunately I want this functionality so the

RE: [PHP] Adding colours and borders for the excel sheet?

2004-06-09 Thread electroteque
have u looked at the pear excel spreadsheet writer ? one of the best things ever made IMHO > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 09, 2004 3:45 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: [PHP] Adding colours and b

RE: [PHP] Webyog releases SQLyog 3.71 & SJA 2.0

2004-06-10 Thread electroteque
> A php tool that converts code to binary This I would love to see .. > > WHO CARE`S? you are one of their customers, you might. If you > signed up for > their newsletter and you recieve their updates good > for you, the rest of us (most of us) do not care. Most (good) sites have a > newsletter

RE: [PHP] OOP methodology

2004-01-30 Thread electroteque
Here is my advice, check out the pear code, it will help you dearly get the grips of how to setup classes. IMHO i feel pear is a standard, i use most of the standard but i dont particularly write classes for pear but structure it similar, but am thinking of porting my error code around pear. Class

RE: [PHP] OOP methodology

2004-01-30 Thread electroteque
Yes i think java would be the best to learn proper OO, i've nevr done it, but coming the other way knowing php OO, java became more familiar to me, i'm gonna do it this year. With PHP5 coming out that all may change slightly. May i ask though, what is the point of a destructor and is it really goo

RE: [PHP] OOP methodology{O|T} kinda'

2004-01-30 Thread electroteque
Ok sorry, c++ then, yes thats another kettle of fish, i'm going to be doing some c++ to learn how to make vst plugins :D -Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 10:51 PM To: electroteque; [EMAIL PROTECTED] Subject: RE: [PHP

RE: [PHP] 3 variables not passing to function!!!????

2004-01-31 Thread electroteque
try setting them global as they are outside the function global $admin,$site,$lic etc .. -Original Message- From: Ryan A [mailto:[EMAIL PROTECTED] Sent: Sunday, February 01, 2004 2:07 PM To: [EMAIL PROTECTED] Subject: [PHP] 3 variables not passing to function!!! Hey, Am going nuts

[PHP] unsetting a session in ssl

2004-02-04 Thread electroteque
Hi there, i was wondering if there was a way to unset a http session when in https ? I dont particularly want to switch back to http and then get a exit ssl box in the browser before going to another page, how is it possible ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

RE: [PHP] CVS style project system

2004-02-06 Thread electroteque
Thats all good, i'd have to learn how to intergrate, also if i explained earlier, if its taken a year of lobbying for cvs on the dev box, i doubt its gonna go on the public machine. Also i never stored files as binary in the db only the filenames as varchar. 5.) I am of the camp that thinks st

RE: [PHP] CVS style project system

2004-02-06 Thread electroteque
I know you don't want to hear someone say use cvs so... Use viewcvs[1], or write your own version of it. You can put a database behind it, add descriptions to projects and/or folders to your database, whatever you want on top of cvs. You can even use cvsgrab[2] to download a repository from a

RE: [PHP] CVS style project system

2004-02-06 Thread electroteque
I know you don't want to hear someone say use cvs so... Use viewcvs[1], or write your own version of it. You can put a database behind it, add descriptions to projects and/or folders to your database, whatever you want on top of cvs. You can even use cvsgrab[2] to download a repository from a

RE: [PHP] checking users have the latest version of a file

2004-02-19 Thread electroteque
I was considering my only last options is diff and filesize, but then i was thinking say the latest file is a size of 1mb, the copy of the users machine is 2mb but is still not in sync with the latest copy then . sorry to trouble you about this, i would have intergrated php with cvs viewer, but thi

RE: [PHP] Re: PEAR DB 1.6.0 has been released

2004-02-19 Thread electroteque
unfortunately i tried mdb and it was totally unusable and badly documented, and to port pear db over to mdb was impossible, i find pear db ok, even adodb is cool, i had to build my own class specifically just for mysql with pretty good performance as no others could. -Original Message- Fro

RE: [PHP] Advice Needed

2004-02-20 Thread electroteque
Done, outside the webby is the goer, then i dont have to worry this the hassle of getting a simple allowovedrride rule in the fukn conf file, which has seem to be a simple process i could do but then a complicated process with all the politics :\ The server is dedicated work serve their own server

RE: [PHP] Upload and database

2004-02-20 Thread electroteque
Make it easier on yourself just store the filename dude -Original Message- From: Will [mailto:[EMAIL PROTECTED] Sent: Saturday, February 21, 2004 12:13 PM To: PHP General Subject: [PHP] Upload and database Hello all, I tried to search the archives and PHP.NET and did not find anything or

RE: [PHP] set global working??

2004-02-21 Thread electroteque
you can turn register globals off using htaccess, i dont have an example for you but that should fix it. -Original Message- From: Terry Romine [mailto:[EMAIL PROTECTED] Sent: Sunday, February 22, 2004 10:37 AM To: [EMAIL PROTECTED] Subject: [PHP] set global working?? Not quite a mystery,

RE: [PHP] ftp software

2004-02-22 Thread electroteque
www.smartftp.com -Original Message- From: Nathan McIntyre [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 8:37 AM To: [EMAIL PROTECTED] Subject: [PHP] ftp software Hello! I am new both to PHP and web dev, and I am wondering what ftp software would be best for me to use. -

[PHP] RE: Slightly off - was [PHP] ftp software

2004-02-22 Thread electroteque
-Original Message- From: electroteque [mailto:[EMAIL PROTECTED] Sent: Monday, February 23, 2004 12:19 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] ftp software www.smartftp.com Isnt it funny i assumed you were using windoze ? Unfortunately i had to port back to my XP machine which i

[PHP] PHP5 only configures mysql 4.1 source with mysqli

2004-02-28 Thread electroteque
Hi i dont know who to tell, please forward it on, I'm running Solaris 9, PHP5 only seems to configure mysql 4.1 using the mysqli, i tried the binary distribution and it complained about the wrong library version so i compiled the source and it was fine. Just letting people know, i also had to do a

RE: [PHP] PHP5 only configures mysql 4.1 source with mysqli

2004-02-28 Thread electroteque
1:21 AM To: electroteque Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP5 only configures mysql 4.1 source with mysqli Hi, Mysqli installation certainly isn't improved :-) i had a lot of trouble too, and shared my experience online at http://www.raditha.com/mysql/mysqli.php hope someone finds

RE: [PHP] Re: PHPdoc web interface

2004-02-29 Thread electroteque
nah man, i was asking if anyone has tried this, it is documenting php code right ?, i think so :D. I've alread tried him, all i get is RTFM, i think its a bug. -Original Message- From: Andre Cerqueira [mailto:[EMAIL PROTECTED] Sent: Sunday, February 29, 2004 7:36 PM To: [EMAIL PROTECTED] S

RE: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread electroteque
all i can think of here, you could be calling start_session twice in the same page ? also init set the session timeout to an hour or so -Original Message- From: Puiu Hrenciuc [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 10:13 PM To: [EMAIL PROTECTED] Subject: [PHP] Sessions, ses

[PHP] Problem compiling PHP5 with libconv

2004-03-05 Thread electroteque
hi there i am trying to build PHP5 on solaris 9, libiconv is stupidly set in /opt/csw/lib as that is where the package manage pkg-get puts it. I have set where to find libiconv but still not luck Here is my compile ./configure --with-apxs2=/usr/local/httpd/bin/apxs --without-mysql --with-my sqli=

RE: [PHP] PHP Sessions - Cookies Not Saving

2004-03-05 Thread electroteque
but it will > save on my Linux box. As sending cookies is pretty much a generic procedure which is not platform dependent it would suggest that your WinXP box is broken (needless to say I'm assuming that you have already ensured that your browser is configured to accept cookies). Have you trie

RE: [PHP] Let's start a php-advanced list!

2004-03-06 Thread electroteque
This has come up many times before and I really don't think it will work. Splitting advanced users from beginners means that there will be nobody to answer the beginner questions which means they will get posted to the advanced list where the people with the answers are. It is a self-defeating se

RE: [PHP] UK Bank Holidays 2

2004-03-06 Thread electroteque
> I know reposting like this is wrong but I was just trying to make a point. Which is? In most cases reposting at such a short time interval will only annoy a lot people. I think it was 4 hours apart, one at 7am another at 11am but still .. google first, ask list after. -- PHP General Mailin

[PHP] Am i dreaming or is the php frontpage broken ?

2004-03-06 Thread electroteque
8:45 pm EST, no content is showing in the middle ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Inconv in PHP5 compile

2004-03-11 Thread electroteque
Hi there, sorry to repost this,i am still trying after 2 weeks to try and get PHP5 installed on solaris 9, it looks like it will try and install domxml via default, i installed libxml with packages and i think libxml or php is trying to get to this link grep: can't open /usr/local/lib/libiconv.la

RE: [PHP] Apache Config: php_value "auto_prepend_file" & "auto_append_file"

2004-03-12 Thread electroteque
I've prob asked this before, when will it be possible to be able to use Apache2 ? I assumed as you said before it was because it was the "extensions" but are we saying now that libraries that php are compiled on are too not thread safe ? -Original Message- From: Rasmus Lerdorf [mailto:[EM

[PHP] Symbol reference problem with pspell in PHP5 compile

2004-03-18 Thread electroteque
Hi there, i have tried the phpinstall list with no luck i continually get this error on solaris for some strange reason, i had to install 2 totally seperate libiconv's so one could sit in /usr/local as php kept trying to look there, now i keep getting this error Undefined fir

RE: [PHP] Re: Methods for creating HTML with PHP

2004-03-25 Thread electroteque
I'm using this one with no problems, its actually quite fast http://pukomuko.esu.lt/phemplate/ there is a benchmark against smarty aswell, i was actually thinking of going the smarty path as so many php apps use it, what is the better of them , anyone using this class ? > -Original Message--

<    1   2   3   >