Crystals Palace

Search This Blog

Sunday, February 12, 2012

REMOVE DOLPHIN 7 FOOTER LINK

REMOVE DOLPHIN FOOTER LINK VIDEO HERE

BY YOUTUBE USER DeveloperOnCall on Aug 18, 2011

http://www.youtube.com/watch?v=jnQGOxoDO6E

GO INTO YOUR DOLPHIN TEMPLATES/ BASE/ FILE NAME TO EDIT IS

/templates/base/_sub_footer.html

REPLACE THIS LINE


__boonex_footers__

WITH THIS LINE AND DONE

WRAP A DIV TAG AROUND THE LINE WITH END DIV TAG

div style="display:none; visibility:none;"

__boonex_footers__

END DIV TAG

__boonex_footers__

Saturday, January 28, 2012

ADD AUTO FRIEND TO DOLPHIN 7.0.8

add auto friend to Dolphin 7.0.8



I see that you want to add auto friend to Dolphin 7.0.8 in inc/classes/Bx DolJoinProcessor.Php
at line 248-249 $aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
add the code below

$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");

So the end results will look like this

$aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");

Wednesday, January 11, 2012

How to add google plus 1 to all web pages of boonex dolphin 7

Add Google +1 Button to Dolphin 7

First you will need to go to Google's +1 code page and pick the size and style you want to use.
http://www.google.com/webmasters/+1/button/index.html

After picking your size and style, it will give you 2 lines of code you need to add to your Dolphin 7 website.

Here is the story

http://www.dialme.com/m/articles/view/Add-Google-1-Button-to-Dolphin-7

How to Track Page Load Times with Google Analytics in dolphin 7 website

How to Track Page Load Times with Google Analytics in dolphin 7 website

Many people use the popular Google Analytics as their primary means of tracking website traffic. Google Analytics provides some really detailed statistics and is pretty decent.

There are a number of customizations you can do to your Analytics code to provide additional details and stats in your account. Some people are not aware of this, but one of the simple ones you can add is Track Page Load Times.

I am placing this in the Dolphin 7 Tutorials section because further down you will see a couple of Dolphin 7 code references.

It can obviously be used with any type of website though.


After verifying you have correctly added or updated your code, you will need to wait a few hours, and preferably at least 24 hours before you start seeing data in your Google Analytics account.

Google suggests adding Analytics code to the header between Google Analytics Code tag. In Dolphin 7's case this would be:
/templates/base/_header.html

or and in

But, you can still add it to the bottom of your page before the tag. In Dolphin 7's case this would be:
/templates/base/_footer.html


Google Analytics Code Here




READ THE FULL STORY HERE CITED

http://www.dialme.com/m/articles/view/How-to-Track-Page-Load-Times-with-Google-Analytics


list

http://www.dialme.com/dolphin_7_tutorials.php




by

http://bayareamobilechat.com/

Dolphin 7 How to use Advanced Editor for Mass Mailer

BY http://bayareamobilechat.com/


Dolphin 7 How to use Advanced Editor for Mass Mailer!

How to increase the Mass Mailer Editor height and width!



By default the Mass Mailer in Dolphin 7 Administration is very basic and simple. On top of that the area to actually type in is so small you can barely see anything.

This tutorial will show you how to switch it to the Advanced editor with more features. It will also show you how to increase the size so you can actually see what you are typing.

The current version at the time of this post is: Dolphin 7.0.7

First you will need to download and backup the following files just in case you mess up:
/administration/notifies.php
/administration/templates/base/css/forms_adv.css


Heres the dolphin 7 tutorial on how to change dolphin pages for mass mail or email, as well, as other great tutorials.

How to increase the Mass Mailer Editor height and width

Where Is my Dolphin 7 files I uploaded to My Site

Here is a great online tutorial blog that I have found, it about how to
find your files you or members upload to dolphin 7

Here is the link


http://www.dialme.com/m/articles/view/Dolphin-7-Where-to-find-uploaded-file-locations

