Search found 27 matches

by fendtele83
Wed Jan 03, 2007 12:21 pm
Forum: Linux
Topic: Remote Server Administration
Replies: 13
Views: 5407

thanks for the help, my boss just gave me word that we're going with webmin, do you guys have any experience with it?
by fendtele83
Wed Jan 03, 2007 11:23 am
Forum: Linux
Topic: Remote Server Administration
Replies: 13
Views: 5407

yea, cpanel and plesk and directadmin are all really intrusive to the linux operating system and takes everything you learn about the structure of the system and throws it out the window... plus they are mostly for reselling of hosting... i'm looking for something that will help me administer a serv...
by fendtele83
Wed Jan 03, 2007 11:18 am
Forum: Linux
Topic: Remote Server Administration
Replies: 13
Views: 5407

i'm going to be doing most of the administration and that i can do with ssh command line... but other people i'm working with aren't as savvy... they want something GUI and easier to learn than the command line... Basically everything webmin can do is what i'm looking for... this article summarizes ...
by fendtele83
Wed Jan 03, 2007 11:12 am
Forum: Linux
Topic: Remote Server Administration
Replies: 13
Views: 5407

thanks, but i should've been more specific in my original post... i know about those 3, but i'm looking for something GUI and web browser based... something just like this: http://www.webmin.com/ but i need to know of some more like this.
by fendtele83
Wed Jan 03, 2007 11:03 am
Forum: Linux
Topic: Remote Server Administration
Replies: 13
Views: 5407

Remote Server Administration

Does anyone know of any good remote server administration programs for RHEL 3.0 that can be accessed via the web?
by fendtele83
Wed Dec 27, 2006 9:51 am
Forum: PHP - Code
Topic: [SOLVED] Installing PECL Packages
Replies: 1
Views: 591

nevermind, figured it out...

had to run the command from the directory the command was in: /usr/local/php5/bin/pecl install blabla
by fendtele83
Wed Dec 27, 2006 9:35 am
Forum: PHP - Code
Topic: [SOLVED] Installing PECL Packages
Replies: 1
Views: 591

[SOLVED] Installing PECL Packages

i need to install APC on my computer locally. I'm running mac os x 10.4.8. How can i install PECL packages?

if i type in the cmmand line pecl install packageName it says - # csh: pecl: Command not found.

What am i doing wrong? Am i retarded?
by fendtele83
Thu Dec 21, 2006 2:35 pm
Forum: General Discussion
Topic: Default PHP 5 Extensions
Replies: 2
Views: 670

Default PHP 5 Extensions

Where can i find a place that lists the default extensions that ship with PHP 5????

I've googled it, i've looked all over php.net and zend.com, maybe im an idiot... but does anyone know where i can find this info?
by fendtele83
Wed Sep 13, 2006 2:39 pm
Forum: Installation and Configuration
Topic: command line mac os x
Replies: 1
Views: 1376

command line mac os x

Ok... so a while back i upgraded to PHP 5 on my 17" G4 Powerbook running OS X v.10.4.7. Apache recognizes that i'm using the new version of PHP but the rest of my computer doesnt. What i mean, is that using php in the command line, it still uses php v4. If i run the command php -v i get: PHP 4....
by fendtele83
Mon Sep 04, 2006 7:52 pm
Forum: Volunteer Work
Topic: Web 2.0 Project - Partner Neeeded
Replies: 1
Views: 2051

Web 2.0 Project - Partner Neeeded

I'm a developer looking for another developer to work on a web 2.0 project. I have a lot of ideas, and i'm looking for someone who has ideas of their own. We can collaborate and develop the next web app that will make us lots of money. I've been writing PHP for 5 years, and i'm an advocate of web st...
by fendtele83
Tue May 23, 2006 12:55 pm
Forum: PHP - Security
Topic: Secure mp3 Download app
Replies: 3
Views: 3223

Secure mp3 Download app

I'm going to be working on a project where thousands of users will be purchasing a CD online and then downloading the songs as mp3s. What is the best, most secure way to allow access to the mp3 files to the user once the transaction has been processed? Are there any 3rd party applications that take ...
by fendtele83
Sat Jan 14, 2006 2:13 pm
Forum: PHP - Code
Topic: Code error, can someone help?
Replies: 13
Views: 1242

maybe i'm wrong... but it works fine for what I'm doing...
by fendtele83
Fri Jan 13, 2006 3:10 pm
Forum: PHP - Code
Topic: sorting multidimensional array
Replies: 9
Views: 1103

Code: Select all

foreach($info_array as $key=>$properties)
  {
    $sort_array[$key] = $properties['start_date'];
  }

print_r(array_multisort($sort_array,SORT_DESC,SORT_NUMERIC,$info_array));
returns : 1

not the array...
by fendtele83
Fri Jan 13, 2006 3:07 pm
Forum: PHP - Code
Topic: Code error, can someone help?
Replies: 13
Views: 1242

Code: Select all

@mysql_query($query) or die(customErrFunc())
would allow you to customize the error message
by fendtele83
Fri Jan 13, 2006 12:57 pm
Forum: PHP - Code
Topic: Code error, can someone help?
Replies: 13
Views: 1242

i've seen this a lot in php books, especially by Apress... i think what they're trying to do is get people to develope they're own way of error reporting, rather than relying on apache to do it for them.