Giter VIP home page Giter VIP logo

fluxcp's People

fluxcp's Issues

Support for alternate behavior of $_SERVER['HTTPS'] variable

What steps will reproduce the problem?
http://www.eathena.ws/board/index.php?showtopic=275756
1. setup FluxCP on IIS, Abyss Web Server, or any web server 
where $_SERVER['HTTPS'] = "off"
if HTTPS is disabled (on Apache, $_SERVER['HTTPS'] is empty)
2. do some action that makes FluxCP send an email, like registration email 
confirmation or password reset

What is the expected output? What do you see instead?
--> The URL in the email starts with HTTPS, even if you triggered the email 
sending over HTTP.


Please provide any additional information below.
reece explains the issue in this eAthena forum topic: 
http://www.eathena.ws/board/index.php?showtopic=275756

Original issue reported on code.google.com by brianluau on 12 Jul 2011 at 4:27

Stylesheet reference is not relative to the current host

Please provide any additional information below.

themes/default/header.php: line 11: the <link> for the stylesheet reference
should be changed from this:

http://localhost<?php echo $this->themePath('css/flux.css') ?>

to this:

<?php echo $this->themePath('css/flux.css') ?>

-- because if the site isn't bound to the hostname 'localhost', the
resource 404's.  Note that the javascript references DON'T have the
absolute URL, just an absolute pathname, so it's only the CSS that returns
a 404.


Original issue reported on code.google.com by [email protected] on 24 Sep 2009 at 11:09

Pending donations using wrong exchange rate

What steps will reproduce the problem?
1. Someone make a eCheck donation while the exchange rate for donations is
"0.5", meaning 1$ = 2 Credits (For 20$)
2. The eCheck take a couple of days clear during which the extange rate is
change to "1.0", 1$ = 1 Credits
3. When  it clears it uses the current exchange rate rather than the rate
when the donation was originally made (Should get 40$)


What is the expected output? What do you see instead?
When it clears I believe it should use the exchange rate when the donation
was made rather than when the donation actually clears in paypal. This
being useful in donation events, like double credits for a day.


What version of the product are you using? On what operating system?
Idk, some old ass one but I believe the problem still exist in current
versions.


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 24 Feb 2009 at 1:29

Character Preferences Form Does Not Work

What steps will reproduce the problem?
1. Visit the character preferences page of a character (ie. /fluxcp/
character/prefs/?id=150000)
2. Submit the form using the "Modify preferences" button

What is the expected output? What do you see instead?
It is expected that the settings should be saved. Instead an 
"unauthorized" error is received which redirects to the main page.

What version of the product are you using? On what operating system?
Latest fluxcp-1.0 (r945)

Please provide any additional information below.
This is a fault in the file 'themes/default/character/prefs.php'.
Line 8 is: <form method="<?php echo $this->urlWithQs ?>" method="post" 
class="generic-form">
It should be: <form action="<?php echo $this->urlWithQs ?>" method="post" 
class="generic-form">

Original issue reported on code.google.com by [email protected] on 6 Dec 2009 at 1:01

homunculus ai prob

What steps will reproduce the problem?
1. make a embryo and then try to summon the homunculus 
2.
3.

What is the expected output? What do you see instead?
I see 2 error box
1st - cannot read ./AI/User_AI/AI/.lua: no such file or directory
2nd - attempt to call nil value


What version of the product are you using? On what operating system?
windows XP


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 13 Dec 2008 at 5:55

PDO error

What is the expected output? What do you see instead?

Warning: PDOStatement::setFetchMode() [pdostatement.setfetchmode]: PHP
might crash if you don't call $stmt->setFetchMode() to reset to defaults on
this persistent statement. This will be fixed in a later release in
/home/admin/domains/znro-server.com/public_html/panel/lib/Flux/Connection.php
on line 161

What version of the product are you using? On what operating system?
889 CentOS 5

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 26 Dec 2008 at 9:29

Only the first date of WoE is fixed

What steps will reproduce the problem?
1. Change the WoE config for the server.

What is the expected output? What do you see instead?
Expected: WoE times to be displayed
Actual: Only the first one in the array is shown, regardless of the data in
them.

What version of the product are you using? On what operating system?
Latest SVN (r902), although the bug has been there in previous versions.

Original issue reported on code.google.com by [email protected] on 4 Jan 2009 at 12:02

Error at the head of Page

What steps will reproduce the problem?
1. every page (even while installation)

What is the expected output? 
No error!

