Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-13 Thread Jochem Maas

marvin hunkin wrote:

Hi.
yes did put the wp-Config.php file in the www folder in easy php 1-8, 


wp-config.php NOT wp-Config.php ??


but still get this error when trying to use the http://localhost/instal.php
so how do i get round this one?


ask the guys at wordpress I guess. we don't support specific application
installation on this list really.

oh and please don't post your questions directly at me unless:

a, I ask you to.
or b, I can bill you.

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



Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-13 Thread Anthony Ettinger
wtf is your username = localhost, and your password = root?

that's probably where you messed up ;-)



On 4/12/06, Jochem Maas [EMAIL PROTECTED] wrote:

 marvin hunkin wrote:
  Hi.
  yes did put the wp-Config.php file in the www folder in easy php 1-8,

 wp-config.php NOT wp-Config.php ??

  but still get this error when trying to use the
 http://localhost/instal.php
  so how do i get round this one?

 ask the guys at wordpress I guess. we don't support specific application
 installation on this list really.

 oh and please don't post your questions directly at me unless:

 a, I ask you to.
 or b, I can bill you.

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





--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html


Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-12 Thread Jochem Maas

marvin hunkin wrote:

Hi.
need to install word press version 2.0.


you need to eat|breath|sleep, but I don't think blogging consitutes a
pre-requisite to the continuation of life on this planet. ;-)

and now using easy php 1-8, and set up my my sql settings in the 
wpConfig.php file, and my username is localhost and the password is root.
when i try to load it in the browser, using http://localhost/install.php 
which i put in the www. folder of easy php 1-8, i get this error in the 
browser:



There doesn't seem to be a wp-config.php file. I need this before we can 



Wordpress asks for 'wp-config.php' and you keep mentioning 'wpConfig.php'.

might that be the problem? (note the 2 filenames are not the same) if not
check your placing the wp-config.php in the correct directory.

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



[PHP] Instalation Nightmares For Word Press Please Help

2006-04-11 Thread marvin hunkin

Hi.
need to install word press version 2.0.
and now using easy php 1-8, and set up my my sql settings in the 
wpConfig.php file, and my username is localhost and the password is root.
when i try to load it in the browser, using http://localhost/install.php 
which i put in the www. folder of easy php 1-8, i get this error in the 
browser:



There doesn't seem to be a wp-config.php file. I need this before we can get 
started. Need more help?

We got it.
You can
create a wp-config.php file through a web interface,
but this doesn't work for all server setups. The safest way is to manually 
create the file.


and will paste the code for the wpConfig.php file.

?php
// ** MySQL settings ** //
define('DB_NAME', 'wordpress');// The name of the database
define('DB_USER', 'localhost'); // Your MySQL username
define('DB_PASSWORD', 'root'); // ...and password
define('DB_HOST', 'localhost');// 99% chance you won't need to change 
this value


// You can have multiple installations in one database if you give each a 
unique prefix

$table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!

// Change this to localize WordPress.  A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 
'de'

// to enable German language support.
define ('WPLANG', '');

/* That's all, stop editing! Happy blogging. */

define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?
if any one has had nightmares trying to install this, and have tried several 
times, downloading, unzipping, into a folder called WordPress, copying and 
pasting in to easy php, can any one help me how to get it to the first 
install screen?

this one is driving me insane!
if any one has had the same problem, how did they get round this one?
let me know asap.
cheers Marvin.

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



Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-11 Thread Chris

marvin hunkin wrote:

Hi.
need to install word press version 2.0.


http://wordpress.org/support/


--
Postgresql  php tutorials
http://www.designmagick.com/

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



[PHP] Instalation problem

2006-03-30 Thread Mauricio Masias
I have a problem with PHP5,  I'm using Apache1.3  as web server in winXP SP2 
, y change the httpd file:


LoadModule php5_module C:/php/php5apache.dll
also
AddModule mod_php5.c
then
 IfModule mod_mime.c
 TypesConfig conf/mime.types
 AddType application/x-httpd-php .php
 AddType application/x-httpd-php-source .phps
  /IfModule
