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/

Tuesday, December 20, 2011

HOW TO EDIT PHP.INI FILES FOR DOLPHIN

http://www.bayareamobilechat.com

http://crystalspalace.yolasite.com/

Many of us have wondered, how can we change some of the PHP directives to match some script requirements? Even though this might sound complicated, it is much easier than it looks.

First, we should know a few facts about PHP directives and where they reside. We have 3 levels of php.ini file levels:

1) Server global php.ini (this file resides in the server configuration and this cannot be edited by the users in a shared hosting environment).

2) User global php.ini (this file usually resides in the main folder for a user website, like public_html and this serves all the php scripts that fall under the user account).

3) User local php.ini file (this file is not limited to a specific path and can be deployed by the user wherever he feels he needs to change some parameters for some script).

Now, an interesting question arises: how does this work? The answer is pretty simple. PHP interpreter looks for the php.ini files from down upwards, meaning it looks for a user local file, if the file is not there, it looks in the folder above and then above until it reaches the main folder for the user account. If it fails to find any custom user php.ini file, the interpreter reverts to the global php.ini file for directives.

This is very useful for creating custom php.ini files. You can have the global file serve all your PHP directive needs. If you need a certain directive overwritten (we will show how soon), you simply create a php.ini file in the folder where your script resides, and add that directive. The changes will only affect script files running on this folder and any subfolders below that folder. Parent folders will revert to the php.ini file in their respective folder or their parent folder, and so on.

Now, how to create a php.ini file? This also seems like rocket science (this analogy is obsolete nowadays) but it is very simple. There are 2 ways of doing this:

- Login into your control panel, open your favorite file manager, in my case, it is “file manager”.

- Navigate to the folder you wish to add the file, click on “new file”, enter the name of the file which is php.ini (please note that this is the only acceptable file name, all lowercase).

- Open the file in the editor by clicking on the edit button. And add the parameters you wish to change in the following order:

?
1



variable = value;
variabl2 = value2;

In my case, it is the following:

?
1



max_execution_time = 60;

memory_limit = 256M;

upload_max_filesize = 256M;

post_max_size = 256M;

- Save the file and exit.

The second way you can add this file is by logging onto your FTP and adding the file or uploading it after creating it locally.

The last portion of this tutorial will discuss how to check if your changes have been reflected or not and what php.ini file is actually being used to process scripts in a specific location. You can create a PHP file (using the same steps as above) with the following content:



You have to go to your browser and open the PHP file. This script will simply display all the information for your PHP environment. We are now interested in one field, the “loaded configuration file”. This directive will show you which file is being used to obtain the directives for the PHP file you just created and executed.

Please note that you only need to include the directives which values you want changed and not all the values that are globally defined.






http://blog.arvixe.com/setting-custom-php-ini-files-for-your-website/

Wednesday, December 14, 2011

How to change or find your wordpress password

How to change or find your wordpress password



To Change Your Password
To change your password in current versions:

In the Admin Panel menu, go to USERS
Click on your username in the list to edit
In the Edit User screen, scroll down to the New Password section and type in a new password in the two boxes provided. The strength box will show how good (strong) your password is.
Click the UPDATE PROFILE button
Your new password takes effect immediately.
Through the automatic emailer
If you know your username and the email account in your profile, you can use the "lost password" feature of WordPress.