What do you see instead?
Warning: set_time_limit(): Cannot set time limit in safe mode in
/home/www/web0/html/CPtest/index.php on line 69 

What version of the product are you using? On what operating system?
r770 on openSUSE

Please provide any additional information below.
it is this line:
    set_time_limit((int)Flux::config('ScriptTimeLimit'));

Original issue reported on code.google.com by saithis88 on 8 Nov 2008 at 1:09

Session data cleanup

What steps will reproduce the problem?
1. Install FluxCP
2. Let 'er run for a couple of weeks

What is the expected output? What do you see instead?
The session data used to keep track of session information becomes very,
very full.  After one month of hits on a low-volume server, the session
data has exceeded 400MB.  On a high volume server, this would consume
gigabytes of disk space.

What version of the product are you using? On what operating system?
Latest trunk.

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 1 Jul 2009 at 9:22

Birthdate

Are you guy(s) pretending to implement so the user when register a new account 
he will be able to enter his birthday date, so we can make it more compatible 
with the latest eathena revision and new character deletion method?

Original issue reported on code.google.com by [email protected] on 19 Jun 2011 at 9:42

Paginator doesn't work correctly

What steps will reproduce the problem?
1. Look at the "Monster", "Item" or anything else that uses a pager
2. Click a link down the bottom
3. The links in the pager are not trimming the URLs correctly

What is the expected output? What do you see instead?
The correct URLs in the hyperlink

What version of the product are you using? On what operating system?
SVN vsn ... 888?

Please provide any additional information below.
The problem is on line 295 of lib/Flux/Paginator.php. I fixed this on my
local copy by changing line 295 from:
$request = rtrim($this->requestURI, '?');

to:
$request = substr($this->requestURI, 0, strpos($this->requestURI,'?'));

Cheers

Original issue reported on code.google.com by [email protected] on 24 Dec 2008 at 2:24

Changing starting Account ID when creating

What steps will reproduce the problem?
1. Recompile eAthena with START_ACCOUNT_NUM set to 2000000
2. Register with FluxCP will always start with default 2000000001

What version of the product are you using? On what operating system?
948

Please provide any additional information below.

How do I go about changing the default Account ID when registering through 
FluxCP?  I've looked through the config files and haven't found anything 
related to starting account ID.

Original issue reported on code.google.com by [email protected] on 9 Mar 2010 at 6:41

Loggin In / Registering Problems

What steps will reproduce the problem?
1. Logging In
2. Registering

What is the expected output? What do you see instead?
I don't know, maybe a redirection to a home page or somewhere else.

What version of the product are you using? On what operating system?
fluxcp-1.0.0.729 installed on Linux
using Mozilla Firefox on a Windows Vista

Please provide any additional information below.
http://bloodpact.rofiles.net/?module=account&action=login&return_url=
(dead link possibly ? or something else)

Original issue reported on code.google.com by [email protected] on 16 Dec 2008 at 2:22

unable to register while birthdate exists in login table


What steps will reproduce the problem?
1.adding birthrate field to login database. 
2.
3.

What is the expected output? 
Registration successful

What do you see instead?
"Uh oh, what happened?"


What version of the product are you using? On what operating system?
i'm running r1063


Please provide any additional information below.
my php is not good but i traced the issue to a failed check on line 193 of 
lib/flux/loginserver.php

Original issue reported on code.google.com by [email protected] on 21 Aug 2011 at 12:57

no Get Credit after of do a transation

What steps will reproduce the problem?
1. Donate 

What is the expected output? What do you see instead?
when i try donate using sandbox service for test paypal, i get "Donation
Complete" but no get credit and "Donation History" is empty, too

What version of the product are you using? On what operating system?
r940

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 31 Oct 2009 at 6:37

wrong element

What steps will reproduce the problem?
1. search in mobdatabase angeling
2. it have the element neutral instead of holy

What is the expected output? What do you see instead?
see before

What version of the product are you using? On what operating system?
r847


Original issue reported on code.google.com by [email protected] on 2 Dec 2008 at 8:18

White Pages?

Hello,
i have a Problem with FluxCP.

Link: http://www.esperro.com/panel/

Many Sites on this CP are White, can you tell me maybe where is the Probleme?

WHITE SITES:
http://www.esperro.com/panel/?module=character&action=online
http://www.esperro.com/panel/?module=server&action=info
http://www.esperro.com/panel/?module=item
http://www.esperro.com/panel/?module=monster
- Maybe Admin Sites too and when i Log in, comes a White Site...