I also change the directory root. to htdocs

Then I copy and rename the php.ini file to my c:\windows
also copy the php5ts.dll file to the bin directory of  apache.

then save the file and restart the server.. but it just not work.
I create the file phpinfo.php containig:
?
phpinfo();
?

From the browser I tried:  http://localhost/phpinfo.php; and the server 
work 'cause y searches the file, but do not reconigze PHP, it just show the 
same code in a white screen.


I shut down de SP2 firewall, also the AV(just in case) and throw the same 
result.

then modify some things form the php.ini, but still doesn't work.

so, please, anyone have the solution? or I just better use IIS?

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



Re: [PHP] Instalation problem

2006-03-30 Thread Chris

Mauricio Masias wrote:
I have a problem with PHP5,  I'm using Apache1.3  as web server in winXP 
SP2 , y change the httpd file:


LoadModule php5_module C:/php/php5apache.dll
also
AddModule mod_php5.c
then
 IfModule mod_mime.c
 TypesConfig conf/mime.types
 AddType application/x-httpd-php .php
 AddType application/x-httpd-php-source .phps
  /IfModule
I also change the directory root. to htdocs

Then I copy and rename the php.ini file to my c:\windows
also copy the php5ts.dll file to the bin directory of  apache.

then save the file and restart the server.. but it just not work.
I create the file phpinfo.php containig:
?
phpinfo();
?

From the browser I tried:  http://localhost/phpinfo.php; and the server 


work 'cause y searches the file, but do not reconigze PHP, it just show 
the same code in a white screen.


Try

?php
phpinfo();
?

Your php.ini might have short_tags disabled which means you have to use 
?php rather than ?


Check your apache logs.

--
Postgresql  php tutorials
http://www.designmagick.com/

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



Re: [PHP] instalation problem

2003-03-18 Thread Jason Wong
On Monday 17 March 2003 20:12, Guram Mosashvili wrote:
 Hi List,
 I have problem with instalation of PHP4 on my LINUX APACHE MySQL server.

 when I did:  ./configure --with-apxs=/server/apache/bin/apxs

 I got error message:
 -
 configure error: Sorry I cannot run apxs.Either you need to install Perl or
 you need to pass the absolute path of by using 
 --with-apxs=/absolute/path/to/apxs
 -

 However, Perle I already have in my server...

The second part of the error says you need to give the full path to your apxs 
executable. If you don't know where it is, use:

  find / -name apxs

to find it.

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
Madness has no purpose.  Or reason.  But it may have a goal.
-- Spock, The Alternative Factor, stardate 3088.7
*/


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



[PHP] instalation problem

2003-03-17 Thread Guram Mosashvili
Hi List,
I have problem with instalation of PHP4 on my LINUX APACHE MySQL server.

when I did:  ./configure --with-apxs=/server/apache/bin/apxs

I got error message:
-
configure error: Sorry I cannot run apxs.Either you need to install Perl or you need 
to pass
the absolute path of by using  --with-apxs=/absolute/path/to/apxs
-
 
However, Perle I already have in my server...

plsease help me. I dont understand what I must do in this situation.

Thank in advance,
Guram
--

Re: [PHP] instalation problem

2003-03-17 Thread Chris Hayes
At 13:12 17-3-03, you wrote:
Hi List,
I have problem with instalation of PHP4 on my LINUX APACHE MySQL server.
when I did:  ./configure --with-apxs=/server/apache/bin/apxs

I got error message:
-
configure error: Sorry I cannot run apxs.Either you need to install Perl 
or you need to pass
the absolute path of by using  --with-apxs=/absolute/path/to/apxs
-

However, Perle I already have in my server...
check where your Perl is with whereis Perl, and modify the path accordingly.



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


[PHP] Instalation problem

2002-09-27 Thread Alicia Molina (ABS)


Hi!
I'm installing PHP 4.2.3, I have already installed version 4.0.5 working
without problems. 
Once installed version 4.2.3, I'm using the order phpinfo() and continues
appearing the old version of PHP 4.0.5 how if it continued installed and it
had not been updated. 
What can be happening? 
Thank you very much !


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