Go to your WordPress Login page (something like http://yoursite.com/wordpress/wp-login.php)
Click on lost password
You will be taken to a page to put in some details. Enter your user name and the email address on file for that account.
Wait happily as your new password is emailed to you.
Once you get your new password, login and change it to something you can remember on your profile page.
Through MySQL Command Line
Get an MD5 hash of your password.
Visit md5 Hash Generator, or...
Create a key with Python. or...
On Unix/Linux:
Create file wp.txt with the new password in it (and *nothing* else)
md5sum wp.txt
rm wp.txt
"mysql -u root -p" (log in to MySQL)
enter your mysql password
"use (name-of-database)" (select WordPress database)
"show tables;" (you're looking for a table name with "users" at the end)
"SELECT ID, user_login, user_pass FROM (name-of-table-you-found)" (this gives you an idea of what's going on inside)
"UPDATE (name-of-table-you-found) SET user_pass="(MD5-string-you-made)" WHERE ID = (id#-of-account-you-are-reseting-password-for)" (actually changes the password)
"SELECT ID, user_login, user_pass FROM (name-of-table-you-found)" (confirm that it was changed)
(type Control-D, to exit mysql client)
Note if you have a recent version of MySQL (version 5.x?) you can have MySQL compute the MD5 hash for you.

Skip step 1. above.
Do the following for step 7. instead.
"UPDATE (name-of-table-you-found) SET user_pass = MD5('"(new-password)"') WHERE ID = (id#-of-account-you-are-reseting-password-for)" (actually changes the password)
Through phpMyAdmin
This article is for those who have phpMyAdmin access to their database. Note: use phpMyAdmin at your own risk. If you doubt your ability to use it, seek further advice. WordPress is not responsible for loss of data.

Begin by logging into phpMyAdmin and click databases.




A list of databases will appear. Click your WordPress database.



All the tables in your database will appear. If not, click Structure.
Look for wp_users.
Click on the icon for browse.
Locate your Username under user_login
Click edit



Your user_id will be shown, click on Edit
Next to the user_pass is a long list of numbers and letters.
Select and delete these and type in your new password.
Type in the password you want to use. Just type it in normally, but remember, it is case-sensitive.
In this example, the new password will be 'rabbitseatcarrots'
Once you have done that, click the dropdown menu indicated, and select MD5 from the menu.



Check that your password is actually correct, and that MD5 is in the box.
Click the 'Go' button to the bottom right.
Test the new password on the login screen. If it doesn't work, check that you've followed these instructions exactly.

Other Tutorials using phpMyAdmin
phpMyAdmin at tamba2
Reset a WordPress password from phpMyAdmin
Through FTP
There is also an easy way to reset your password via FTP, if you're using the admin user.

1. Login to your site via FTP and download your active theme's functions.php file.

2. Edit the file and add this code to it, right at the beginning, after the first < ? php: wp_set_password('password',1); Put in your own new password for the main admin user. The "1" is the user ID number in the wp_users table. 3. Upload the modified file back to your site. 4. After you then are able to login, make sure to go back and remove that code. It will reset your password on every page load until you do. Using the Emergency Password Reset Script If the other solutions listed above won't work, then try the Emergency Password Reset Script. It is not a Plugin. It is a PHP script. Warnings Requires you know the administrator username. It updates the administrator password and sends an email to the administrator's email address. If you don't receive the email, the password is still changed. You do not need to be logged in to use it. If you could login, you wouldn't need the script. Place this in the root of your WordPress installation. Do not upload this to your WordPress Plugins directory. Delete the script when you are done for security reasons. Directions for use Copy the emergency script from Emergency Password Script and put into a file called emergency.php in the root of your WordPress installation (the same directory that contains wp-config.php). In your browser, open http://example.com/emergency.php. As instructed, enter the administrator username (usually admin) and the new password, then click Update Options. A message is displayed noting the changed password. An email is sent to the blog administrator with the changed password information. Delete emergency.php from your server when you are done. Do not leave it on your server as someone else could use it to change your password. Changing your password in older versions To change your password in WordPress v1.2: In the Admin Panel, go to PROFILE Scroll down to the bottom and type in the new password in the two boxes provided Click the UPDATE PROFILE button Your new password takes effect immediately. To change your password in WordPress v1.5: In the Admin Panel, go to USERS From the "Your Profile" tab, scroll to the bottom and type in the new password in the two boxes provided. Click the UPDATE PROFILE button Your new password takes effect immediately. To change your password in WordPress v2.0: In the Admin Panel, go to USERS (or Profile) From the "Your Profile" tab, scroll down to the Update Your Password section and type in a new password in the two boxes provided. Click the UPDATE PROFILE button Your new password takes effect immediately. http://www.unlimiteddownloadebooks.com



http://codex.wordpress.org/Resetting_Your_Password

How to Successfully Transfer wordpress website to a new domain and web hosting

How to Successfully Transfer wordpress website to a new domain and web hosting.


To transfer to a new domain and web hosting you need to first, copy the entire

wordpress website and here is how to do this.

If the wordpress website is at the root directory /

select all of the files and folders, the compress it and name the directory
your website name for tracking down what the site is about. It could be

chatwordpress.zip download this to your pc.

If it's in a sub folder www.mysite.com/wordpress then just right click on that

folder, then compress it and download it to pc.


Next go to your phpmyadmin witch is in your cpanel, pick the database that setup

this website, go to export at the top menu.

Export Method; click on

Custom - display all possible options



Format; select sql


Click go!


sql file download pops up with

mydata_wp.sql


download it to your pc, choose save file so you know where to download it at,

lets download it to the desktop.






Now we have saved all our wordpress website by downloading the whole website to

our pc, and we then saved our sql file, now its time to put this on our new

hosting and new domain.




Let's login to the new domain cpanel, install wordpress through cpanel.


Now lets go to the files we have saved of wordpress, we need to take out the

wp-config.php


put it somewhere as a backup, but you wont need this in the new site



Zip up the website again, and then upload it to the new host, extract it and now

go to phpmyadmin, pick the wordpress database, once inside that database, select

all the database entries and drop/delete them.

Now Let's go to import and import that wordpress sql file in to this database


Browse your computer option, choose a file button, insert the sql file.

Character set of the file; select utf-8


format; select sql



format specific options; sql compatibility mode; leave blank

check this box Do not use auto_increment for zero values

then click go!


sql file is now imported


That's it!

Now you have your orginal wordpress website!



All done!


http://www.unlimiteddownloadebooks.com

http://crystalspalace.yolasite.com/

Friday, December 2, 2011

Backup Pro - Backup any files, exe, pdf, html, php, doc, jpg, zip, pass protect

GREAT PRODUCT SOFTWARE TO BACKUP COMPUTER FILES, ZIP AND PASSWORD PROTECT, A GREAT PRESENT FOR COMPUTER USERS, SAVE PHOTOS IN ZIP AND THEN EMAIL A 5 OR MORE PHOTOS PER ZIP FILE AND SEND TO A FRIENDS EMAIL, OR ZIP UP COMPLETE WEBSITES, VIDEOS, SOFTWARE, THEN BURN TO A CD FOR BACKUP

THIS IS THE NUMBER 1# BEST GIFT EVER HANDS DOWN, WHEN YOU DON'T KNOW WHAT TO GIVE, THIS IS IT!!!

SAVE COMPUTER FILES BEFORE A COMPUTER CRASHES, IF YOU DON'T YOU WILL LOOSE ALL THAT MONEY SPENT FOR THE DIGITAL GOODS YOU HAVE BOUGHT, EVEN WORSE ALL THOSE PHOTOS, VIDEOS YOU HAVE MADE OR GOT FROM A LOVED ONE...

Backup Pro - Backup any files, exe, pdf, html, php, doc, jpg, zip, pass protect

Saturday, November 26, 2011

NEW 2011 - Eminem - Hip Hop Feat. Dr. Dre, Snoop Dogg, DMX, Jay-Z & 2Pac - HOT

NEW 2011 - Eminem - Hip Hop Feat. Dr. Dre, Snoop Dogg, DMX, Jay-Z & 2Pac - HOT VIDEO

WATCH IT NOW



NEW 2011 - Eminem - Hip Hop Feat. Dr. Dre, Snoop Dogg, DMX, Jay-Z & 2Pac - HOT

Friday, November 25, 2011

AdSense Business adsense dollar factory

HAVE YOU EVER WONDERED HOW PEOPLE MAKE MONEY THROUGH THE INTERNET BY DOING ALMOST NOTHING?



THESE PEOPLE RUN A LEGITIMATE INTERNET BUSINESS WHERE THERE IS:



No need to sell any products or services
No need to have any employees
No need to invest any money (or invest very little money)
No need to spend effort or time in any business activities
No need to look for clients or customers



Amazing, isn’t it?
But what’s their secret?

adsense-dollar-factory: adsense-dollar-factory


INTERNET BUSINESS adsense: HAVE YOU EVER WONDERED HOW PEOPLE MAKE MONEY THROUGH THE INTERNET BY DOING ALMOST NOTHING? THESE PEOPLE RUN A LEGITIMATE INTERNET BUSINESS WHERE THERE IS: No need to sell any products or services No need to have any employees No need to invest any money (or invest very little money) No need to spend effort or time in any business activities No need to look for clients or customers Amazing, isn’t it? But what’s their secret?
INTERNET BUSINESS adsense: HAVE YOU EVER WONDERED HOW PEOPLE MAKE MONEY THROUGH THE INTERNET BY DOING ALMOST NOTHING? THESE PEOPLE RUN A LEGITIMATE INTERNET BUSINESS WHERE THERE IS: No need to sell any products or services No need to have any employees No need to invest any money (or invest very little money) No need to spend effort or time in any business activities No need to look for clients or customers Amazing, isn’t it? But what’s their secret?
INTERNET BUSINESS adsense: HAVE YOU EVER WONDERED HOW PEOPLE MAKE MONEY THROUGH THE INTERNET BY DOING ALMOST NOTHING? THESE PEOPLE RUN A LEGITIMATE INTERNET BUSINESS WHERE THERE IS: No need to sell any products or services No need to have any employees No need to invest any money (or invest very little money) No need to spend effort or time in any business activities No need to look for clients or customers Amazing, isn’t it? But what’s their secret?
INTERNET BUSINESS adsense: HAVE YOU EVER WONDERED HOW PEOPLE MAKE MONEY THROUGH THE INTERNET BY DOING ALMOST NOTHING? THESE PEOPLE RUN A LEGITIMATE INTERNET BUSINESS WHERE THERE IS: No need to sell any products or services No need to have any employees No need to invest any money (or invest very little money) No need to spend effort or time in any business activities No need to look for clients or customers Amazing, isn’t it? But what’s their secret?

AdSense Business adsense dollar factory

Wednesday, November 23, 2011

Change Wordpress domain name! Wordpress Url is Redirecting to another url, or I can't login to wordpress

Change Wordpress domain name!

Before doing below steps this is to change the url Heres the link cited http://codex.wordpress.org/Changing_The_Site_URL short desc of above link if not working change the config file with a url tags change the your active theme functions.php page with url tags

Wordpress Url is Redirecting to another url.

or I can't login to wordpress website problem.


Here is a few tips I have found online to help solve your problems about "WHY CAN'T I LOGIN TO WORDPRESS" OR "HAVE I TRIED TO CHANGE MY DOMAIN URL TO ANOTHER DOMAIN ADDRESS AND NOW I CAN'T LOGIN TO MY WORDPRESS AFTER I REDIRECTED MY URL"


Look at this link

http://codex.wordpress.org/Changing_The_Site_URL



Here is the brake down of the must read part, if this part does not work then go back to this link above and work out other steps, or even type in keywords for your problem and take notes of every error message from your wordpress website.



BREAK DOWN STARTS BELOW.....!!!!!!!!!



Changing The Site URL

On the Settings->General screen in a single site installation of WordPress, there are two fields named "WordPress address (URL)" and "Site address (URL)". These are also known as the "Home" and "Site URL" settings. They are important settings, since they controls where WordPress thinks your site is located. They control the display of the URL in the admin section of your page as well as the front end, and are used throughout the WordPress code.

Every once in a while, somebody finds a need to manually change (or fix) these settings. Usually this happens when they change one or both and discover that their site no longer works properly. This can leave the user with no easily discoverable way to correct the problem. This article tells you how to change these settings directly.

Additional information is presented here for the case where you are moving WordPress from one site to another, as this will also require changing the site URL. You should not attempt to use this additional information if you're only attempting to correct a "broken" site.
Alert! These directions are for single installs of WordPress only. If you are using WordPress MultiSite, you will need to manually edit your database.
Contents
[hide]

1 Changing the Site URL
1.1 Edit wp-config.php
1.2 Edit functions.php
1.3 Relocate method
1.4 Changing the URL directly in the database
2 Moving Sites
2.1 Altering Table Prefixes
2.2 Changing Template Files
2.3 Changing the Config file
2.4 Verify the Profile
2.5 Changing the .htaccess file
2.6 Additional items of note
2.6.1 Important GUID Note
2.7 Multi-site notes


Changing the Site URL

There's four easy methods to change the Site URL manually. Any of these methods will work and perform much the same function.
Edit wp-config.php

It is possible to set the site URL manually in the wp-config.php file.

Add these two lines to your wp-config.php, where "example.com" is the correct location of your site.

define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');

This is not necessarily the best fix, it's just hardcoding the values into the site itself. You won't be able to edit them on the General settings page anymore when using this method.
Edit functions.php

If you have access to the site via FTP, then this method will help you quickly get a site back up and running, if you changed those values incorrectly.

1. FTP to the site, and get a copy of the active theme's functions.php file. You're going to edit it in a simple text editor (like notepad) and upload it back to the site.

2. Add these two lines to the file, immediately after the initial "
update_option('siteurl','http://example.com/blog');
update_option('home','http://example.com/blog');

Use your own URL instead of example.com, obviously.

3. Upload the file back to your site, in the same location. FileZilla offers a handy "edit file" function to do all of the above rapidly; if you can use that, do so.

4. Load the login or admin page a couple of times. The site should come back up.

5. Repeat the above steps, but remove those lines. IMPORTANT: Do NOT leave those lines in there. Remove them immediately after the site is up and running again.

If there is no functions.php file in the theme:

Create a new text file called "functions.php".

Edit it with notepad, and add this text to it, using your own URL instead of example.com:

update_option('siteurl','http://example.com/blog');
update_option('home','http://example.com/blog');

Upload that to your theme directory, then proceed as stated above. Remove the file afterwards.


contact me at


crystals palace at yola site

http://crystalspalace.yolasite.com/



downloads

http://www.unlimiteddownloadebooks.com



reselling market

http://unlimiteddownloadebooks.com

Sunday, November 13, 2011

How to add a new page in Dolphin 7 social website

How to add a new page in Dolphin 7 social website

I have found this tutorial on how you can add a new page to dolphin 7 social media website, I hope this article will be of some service for your business.

http://blog.arvixe.com/adding-a-new-page-to-dolphin-7/

dolphin 7 RMS address web cam, chat, video chat setup

dolphin 7 RMS address web cam, chat, video chat setup

Here is an article

http://www.boonex.com/forums/topic/what-is-RMS-address-please-please.htm


You need to setup rms with your hosting company that runs your dolphin website, some hosts support dolphin like hostforweb.com does, if you get there hosting remember to add rms for free, or ask them to set it up so you have access to each domain you want to run dolphin chat, video chat, web cams on.

Here is what I did to my dolphin 7.0.8 setup

I went to the rms located in admin flash apps, click on settings to set this up like this

check this box use rms

rms address rms7.hfw.us

rms port 1935

rms http port 5080


save this

remember to connect your host to have access to rms as well or you will get connection error


I would go with hostforweb.com if you dont have a good host to run dolphin and they have live 24/7 chat


If you need help or want to look at my websites

crystalspalace.yolasite.com

dolphin 7 banners - How to put my Banners, Google Adsense, Ads in to Dolphin 7 Website

dolphin 7 banners - How to put my Banners, Google Adsense, Ads in to Dolphin 7 Website


If you have a dolphin 7 social chat script website, and want to find out how to setup your banners, google adsense, post ads in to a social networking chat website such as dolphin 7, here is some great tips on how to do just that here.

http://www.dialme.com/m/articles/view/Dolphin-7-How-to-use-the-Banner-Ad-Feature


I will be opening up my own dolphin 7 chat, so if you want to browse what dolphin 7 chat is here is a few domains of mine it might be on, any questions go to my main yola site website, this is where i connect all my domains that should be working, I change my domains all the time so having a free site to post all your domains in one is great.


My main website, yola site is

http://www.crystalspalace.yolasite.com

My reselling market website, this is a resell market products site


http://www.resellingmarket.com reselling market


My bay area mobile chat website, bay area chat, social bay area website, chat with friends or learn about the bayarea people.

http://bayareamobilechat.com/


Chatter friends is a social chat with friends network, free video chat with friends, record webcams, share youtube videos on social networks.

www.chatterfriends.com chatter friends


New Auction Website like ebay

www.onlinefreeauctions.com online free auctions

Friday, October 14, 2011

Free or VIP ACCESS TO VIDEOS

First Name:
Email:


Description

VIP Signup You will get more video access to special niche video websites we have created to help you with your business ideas.
You also may be given more products to download and more video websites to watch in the future, check back often to your access page to view more products in your member area.
If you do not want to pay to be a VIP member then you can help promote our website by joining us on twitter, facebook, and myspace, then tweet out or like our products and become fans, give us a support ticket and we will make you VIP FOR FREE!
You can also become an Affiliate to all our products and Start Selling and making money. We have a Cheat Proof Affiliate System, you can track who comes to visit your aff links in your access account and see what websites are making you the most money.
GET STARTED TODAY! LEARN! EARN! PROFIT AFF SYSTEM!
Product Price 10.00