|
|
 |
|
|
Pages: 1
Php nuke
(Click here to view the original thread with full colors/images)
Posted by: Ernst
I can't seem to understand this part of the installation:
You need to enter a database username and a password in the config.php file. This user must have administration rights on the PHP-Nuke MySQL database (whose name you also entered in the config.php file). You configure this user to have administration rights on the PHP-Nuke database by either phpMyAdmin, or from the command line:
I understand about editing the config file but when it says-------- This user must have administration rights on the PHP-Nuke MySQL database (whose name you also entered in the config.php file). You configure this user to have administration rights on the PHP-Nuke database by either phpMyAdmin, or from the command line--------I can't follow it, if someone could help I would grateful. Thanks Ernst
Posted by: Ernst
I am installing it local and when I try to get to admin.php I get this.
Notice: Undefined variable: aid in c:\easyphp1-8\www\html\admin.php on line 16
Notice: ob_end_clean(): failed to delete buffer. No buffer to delete. in c:\easyphp1-8\www\html\mainfile.php on line 43
Notice: import_request_variables(): No prefix specified - possible security hazard in c:\easyphp1-8\www\html\mainfile.php on line 64
I have been at this for 27 hours straight time for a break.
Posted by: Pada
edit the following line in your php.ini file
output_buffering = Off
change it to
output_buffering = On
this fixed the "Notice: ob_end_clean() [ref.outcontrol]: failed to delete buffer. No buffer to delete" error on my website
Posted by: catfishtuna
I am having the same problem...But I installed PHPNuke 7.8 on my web server...I am a n00bie at this...I read your response and that it fixed your website...
edit the following line in your php.ini file
output_buffering = Off
change it to
output_buffering = On
My question is, where exaclty is my php.ini file..I dont see it anywhere....
These are my error messages...
Notice: ob_end_clean(): failed to delete buffer. No buffer to delete
and
Notice: import_request_variables(): No prefix specified - possible security hazard
I am also getting a login loop when I try to modify my site...I can login to the admin page and see all the options but when I click on one, it takes me to the login page, I proceed to put my username and password in and it takes me back to the admin page...
Any help would be greatly appreciated..Thanx...
Posted by: thandacool
HI !
The php.ini file will be either in your
a) windows root directory (eg C:/WINNT for windows 2000)
b) PHP installation directory (eg C:/php )
A good way to find about this is :
a) Create a new file in the htdocs folder (for apache), name it phpinfo.php. Be sure that it saves with a .php extension and not .php.txt or whatever you’ll use to create the file.
Once the phpinfo.php file has been created, open it up and place the following one line code within it.
<?PHP phpinfo(); ?>
b) Save it close the file and then open your favorite browser and type this in the location bar.
http://localhost/phpinfo.php
c) When the above url loads up u will find your php configuration info.The 5th row of the first table shows the "Configuration file(php.ini) Path : **** "
This my dear gives the path to your precious php.ini file.
Hopefully this helped u.
With Regards,
ThandaCool
|
|
|
|
|