Original issue reported on code.google.com by [email protected] on 13 Nov 2010 at 8:48

Users Online not working

What steps will reproduce the problem?
1. Installed a fresh install of FluxCP. (/branches/fluxcp-1.0)
2. Everything went well and I set up the options
3. Servers show online but under Who's Online it says 0

What is the expected output? What do you see instead?
There were 5 players on the server and it said 0.

What version of the product are you using? On what operating system?
Revision 931

Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 21 Mar 2009 at 10:54

GM Permissions Problem

What steps will reproduce the problem?
1. LVL 99 account(Maybe Lower) and logged in as this account on the cp
2. Go to one of your characters on the lvl 99 account
3. Try to modify account or reset look, position, or change slot

What is the expected output? What do you see instead?
Unauthorized... redirect, also apparently if you use the back button on
firefox it will then let you do said operation sometimes

What version of the product are you using? On what operating system?
Unknown

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 10 Dec 2008 at 4:03

Account Searching

What steps will reproduce the problem?
1. Account Searching
2. Trying out any field requirement for searching.

What is the expected output? What do you see instead?
Should return something but always returns 'no accounts found'.

What version of the product are you using? On what operating system?
1.0.0.960 on a Linux web server.

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 3 Nov 2010 at 11:01

default MD5 config suggestion

What steps will reproduce the problem?
1. the default eAthena config is MD5 *disabled*
http://svn.eathena.ws/svn/ea/trunk/conf/login_athena.conf
// Store passwords as MD5 hashes instead of plaintext ?
// NOTE: Will not work with clients that use <passwordencrypt>
use_MD5_passwords: no
2. however the default FluxCP config is MD5 _*enabled*_

What is the expected output? What do you see instead?
It might be more user-friendly to make the default FluxCP MD5 config match
the default eAthena MD5 config (disabled).

Original issue reported on code.google.com by [email protected] on 11 Apr 2010 at 6:09

Auto Unban for perma ban

What steps will reproduce the problem?
1. I perma ban a gm a month ago
2. It was unbanned by "Control Panel"
3.

What is the expected output? What do you see instead?
Expected, he still being banned for ages

What version of the product are you using? On what operating system?
Windows server 2003

Please provide any additional information below.


Is it normal?

Original issue reported on code.google.com by [email protected] on 22 Feb 2009 at 9:18

Mob Skill Not showing

The monster skills arent showing the message is 

The Mob Skill DB needs to be reloaded by an Admin.

And i check the folder where the files suppose to be at and they are in 
there

'MobSkillDb1' => FLUX_ROOT.'/lib/eA/mob_skill_db.txt',
'MobSkillDb2' => FLUX_ROOT.'/lib/eA/mob_skill_db2.txt', 



Original issue reported on code.google.com by [email protected] on 6 Nov 2008 at 11:12

Invalid login credentials, please verify that you typed the correct info and try again.

When I try to log in this new version (1.0.0.945)

I get this error "Invalid login credentials, please verify that you typed
the correct info and try again."

And I try to resend my pass to my e-mail account when I get, its ok new
pass but when I try to log into Ragnarok I see a new password big
criptograf long words and I cant log into ragnarok with that new password
so, its a bug I think coz Ive installed as well this cp.

Thank you anyways

Original issue reported on code.google.com by [email protected] on 6 Dec 2009 at 12:59

PDO error

What steps will reproduce the problem?
Warning: PDOStatement::execute() [pdostatement.execute]: SQLSTATE[HY093]:
Invalid parameter number: number of bound variables does not match number
of tokens in /home/mirfro/public_html/cp/lib/Flux/Connection/Statement.php
on line 20

What version of the product are you using? On what operating system?

901, linux 

Original issue reported on code.google.com by [email protected] on 30 Dec 2008 at 12:08

Sorting columns does not work

What steps will reproduce the problem?
1. Try to sort any of the fields in the item list (or any list)
2.
3.

What is the expected output? What do you see instead?

It should sort by column, but it does not do anything.


What version of the product are you using? On what operating system?

SVN 1063
Windows or Linux, Same result
PHP 5.3.6


Please provide any additional information below.

Also I noticed the up and down UTF char arrows show up as a ?, something must 
be breaking the UTF encoding on those chars. I checked the page encoding and it 
was UTF-8 in the browser I was using.

Original issue reported on code.google.com by [email protected] on 8 Sep 2011 at 12:27

Multiple Server