Re: [PHP] Instalation problem

2002-09-27 Thread Chris Hewitt

Alicia Molina (ABS) wrote:

Hi!
I'm installing PHP 4.2.3, I have already installed version 4.0.5 working
without problems. 
Once installed version 4.2.3, I'm using the order phpinfo() and continues
appearing the old version of PHP 4.0.5 how if it continued installed and it
had not been updated. 
What can be happening? 
Thank you very much !

Have you restarted the webserver? You don't tell us which webserver/OS.

HTH
Chris



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




Re: [PHP] Instalation problem

2002-09-27 Thread Chris Hewitt

Alicia Molina (ABS) wrote:

Yes! I have restarted my server, my webserver and all.
I have red hat 6.2 and Apache 1.3.20

Alicia Molina (ABS) wrote:

I'm installing PHP 4.2.3, I have already installed version 4.0.5 working
without problems. 
Once installed version 4.2.3, I'm using the order phpinfo() and continues
appearing the old version of PHP 4.0.5 how if it continued installed and it
had not been updated. 

Have you restarted the webserver? You don't tell us which webserver/OS.

HTH
Chris

Either the configuration for apache remains pointed at the location of 
the old installation (and your new installation is somewhere different) 
or apache was compiled with php not as a module but built in.

In the second case you would need to recompile apache. I suspect it is 
as a module though, Check /etc/httpd/conf/httpd.conf for the LoadModule 
line for php4 and check that the new libphp4.so is in that directory. It 
probably is not, so you need to move it there and restart apache.

HTH
Chris



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




Re: [PHP] Instalation

2001-08-15 Thread Juan Pablo Rivera

first you have to unzip your sources:
gzip -vd apache*.tar.gz | tar -vxf apache*.tar
gzip -vd php*.tar.gz | tar -vxf php*.tar
gzip -vd mysql*.tar.gz | tar -vxf mysql*.tar

then 
cd apache..
./configure --prefix=/your/path/www
cd ..
cd mysql...
./configure --prefix=/usr/local/mysql
make | make install
./mysql_install_db
cd ..
cd php..
./configure --with-apache=.../apache... --with-mysql=/usr/local/mysql
--with-imap=/...imap --enable-track-vars
make | make install
cd ..
cd apache..
./configure --activate-module=src/modules/php4/libphp4.a
make | make install

and thats all...
now have fun...

On Tue, 14 Aug 2001, Roman wrote:

 Help me. I have RED HAT Linux 7.0 and I want install Apache web server with
 php and mysql support. How ?
 
 I have : apache_1.3.20.tar.gz
  php-4.0.6.tar.gz
  mysql-3.23.38.tar.gz
 
 thanx
 
 
   roman
 
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Instalation

2001-08-14 Thread Roman

Help me. I have RED HAT Linux 7.0 and I want install Apache web server with
php and mysql support. How ?

I have : apache_1.3.20.tar.gz
   php-4.0.6.tar.gz
   mysql-3.23.38.tar.gz

thanx


roman




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Instalation

2001-08-14 Thread Jean-Arthur Silve

check de readme or install files provided in each one !

At 15:39 14/08/01 +0200, Roman wrote:
Help me. I have RED HAT Linux 7.0 and I want install Apache web server with
php and mysql support. How ?

I have : apache_1.3.20.tar.gz
php-4.0.6.tar.gz
mysql-3.23.38.tar.gz

thanx


 roman




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


EuroVox
4, place Félix Eboue
75583 Paris Cedex 12
Tel : 01 44 67 05 05
Fax : 01 44 67 05 19
Web : http://www.eurovox.fr



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Instalation

2001-08-14 Thread Luis Brito (AYUDANTE)


 Hi  Roman, I think that the follow page can help you: http://
jips.kipelhouse.com/linux/apache/ssl/

   Try .
 