Friday, January 6, 2012

how to embed a website in to a website for dolphin

how to embed a website in to a website for dolphin



How to create a simple IFRAME
10.21.2008 00:00 Categories: Dolphin

Basically in simple terms an iframe is loading another page within a page. This can sometimes be rather convenient for Dolphin.

Maybe you want to load a .html page into your Dolphin site? Maybe you want to load a secondary site into your Dolphin? There are a number of possibilities.

This makes the content, external site or other html page load inside your Dolphin making it look like it is still your Dolphin site and content.

There are several ways to accomplish this. One of the fastest and easiest ways I will describe here as simple and detailed as possible.

The following file will work for Dolphin 6.1x, and should work for others too.

First download this file which is going to be called iframe.php for demo purposes. You can simply rename it to anything you want, mypage.php, cool.php, whatever really. Just make sure you don't call it something that Dolphin already uses and accidently overwrite a Dolphin file that allready exists. You wouldn't want to call it chat.php as Dolphin already has a page called chat.php.

You can edit this file as described below for your content.

You will have to create the page you want to include in the iframe, such as yousite.com/mypage.html. If you are going to link it to an external site or other sites page, then just simply edit the link described below.

I have set this to youtube.com for demo purposes. So if you upload the iframe.php file to your Dolphin site then enter yoursite.com/iframe.php into your address bar it will load youtube.com up inside your Dolphin site. This is easy to change and include almost any other page or site.

Open iframe.php with any text editor then:

Change the following to describe your page, which will appear in the header and page title.

goto link below for code


1. Make the edits/changes to header and header_text ares in iframe.php explained above. Rename iframe.php to something else if you so desire.
2. Upload it to your main Dolphin directory like yoursite.com/iframe.php
3. If linking to another .html page on your site be sure to specifiy the exact location in the iframe src=""
4. Visit yoursite.com/iframe.php and verify. Make height and width changes specified above if necessary.
5. Create a link somewhere on your site to yoursite.com/iframe.php, maybe your top navigation area or similar so visitors can find it.

This sounds a little longer than what it really is. This entire process can be completed in a few minutes in most cases.

And there is no database changes or edits, only file/files so no need to worry about messing up your database.

***As a simple test you can upload iframe.php as is to your root Dolphin directory, like yoursite.com/iframe.php then visit yoursite.com/iframe.php and it will load up youtube.com within your Dolphin site. This is just to give you an example of what it will do, then simply make changes specified above.












cited

http://www.dialme.com/m/articles/view/How-to-create-a-simple-IFRAME

Wednesday, January 4, 2012

dolphin 7.0.8 HOW TO I MAKE MANDATORY PHOTO ON JOIN PAGE IN MY WEBSITE

dolphin 7.0.8 HOW TO I MAKE MANDATORY PHOTO ON JOIN PAGE IN MY WEBSITE



Access your database via MyPhpAdmin (example) and browse the sys_profile_fields table. Edit the ProfilePhoto entry (pencil icon) and put a 1 in the mandatory field. That should make it mandatory.


If you do not see this? then!


Are you looking in the database itself or in the Admin Panel? You should be in the database, looking in the sys_profile_fields table. If you have cPanel, log into it. Click MyPhpAdmin, click your D7 database. Click the sys_profile_fields table on the left. Click the Browse button (at the top ) and find the entry called ProfilePhoto (mine was on the second page).



If all else fails look at my cited blog, all works are from this blog and to contact them for help if I can not help you out myself at

www.bayareamobilechat.com

or

http://crystalspalace.yolasite.com/



Cited works here

http://www.boonex.com/forums/topic/Mandatory-photo-on-join.htm

FACEBOOK GROUPS VS FACEBOOK FAN PAGE

FACEBOOK GROUPS VS FACEBOOK FAN PAGE


If you want to know more about the difference between a facebook group and a facebook fan page here is the link


http://www.searchenginejournal.com/facebook-group-vs-facebook-fan-page-whats-better/7761/