May 18 2012 08:15:06
Languages
Navigation
Friends & Affiliates
Roadmap
[N] User Profile Wall
[N] Error log like in P...
[N] Submit photo - Subc...
[N] Warnings - who can ...
[N] [edit profile]Save ...
[N] Moving panels with ...
[N] Forum thread deform...
[N] Thumbnails in downl...
[N] [Locale German] New...
[N] Warnings only for a...
Users Online
· Guests Online: 2

· Members Online: 0

· Total Members: 490
· Newest Member: malgorzatka89
Last Seen Users
· xxyy16:42:41
· lilin0402 1 day
· angel 2 days
· vaesir 4 days
· malgorzatka89 1 week
· Iput23 1 week
· djdandi 1 week
· Cerplyt 1 week
· uygarozan 1 week
· sgejido 1 week

Login
 Username  Password  
View Thread: For testers: Get PiF v0.08.00 here!
Who is here? 1 Guest
 Print Thread
For testers: Get PiF v0.08.00 here!
slaughter
Hi, I uploaded the latest dev-version of PiF 0.08.00 Wink

Changelog so far:
-100% utf-8 for database content and Locale files !!! (testing needed)
-Admin Rights for Groups possible (testing needed)
-Admin Rights: Normal Admins need now an "admin right" to moderate the forum (testing needed)
-Thread Description added
-Panel administration rewritten
-Setup: optional for developers: sample database content (not 100% completed)
-Bug Fixes and Local Rewrites

Download:
https://sourcefor...p/download

very important note:
http://pimped-fus...ghter.html
Edited by slaughter on 30-05-2010 19:19
  x 1  x 1
 
ep98
Still no WYSIWYG (CK) Editor ?
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
slaughter
Edited:

I am working on it now Wink

In next version CKEditor v3.3 will be included.
And for people who want to use TinyMCE I will prepare a package too Wink
Edited by slaughter on 31-05-2010 21:36
 
browser1
For some reason, I can not install PiF 0.8. I have done everything I need, and when I typed my domain into the browser the setup was launched automatically by jumping into the _install/setup.php, but I got an internal server error: "500;

Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.....com Port 80"

My other pages are at the same provider, on the same account, and they are working well.

I have tried it twice with the same result.
Edited by browser1 on 03-06-2010 15:36
 
Advertising Bot
Posted on 18-05-2012 08:15
Bot Agent

Posts: n^x
Joined: Always

  
browser1
The problem should be with the installation package, because the installation of PiF 0.7 run smoothly.
 
slaughter
browser1 wrote:
The problem should be with the installation package, because the installation of PiF 0.7 run smoothly.


Can you try to remove the .htaccess file and try it again?
 
browser1
Nothings happened.
 
ep98
Red Hat sux

try with this 3 lines in the beginning of .htaccess

Download source  Code

AddType x-mapp-php5 .php
AddHandler application/x-httpd-php5 .php
AddHandler cgi-php5 .php





on PHP 5.3 installs fine with some notices with XAMPP
on PHP 5.2 with Cent OS 5 is ok too.
Edited by ep98 on 03-06-2010 21:09
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
browser1
I got this instead of a setup screen:
Download source  Code
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: index.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once "maincore.php";

redirect($settings['opening_page']);
?>




When typed in/ _install.setup.php, I got the same answer, like before.
Edited by browser1 on 03-06-2010 21:31
 
ep98
Ask your HSP for support, what they're changed on the PHP configuration, do they provide php.ini for each sub-domain and such
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
browser1
Here is the phpinfo file. Maybe it helps.
browser1 attached the following file:
phpinfo.zip [9.91 kB, 101 Downloads]
Edited by browser1 on 04-06-2010 10:00
 
ep98
add screenshot, phpinfo.php is a caller
also give his name and site, hopefully they will have English page
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
browser1
My host provider is an American company: www.vodahost.com. I do not really understand what do you want...
 
ep98
screen shot from what return you phpinfo.php
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
browser1
The screenshot is in the attachement above.
 
ep98
check in your CPanel if u have option to change PHP options - PHP Configuration or such, where u can select which loader (decoder) u can use, and to set various of options. Look for Zend - enabled

allow_url_fopen - On
magic_quotes_gpc -Off
register_globals - Off
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
browser1
Do these settings hide any security issues? My provider gave me the following answer:

"Zend is already enabled in the server. We are not able to change the following values server wide due to security issues. If you need, I can make changes to this particular account.

allow_url_fopen - On
magic_quotes_gpc -Off
register_globals - Off"

I want to avoid from any security risks if possible...
 
ep98
allow_url_fopen - This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers.

magic_quotes - Magic Quotes is a process that automagically escapes incoming data to the PHP script. It's preferred to code with magic quotes off and to instead escape the data at runtime, as needed. - No longer supported in 5.3, eg. removed

register globals should be off due the security reasons - yours is on

As of » PHP 4.2.0, this directive defaults to off.

Please read the security chapter on Using register_globals for related information.

Please note that register_globals cannot be set at runtime (ini_set()). Although, you can use .htaccess if your host allows it as described above. An example .htaccess entry: php_flag register_globals off.

http://www.php.net/manual/en/security.globals.php

register_globals is also removed in 5.3

Edit: syncing with SVN and will do clean install, to see if there any troubles on my CentOS servers.
Edited by ep98 on 05-06-2010 13:31
SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
browser1
It is double dutch to me....

I hope there will be no risk to me.

Anyway, why these additional settings needed? Why do not possible to install Pimped as usually?
 
ep98
With register globals, safe mode and magic quotes off - for sure, on CGI/FCGI envioments have to be added some lines to .htaccess, but this can be done later when someone get hacked :)

Register globals is regarding sessions...

Will get full debug on latest svn (today will be released as 0.8.0 RC2 or final) and will see what's wrong.

Bcz of the nature of your HSP, try with .htaccess with only this 2 lines

Download source  Code

php_flag register_globals off
php_flag safe_mode off



SignatureMay The Source Be With You !
Infusions Directory
 
www.cmsbg.info
Jump to Forum:
Share this thread
URL:
BB-Code:
HTML:
AddThis:
Share |
Render time: 0.25 seconds - 126 Queries 989,118 unique visits