RE: [PHP] Template engine that doesn't rely on PEAR?

2006-01-15 Thread Erin Fortenberry
 -Original Message-
 Cc: php-general@lists.php.net
 Subject: Re: [PHP] Template engine that doesn't rely on PEAR?
 
 Maybe Smarty? Don't know if it depends on PEAR.
 
 http://smarty.php.net


I have used tiny but strong before... It is a lighter weight template system
then Smarty.

 http://tinybutstrong.com/



-Erin

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



RE: [PHP] what does this mean? (PHP 4 = 4.0.1, PHP 5)

2006-01-09 Thread Erin Fortenberry
= is greater or equal to

-Erin
 

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Monday, January 09, 2006 9:13 PM
 To: php-general@lists.php.net
 Subject: [PHP] what does this mean? (PHP 4 = 4.0.1, PHP 5)
 
 I'm trying to understand function definitions and can't seem 
 to find any reference to the meaning of (PHP 4 = 4.0.1, PHP 
 5) or variations there of, shown at the beginning of each 
 definition. I get the idea it is telling me that the 
 particular function is supported in PHP 4  5. But what does 
 the = mean? Also what is this line of the definition called 
 (i.e. version support, edited ???)
 
 thanks,
 cw 
 
 --
 PHP General Mailing List (http://www.php.net/) To 
 unsubscribe, visit: http://www.php.net/unsub.php
 
 

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



RE: [PHP] Hi!

2005-12-20 Thread Erin Fortenberry
It does't look like PHP is setup in Apache.

You should have a line that looks something like this;

And some others that look like this;

AddType application/x-httpd-php .php
AddType application/x-httpd-php .inc
AddType application/x-httpd-php-source .phps


Check out your apache config file.

-Erin


 Hi!
 
 Using a Win 2000 WS (work station), I'm trying to write the first PHP
 page as shown at http://il2.php.net/manual/en/tutorial.firstpage.php.
 
 The server is a Netware (Novell) 6.5 running Apache, PHP  MySQL all 3
 on same server but different volumes. 
 
 
 I created the file named hello.php by copying and pasting the following
 text to notepad and put it in my web server root directory I:\HTDocs: 
 
 Example 2-1. Our first PHP script: hello.phphtml: 
 head
  titlePHP Test/title
 /head
 body
 ?php echo 'pHello World/p'; ?
 /body
 /html
 
 
 When I am accessing the site with IE browser at the
 http://www.kalmanovitz.co.il/hello.php URL address I can see a blank
 page.
 The other pages are shown correctly.
 
 Any Idea how to fix it and continue with the tutorial?
 
 TIA
 
 Nanu
 
 
 
 
 
 
 
 
 


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

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



RE: [PHP] nexcess.net

2005-12-19 Thread Erin Fortenberry
I think this is what he means;

http://www.nexcess.net/ 


I can say, using their Interworx product, that they have GREAT support. I
have never used their hosting.


-Erin
 

 -Original Message-
 From: Jay Blanchard [mailto:[EMAIL PROTECTED] 
 Sent: Monday, December 19, 2005 12:52 PM
 To: 'Miles Thompson'; php-general@lists.php.net
 Subject: RE: [PHP] nexcess.net
 
 [snip]
 Anyone using nexecess.net, and have an opinion pro or con?
 [/snip]
 
 Con -- the page cannot be displayed
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

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



RE: [PHP] PHP errors in Apache error logs

2005-12-19 Thread Erin Fortenberry
It looks to me like the function session_save_path() does not exist.

You might look and see if Group Office supports PHP 5.1.x, you might have to
go back to an earlier version.


-Erin


 -Original Message-
 From: Jose Borquez [mailto:[EMAIL PROTECTED] 
 Sent: Monday, December 19, 2005 2:13 PM
 To: PHP Questions Lists
 Subject: [PHP] PHP errors in Apache error logs
 
 I am attempting to configure Group Office which is a Project 
 Management 
 suite on FreeBSD 5.4 with apache+mod_ssl-1.3.34+2.8.25_1, 
 MySQL 5.0.16, 
 PHP5-MySQL 5.1.1, and PHP5.1.1 and I keep getting the following error 
 messages in my error logs when I attempt to open a php page:
 
 [Mon Dec 19 10:37:36 2005] [error] PHP Fatal error:  Call to 
 undefined 
 function
 session_save_path() in 
 /usr/local/www/groupoffice-com-2.14-FINAL-4/Group-Office.
 php on line 792
 /usr/local/www/groupoffice-com-2.14-FINAL-4/Group-Office.php(792) : 
 Fatal error
 - Call to undefined function session_save_path()
 
 Could someone please give me any ideas as to what the problem 
 is?  Any 
 help would be greatly appreciated.
 
 Thanks in advance,
 Jose
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

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



RE: [PHP] PHP errors in Apache error logs

2005-12-19 Thread Erin Fortenberry
You also might try;

http://www.group-office.com/forum/

They have had several people asl about the same error.


-Ein


 -Original Message-
 From: Erin Fortenberry 
 Sent: Monday, December 19, 2005 2:23 PM
 To: Jose Borquez; PHP Questions Lists
 Subject: RE: [PHP] PHP errors in Apache error logs
 
 It looks to me like the function session_save_path() does not exist.
 
 You might look and see if Group Office supports PHP 5.1.x, 
 you might have to go back to an earlier version.
 
 
 -Erin
 
 
  -Original Message-
  From: Jose Borquez [mailto:[EMAIL PROTECTED] 
  Sent: Monday, December 19, 2005 2:13 PM
  To: PHP Questions Lists
  Subject: [PHP] PHP errors in Apache error logs
  
  I am attempting to configure Group Office which is a Project 
  Management 
  suite on FreeBSD 5.4 with apache+mod_ssl-1.3.34+2.8.25_1, 
  MySQL 5.0.16, 
  PHP5-MySQL 5.1.1, and PHP5.1.1 and I keep getting the 
 following error 
  messages in my error logs when I attempt to open a php page:
  
  [Mon Dec 19 10:37:36 2005] [error] PHP Fatal error:  Call to 
  undefined 
  function
  session_save_path() in 
  /usr/local/www/groupoffice-com-2.14-FINAL-4/Group-Office.
  php on line 792
  /usr/local/www/groupoffice-com-2.14-FINAL-4/Group-Office.php(792) : 
  Fatal error
  - Call to undefined function session_save_path()
  
  Could someone please give me any ideas as to what the problem 
  is?  Any 
  help would be greatly appreciated.
  
  Thanks in advance,
  Jose
  
  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
  
  
 

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