What steps will reproduce the problem?
1.Install the CP with a single server in a host. The db is on ej.
(192.168.0.1) 
2. Install another CP with a diferent bd and ip  ej. (The db is on ej.
(192.168.0.2 different users and pass for the mysql) 
3.Try using the cps

What is the expected output? What do you see instead?
I expected to see only the server that I configure, instead I see the same
server(192.168.0.1) in the two control panels. 

What version of the product are you using? On what operating system?
1.0.0.945/Linux

Please provide any additional information below.

I have a external hosting for the control panels, I share the same login
but have 2 differents mysql servers one for each server. The shared login
is in the first one in the example 192.168.0.1.

Original issue reported on code.google.com by [email protected] on 1 Feb 2010 at 6:39

Internet Explorer Problems / Conflicts

What steps will reproduce the problem?
1. Using of Internet of Explorer
2. Registering

What is the expected output? What do you see instead?
Registered successfully.

What version of the product are you using? On what operating system?
fluxcp-1.0.0.729 installed on Linux
using Internet Explorer

Please provide any additional information below.
My players filed a complaint about the Security code issue when using
Internet Explorer. The security code says that they've inputted a wrong
code even though they typed a right one.

Original issue reported on code.google.com by [email protected] on 17 Dec 2008 at 8:06

Hide from online list dont works

The function that allow the users to hide from the online list dont works.
If someone is activating the box with the option to hide the char from the
online list, other users still can see them in the list.

Original issue reported on code.google.com by [email protected] on 6 May 2009 at 11:49

UseLoginCaptcha problem after registration

What steps will reproduce the problem?
1. Register new account with Captcha enable upon registration process.
2.
3.

What is the expected output? What do you see instead?
critical error page showing invalid security key after registration 
complete and automatic login for registered user. 

What version of the product are you using? On what operating system?
1.0, centOS

Please provide any additional information below.



Original issue reported on code.google.com by [email protected] on 3 Nov 2008 at 6:11

Add Allopass Module

This issue is not a problem. It's a request. 
I'll search to contact you but i've not found it. 

Can you add an other donation's system.

Can you create an Allopass module for Flux CP ?

Thank you 

Cordialement

Arctica.

Original issue reported on code.google.com by [email protected] on 1 Dec 2009 at 8:55

Notice: Undefined variable: ip in cp/modules/logdata/login.php on line 28

What steps will reproduce the problem?
When I enter EA Logs and look for login, I enter in an IP it gives me the
error above.

What is the expected output? What do you see instead?
I expected a correct IP address to show up, I got Notice: Undefined
variable: ip in cp/modules/logdata/login.php on line 28.

What version of the product are you using? On what operating system?
898, Ubuntu 8.04

Please provide any additional information below.
if ($ipAddress) {
    $sqlpartial .= 'AND ip LIKE ? ';
    $bind[]      = "%$ip%"; <- Line 28
}

Original issue reported on code.google.com by [email protected] on 27 Dec 2008 at 6:19

Undefined variable: itemType2

What version of the product are you using? On what operating system?
SVN 1063
Lunix
PHP 5.3.6

Please provide any additional information below.

Seeing this a lot

[06-Sep-2011 22:09:51] PHP Notice:  Undefined variable: itemType2 in 
/cp/addons/itemdb/modules/itemdb/index.php on line 73

This is a customized itemdb I converted to an addon, my line 73 is this:

if ($itemType2 && is_numeric($itemType2) && (floatval($itemType2) == 
intval($itemType2))) {

There is a chance in the logic where that var would not be defined at that 
point, so I defined it up above like this: (show with lines above and below for 
clarity)

        if ($itemType && $itemType !== '-1') {
            $itemType2 = 0;
            if (count($itemTypeSplit = explode('-', $itemType)) == 2) {
                $itemType = $itemTypeSplit[0];
                $itemType2 = $itemTypeSplit[1];
            }

and I will see if the error continues.

Original issue reported on code.google.com by [email protected] on 7 Sep 2011 at 10:42

Update jQuery

Currently the default theme is using 1.2.6 version from 2008 and currently the 
latest version is 1.6.2 from 2011, what about updating to this one?

http://jquery.com/

Original issue reported on code.google.com by [email protected] on 10 Jul 2011 at 9:31

Account is created even if Captcha validation fails

What steps will reproduce the problem?
1. Install GD2 and enable captcha security code
2. Create a user account

What is the expected output? What do you see instead?
If the captcha image is invalid, yet the username and password validate,
the user account is created and the user is prompted to re-enter the
captcha image.  After reentering the captcha image, the user is presented
with "The username you've chosen has already been taken by another user".

The account is created though, and users are able to log in.

What version of the product are you using? On what operating system?
Rev 254 on Ubuntu 8.04, Apache 2.2.8, PHP 5.5

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 16 Sep 2008 at 1:30

Paypal IPN URI is hard-coded

I changed my 'PayPalIpnUrl' to "www.sandbox.paypal.com" but the form still
posted to "www.paypal.com".  I have fixed this in my own working copy by
changing:

(data/paypal/button.php - line 14):

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

to:

<form action="https://<?php print
Flux::config('PayPalIpnUrl');?>/cgi-bin/webscr" method="post">

Original issue reported on code.google.com by [email protected] on 25 Sep 2008 at 4:18

Error at head of page

What steps will reproduce the problem?
1. Installation

What is the expected output? What do you see instead?

Expected output: Server Administration

Actual output:

Warning: PDOStatement::setFetchMode() [function.PDOStatement-setFetchMode]: 
PHP might crash if you don't call $stmt->setFetchMode() to reset to 
defaults on this persistent statement. This will be fixed in a later 
release in C:\Program Files\EasyPHP 2.0b1\www\lib\Flux\Connection.php on 
line 143

Notice: Indirect modification of overloaded property 
Flux_SessionData::$cart has no effect in C:\Program Files\EasyPHP 
2.0b1\www\lib\Flux\SessionData.php on line 141

Notice: Indirect modification of overloaded property 
Flux_SessionData::$cart has no effect in C:\Program Files\EasyPHP 
2.0b1\www\lib\Flux\SessionData.php on line 146

Warning: array_key_exists() [function.array-key-exists]: The second 
argument should be either an array or an object in C:\Program Files\EasyPHP 
2.0b1\www\lib\Flux\SessionData.php on line 149

followed by critical errors on attempts to view the account.


What version of the product are you using? On what operating system?

r666.
Windows Vista
EasyPHP
PHP5, MySQL 5, Apache 2


Original issue reported on code.google.com by [email protected] on 23 Oct 2008 at 9:15

Not recieving credits

What steps will reproduce the problem?
1. Purchasing
2. Completing Payment
3. Not gaining Points

What is the expected output? What do you see instead?
Gettings credits when payment is complete. However the done payment doesnt get 
anywhere into the sql, evenso you get redirected back to the CP after the 
donation was complete.

What version of the product are you using? On what operating system?
FluxCP - Windows Server 2008

Please provide any additional information below.
IPN is activated, redirect goes to 
http://www.ghostro.org/TT/?module=donate&action=notify
I followed the screencast, and in paypal it says the information got sent to 
the website but its not in txnlog or credits

Original issue reported on code.google.com by [email protected] on 14 Jun 2011 at 2:07

Function split() is deprecated

What version of the product are you using? On what operating system?

SVN 1063
Linux
PHP Version 5.3.6

Please provide any additional information below.

Seeing this in the error log a lot

[07-Sep-2011 13:47:40] PHP Deprecated:  Function split() is deprecated in 
/home/existenc/public_html/cp/lib/phpmailer/class.phpmailer.php on line 472

Original issue reported on code.google.com by [email protected] on 7 Sep 2011 at 10:27

IP Search EA logs and CP logs

What steps will reproduce the problem?
1. Going to EA login logs
2. Entering a certain IP into the CP

What is the expected output? What do you see instead?
I expected the exact IP to show up for search, I saw a tons of different IP
included in the search.

What version of the product are you using? On what operating system?
Latest Revision 889 on ubuntu 8+

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 24 Dec 2008 at 12:45

Modifying an Item

What steps will reproduce the problem?
1. Clicking Modify Item

What is the expected output? What do you see instead?
A table where I can modify the selected item

What version of the product are you using? On what operating system?
fluxcp-1.0.0.729 installed on Linux
using Mozilla Firefox on a Windows Vista

Please provide any additional information below.
http://bloodpact.rofiles.net/?module=item&action=edit&id=501

Original issue reported on code.google.com by [email protected] on 16 Dec 2008 at 2:24

Guildemblem on multiserver

What steps will reproduce the problem?
1. showing your acc if u have one char on every server with a guild
2. switch between the servers
3. the guildemblem is empty for the other server

What is the expected output? What do you see instead?
should show the guildemblem for any server if its possible

What version of the product are you using? On what operating system?
svn r831

Please provide any additional information below.
see screens on attach

Original issue reported on code.google.com by [email protected] on 28 Nov 2008 at 7:41

Attachments:

'NoCase' setting is not appropriately checked upon login for servers where eA is configured to be case sensitive

What steps will reproduce the problem?
1. set 'NoCase' => false (meaning accounts ARE case sensitive)
2. create 2 accounts: Test, test
(to demonstrate the bug, use different passwords)

What is the expected output? What do you see instead?
3. (assuming 'Test' is the first account) - 
login to the CP using 'test' (and the password for 'test')
4. the CP will accept your login, since you provided a valid user/password.
But the ACCOUNT that you are logged in as will be "Test" !


I think the problem is in ../modules/account/login.php (line 43)
  $sql = "SELECT account_id FROM {$loginAthenaGroup->loginDatabase}.login
WHERE userid = ? LIMIT 1";

That should be modified so it checks the 'NoCase' config, 
and uses 'BINARY userid' if 'NoCase' => false.


What version of the product are you using? On what operating system?
r940

Original issue reported on code.google.com by [email protected] on 4 Nov 2009 at 5:32

At command Log not displaying.

What steps will reproduce the problem?
1. Use the Atcommand log
2.
3.

What is the expected output? What do you see instead?
Viewing the command log, instead i get nothing. 

What version of the product are you using? On what operating system?
newest got from the SVN checkout.  As far as i see there are no past revisions 
of command.php

Please provide any additional information below.
if i look in the database with an SQL browser I can see logs.  Also if I go to 
login logs instead of command logs in the Flux CP I can see logs there.  (So my 
settings should be good since it is working for one...not like it can be 
mispelled.)

Original issue reported on code.google.com by [email protected] on 27 May 2011 at 12:32

Accounts waiting email activation are in wrong state.

What steps will reproduce the problem?
('RequireEmailConfirm'  => true,)
1. create a new account
2. try to login to game
3. the error message says your account is banned (state=5)

What is the expected output? What do you see instead?
Instead, state=11 might be more appropriate.
This will cause clients to show a message similar to "This ID is waiting
for e-mail activation." (line 705 in msgstringtable.txt)

What version of the product are you using? r939

Original issue reported on code.google.com by [email protected] on 21 Oct 2009 at 10:05

Fatal error: Call to a member function setFetchMode() on a non-object in /var/www/html/cp/lib/Flux/Connection.php on line 143

What steps will reproduce the problem?

1. Installing from svn and setting password


What is the expected output? What do you see instead?

I expected everything to work but instead I get: 

Warning: PDOStatement::setFetchMode() [function.PDOStatement-setFetchMode]:
PHP might crash if you don't call $stmt->setFetchMode() to reset to
defaults on this persistent statement. This will be fixed in a later
release in /var/www/html/cp/lib/Flux/Connection.php on line 143

Fatal error: Call to a member function setFetchMode() on a non-object in
/var/www/html/cp/lib/Flux/Connection.php on line 143



What version of the product are you using? On what operating system?

SVN

Please provide any additional information below.

Help :(

Original issue reported on code.google.com by [email protected] on 5 Oct 2008 at 6:08

Problem with 'BaseURI' setting in 'config/application.php'

What steps will reproduce the problem?
1. Obtain svn source, install dependencies & enable URI rewriting in Apache
2. Edit 'BaseURI' setting to '/', '/website/' or 'http://flux/' (set in
/etc/hosts)

What is the expected output? What do you see instead?
Expected output: I expect to see the installation screen
Actual output: 500 - Internal server error.

What version of the product are you using? On what operating system?
svn revision 251

Please provide any additional information below.
/var/log/apache2/error.log:
'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel
debug' to get a backtrace.
[Tue Sep 16 01:18:53 2008] [debug] core.c(3046): [client 127.0.0.1] r->uri
= /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /~kuja/flux/index.php
[Tue Sep 16 01:18:53 2008] [debug] core.c(3052): [client 127.0.0.1]
redirected from r->uri = /install/
[Tue Sep 16 01:20:28 2008] [error] [client 127.0.0.1] File does not exist:
/var/www/website/install, referer: http://infamousro.com/~kuja/

It seems it's still refering to ~kuja - even after changing the BaseURI
setting.  If I put the package in /var/www/~kuja/flux/, I don't get the 500
error.

- nevelis

Original issue reported on code.google.com by [email protected] on 15 Sep 2008 at 1:27

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.