On Tue, 14 Aug 2001, Roman wrote:

 Help me. I have RED HAT Linux 7.0 and I want install Apache web server with
 php and mysql support. How ?
 
 I have : apache_1.3.20.tar.gz
  php-4.0.6.tar.gz
  mysql-3.23.38.tar.gz
 
 thanx
 
 
   roman
 
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Instalation

2001-08-14 Thread Steve Brett

i think pgp has a quick install text file that is superb.
sorta step-by-step simple and complicated.

Steve
Jean-Arthur Silve [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
check de readme or install files provided in each one !

At 15:39 14/08/01 +0200, Roman wrote:
Help me. I have RED HAT Linux 7.0 and I want install Apache web server with
php and mysql support. How ?

I have : apache_1.3.20.tar.gz
php-4.0.6.tar.gz
mysql-3.23.38.tar.gz

thanx


 roman




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


EuroVox
4, place Félix Eboue
75583 Paris Cedex 12
Tel : 01 44 67 05 05
Fax : 01 44 67 05 19
Web : http://www.eurovox.fr





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Instalation

2001-04-02 Thread Marcelo Pereira

Hi,

Why can't I found neither LIBPHP3.SO nor MOD_PHP3.SO ???

Thanks

Marcelo Pereira
Programmer



Re: [PHP] Instalation

2001-03-30 Thread Romeo Manzur

try abrialite, is an application for install MySQL, Apache, PHP and Webmin
on a Linux machine, it's free..
luck...

Augusto Cesar Castoldi wrote:

 I'm just installed php4 and apache 1.3 on my linux.

 Apache with html files is working fine, but php isn't.

 The browser are showing the code.

 what I do?

 thanks,

 Augusto

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

--
--
Romeo Manzur
Web Application Developer
iSilicom
Av. 27 de Febrero 904-A Desp 1, Centro
C.P.:86000
Villahermosa, Tabasco, Mexico
Tel.:(52)(9)3-12-4790
--



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Instalation

2001-03-30 Thread Romeo Manzur

www.abriasoft.com
luck...

Augusto Cesar Castoldi wrote:

 I'm just installed php4 and apache 1.3 on my linux.

 Apache with html files is working fine, but php isn't.

 The browser are showing the code.

 what I do?

 thanks,

 Augusto

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

--
--
Romeo Manzur
Web Application Developer
iSilicom
Av. 27 de Febrero 904-A Desp 1, Centro
C.P.:86000
Villahermosa, Tabasco, Mexico
Tel.:(52)(9)3-12-4790
--



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Instalation

2001-03-28 Thread Augusto Cesar Castoldi

I'm just installed php4 and apache 1.3 on my linux.

Apache with html files is working fine, but php isn't.

The browser are showing the code.

what I do?

thanks,

Augusto


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Instalation

2001-03-28 Thread Jack Dempsey

have you configured your httpd.conf file?
you need to have this line in there...

AddType application/x-httpd-php .php

you should see info about that if you read the installation file...

-jack

-Original Message-
From: Augusto Cesar Castoldi [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 28, 2001 7:31 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Instalation


I'm just installed php4 and apache 1.3 on my linux.

Apache with html files is working fine, but php isn't.

The browser are showing the code.

what I do?

thanks,

Augusto


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Instalation

2001-03-28 Thread Augusto Cesar Castoldi

I have those lines in httpd.conf:

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

if known other tip... you can tell me.

But I'll try your other suggestion, the installation file.

thanks,

Augusto

On Wed, 28 Mar 2001, Jack Dempsey wrote:

 have you configured your httpd.conf file?
 you need to have this line in there...
 
 AddType application/x-httpd-php .php
 
 you should see info about that if you read the installation file...
 
 -jack
 
 -Original Message-
 From: Augusto Cesar Castoldi [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, March 28, 2001 7:31 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] Instalation
 
 
 I'm just installed php4 and apache 1.3 on my linux.
 
 Apache with html files is working fine, but php isn't.
 
 The browser are showing the code.
 
 what I do?
 
 thanks,
 
 Augusto
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]