register_globals on error on fresh 6.1.5 install

Hi,

I just did a fresh install of 6.1.5, but when I ran the install I got this error:

----

Register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
Please go to the
Dolphin Troubleshooter
and solve the problem

--

This was probably because my host moved me to a php 5 server at my request.  I wrote them and they got back to me with the following:

---

I disabled register_globals in the php.ini file by adding
register_globals = 0
The permissions of all folders are set to 755, files to 644,
the file ray/modules/global/app/ffmpeg.

exe to 755.

---

I was then able to proceed with the installation, change the file permissions, etc, and it installed with no problems, and now displays normally at that domain.  When I try to go to the admin panel, however, by going to www.mysite.com/admin/index.php, I get that exact same "register_global" error, even though it was just reset.  Anone have any idea what might be going on and how to fix?

-

Thank

-

Rob

9 May 2009

Question withdrawn.  Host fixed by commenting out registers global checking in  inc/header.inc.php.

Rob

9 May 2009

I have the same problem. My php.ini is ok. Site work fine. Cron send me errors report.

results:
register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
get_magic_quotes_gpc is Off, enable it

Dolphin-v.6.1.5
Hosting - HostGator

11 May 2009

Sometimes hosts split PHP to 2. One for sites and second for crons.

you should check both PHP binary.

11 May 2009

Hi,

same here!!

any idea how to fix it?

I have the same problem. My php.ini is ok. Site work fine. Cron send me errors report.

results:
register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
get_magic_quotes_gpc is Off, enable it

Dolphin-v.6.1.5
Hosting - HostGator

12 May 2009

Same problem on a clean install of 6.1.6. (Register Globals)

Register Globals is off at server level. Got the same error message with Register Globals off in the .htaccess file.

I only get the error message from the cron jobs.

27 May 2009

I just installed a fresh new install of v.6.1.6 and received the following error:

allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe) Please go to the Dolphin Troubleshooter and solve the problem.

Can anyone assist me on which file I need to go to to change this, so I can finish my install?   Help please.

2 Jun 2009

It's in your .htaccess file - line 7

2 Jun 2009

I just checked and mine says it is off...   what should I do?

2 Jun 2009

please help - I am trying to install v.6.1.6 and I keep getting the error above.   I went to my .htaccess file line 7 and it said it was off but the error still exists - advice??

2 Jun 2009

Could you please report the exact version of php your using, you will find this in your cpanel.

2 Jun 2009

5.2.9 - is the version of php

4 Jun 2009

Try this, change the following in the htaccess so your commenting out the php_flag with a # like so:

<IfModule mod_php4.c>
php_flag register_globals Off
</IfModule>
<IfModule mod_php5.c>
php_flag allow_url_include Off
php_flag register_globals Off
</IfModule>

to read


<IfModule mod_php4.c>
#php_flag register_globals Off
</IfModule>
<IfModule mod_php5.c>
#php_flag allow_url_include Off
#php_flag register_globals Off
</IfModule>

----------------

then open up text editor and paste the below inside, save it as php.ini then upload to the root of your install:

safe_mode = Off
get_magic_quotes_gpc = On
allow_url_include = Off
register_globals = Off

---------------------

cross fingers and hope it works for you Smile

4 Jun 2009

SERVER


php_flag register_globals Off   =   ERROR INTERNAL 500    !!!!      (chmod 755)

# php_flag register_globals Off    ok  because disabled


by  phpinfo.php

<?php
phpinfo();
?>


VIEW          DOLPHIN 7         ERROR

register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
get_magic_quotes_gpc is Off, enable it
Please go to the
Dolphin Troubleshooter
and solve the problem.


My server view:

get_magic_quotes_gpc is Off, enable it NO !!!!!  because phpinfo.php  view   ON !!!

local value      master value

magic_quotes_gpc On On
magic_quotes_runtime Off Off
magic_quotes_sybase Off Off


error has not disappeared !!!!!!!! Frown

there must activate the other?     magic_quotes_runtime    and   magic_quotes_sybase    ?

RESOLVED !


AND

register_globals is On (warning, you should have this param in Off state, or your site will unsafe)

in    .HTACCESS          # php_flag register_globals Off                   desactived  because   error internal 500.

PHPINFO.PHP     VIEW:

register_argc_argv On On
register_globals Off Off
register_long_arrays On On
report_memleaks On On
report_zend_debug On On
safe_mode Off Off
safe_mode_exec_dir /usr/local/php/bin /usr/local/php/bin
safe_mode_gid Off Off
safe_mode_include_dir no value no value
sendmail_from no value no value
sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i
serialize_precision 100 100

error has not disappeared !!!!!!!! Frown

there must disabled the other? register_argc_argv and register_long_arrays ?

RESOLVED !


allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)

in    .HTACCESS           Off                   desactived  because   error internal 500.

PHPINFO.PHP     VIEW:

allow_url_include Off Off
allow_call_time_pass_reference On On
allow_url_fopen On On
always_populate_raw_post_data Off Off

error has not disappeared !!!!!!!! Frown

there must disabled the other? allow_call_time_pass_reference and allow_url_fopen ?

RESOLVED !



verdict does not install correctly because those with a beta of faults Laughing

it works not at all
17 Jun 2009

Guys,

I was having the same problem. I also am hosting on HostGator, and on php v.5.2.9

I followed the instructions by kosmic, and uploaded the .htaccess and php.ini files to root directory. No luck.

Then, I decided to try uploading the revised .htaccess to the http://mysite.com/install/ directory. No Luck.

Then, teetering on the brink of total failure, I made one last ditch effort, and uploaded the php.ini file into the /install directory.

I am now proudly staring at the Dolphin Smart Community Builder Installation Script screen. Not done with the install, but at least I am no longer dead in the water.

Thank you kosmic! I hope this little extra tip helps someone else get unstuck.

1 Oct 2009

For you guys who are on Hostgator.  Why are you uploading anything?  You guys have an awesome little toy in the cPanel.  It's called php Config and if you hit it, you can enable, disable it.  Once it's on enable, you can set everything right there by just clicking the mouse.  No need to do anything else. 

 

Gawd, I want this toy on my servers...

1 Oct 2009

I recommend you to contact your host to enable it for you. Some hosts allow you to change it locally.

----
3 Oct 2009

Hi Guys, i have found a solution to this problem after going through the whole lot of trouble. I have searched everywhere and finally lucky you, i have found it. But i need any feedback i can get from this post. It worked for me and it doesn't mean it will work for you. First of all, choose a web hosting company that supports XSLT processor services. i choosed www.freehostia.com as my web hosting company. When you see "register_globals is on" error, or "get_magic_quotes is off", simply follow the instruction below:

Goto this link: www.boonex.com/trac/dolphin/wiki/thingstoknow

and follow every instruction there. Thats it, as simple as that.

Learn to grow your hair back the natural way: http://hairsurvival.blogspot.com

13 Nov 2009

Thankyou Dou9las, your advise on also adding the php.ini file to the install folder also saved my install. I am now running d7 smoothly!!!

16 Nov 2009

Guys,

I was having the same problem. I also am hosting on HostGator, and on php v.5.2.9

I followed the instructions by kosmic, and uploaded the .htaccess and php.ini files to root directory. No luck.

Then, I decided to try uploading the revised .htaccess to the http://mysite.com/install/ directory. No Luck.

Then, teetering on the brink of total failure, I made one last ditch effort, and uploaded the php.ini file into the /install directory.

I am now proudly staring at the Dolphin Smart Community Builder Installation Script screen. Not done with the install, but at least I am no longer dead in the water.

Thank you kosmic! I hope this little extra tip helps someone else get unstuck.

Work! Thanks dude!

10 Jan 2010

Well, I've used this method suggested by kosmic, just to be able to get past installing Dolphin 7 but am now getting this error anytime i try to do something as simple as uploading a photo...

My problem is that when ever I enable my quick php editor in CPanel the site goes to a Internal Error page...but as soon as I disable the whole thing, the site comes back up...

I just don't want to have to get this error 100 different times and try to fix it 100 different times for different modules....any suggestions...?

It's now just random modules that are giving me the same error...

7 Sep 2011

here is what I did: find the auto install and install it. Then after all done if you get this:

Register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
Please go to the
Dolphin Troubleshooter
and solve the problem

Then go into inc/header.inc.php and change line 97 (I BELIEVE) from

$aErrors[] = (ini_get('register_globals') == 0)

to

$aErrors[] = (ini_get('register_globals') == 1).

it should now load fine, hope this helps.

2 Jan 2012

I did that but not working , now i cant get annything up , no page @ all

i use my Dolp but keep getting the same mail all the time ,got 5200 mail,s inbox just today

hm donno what to do

Im running the latest Dolp 7x

7 Mar 2012

[Nathan Paton: Removed - Possible malicious URL]

18 Jun 2012

I think this last post should be removed.

A dolphin 7.0 solution was posted in a 3 year old dolphin 6.1 forum


EDIT: I have contacted a moderator about this. I even think repackaging of dolphin to be redistributed here on the forums should be against the rules if it isn't already.

https://www.deanbassett.com
18 Jun 2012

 

I think this last post should be removed.

A dolphin 7.0 solution was posted in a 3 year old dolphin 6.1 forum

 

I agree, also who wants to download a copy of Dolphin from someone who just joined 5 minutes ago..

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
18 Jun 2012

Agreed.  All downloads of Dolphin which are not links to SourceForge or BoonEx's download URL will be removed unless I know for sure that the download is clean.

 

Edit: That said, this topic is about 6.1.5 and has run its course.  Locked.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
18 Jun 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.