I want to place my Photo (AvataR) in my prohilepage?
I want to place my Photo (AvataR) in my prohilepage? |
If you mean you want your avatar to show as main 'profile photo' on page it don't work like this ... avatars are avatars and not profile photos ... for profile photos to show you need to upload photos via 'profile photos' album DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
Ok and how do i get them on my profilepage then |
go to profile .... where photo should be click link 'add photo' and upload OR click the 'my albums' button and add photos to profile photos .... usually something like 'usersname's photos' DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
You really should play with your site and learn the basic functions. How will you ever run your website at all if you have no understanding of how the basic stuff works ... take sometime and test how everything works! DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
I have hundreds of hours playing with it. I think something is wrong here ;( |
ok ... did you click 'add photo' link where profile photo should be ?
Also, have you tried uploading via album ? I need more info here as to what is happening at your end for me to try work out the issue ...
I have hundreds of hours playing with it. I think something is wrong here ;(
DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
Do you mean go to pagebuilder - prohile and add a block here?
ok ... did you click 'add photo' link where profile photo should be ?
Also, have you tried uploading via album ? I need more info here as to what is happening at your end for me to try work out the issue ...
I have hundreds of hours playing with it. I think something is wrong here ;(
|
go to profile and where profile photo should be click 'add photo' link:- DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
That''s the problem i don''t have that block , can you give me the details of that block so i can add it. |
go to page builders >> profile >> look for block called 'profile photos' if its there drag it to where you wish to see it and then clear cache >> look again at profile to see if it's there ... DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
That''s not there i checked , can you give my the language key with belongs to the prophile photo block |
OK I'm stumped !! is your site a fresh upload ? or did this happen as a result of changes you have made ? DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price! |
It is possible that the Profile Photo Block was deleted. If so, then we can help you to add it back. Do you have access to your database? Do you know how to backup your database; as that is the first step to working on the database? Before we go there, go the builders, page builders, select profile page and take a screenshot so we can see what is there. Geeks, making the world a better place |
Thnx Geek Girl , i can backup the database and have acces of the prophile page. I have the similar thing with the photo page (perhaps the same sort of program, I''m happy that you will assist me , thnx hans |
The PHP blocks are in the sys_page_compose table, you will see several rows with profile as the name of the page. You should see an entry for a block with the caption _bx_photos_photo_block, type is PHP; and the code is: return BxDolService::call('photos', 'profile_photo_block', array(array('PID' => $this->oProfileGen->_iProfileID)), 'Search'); If you don't see that row in the sys_page_compose, then that is why there is no profile photo block. It is easy to add this back, we can generate the query you need to run. If that is already there, then something else is the issue. Geeks, making the world a better place |
I would still like to see screenshots of the builders page; do you know how to create a screenshot? If Windows, just use PrtScn, and then paste into a graphics programme and save out and attach to the forum post. Geeks, making the world a better place |
Here's the screen shot , sorry for the second screen ;) |
Here's the screen shot , sorry for the second screen ;) Thank you. I see an item, Photos, which is not on my 7.1 site; and I don't see Profile Photo, which it the block you want. By the way, you might want to make the middle column narrower if all it is going to hold is friends. The column can only display a single column so if you make it narrower, you could increase the sizes of the other two columns. Just my opinion. Let me ask this, did you upgrade from a previous version? Geeks, making the world a better place |
Yes i have it upgraded by a boonex third party company , When i know what special block and language key the prophile photo is i can add it , right? is there a module to put in special blocks and how can you see what the special block does? Sorry for the load of questions i ask ;( Hans |
That explains the missing blocks, the upgrade was not performed properly. Did you pay this Boonex third party? If so, then they need to fix the site. However, yes, we can add this block back in. Geeks, making the world a better place |
Here is the bx_photos_photo_block image ;) Thnx again |
You can this through the database, or you use some of the free modules for adding php blocks, one is Deano's Tools which does not require any editing of the system files; just download the module and install it. Deano's Tools is one that should be on all Dolphin installs as it offers a lot of nice things for working with your site. It is in the market. There are others as well but some of them require you to edit the builders scripts. The language key is: _bx_photos_photo_block The description is: Profile Photo Block The php code to add is: return BxDolService::call('photos', 'profile_photo_block', array(array('PID' => $this->oProfileGen->_iProfileID)), 'Search'); You could also try the following query though I would rather someone came in and checked the syntax and values for the query; I am not a mySQL person. I would advise backing up the sys_page_compose table BEFORE running the query just in case you need to restore it. To do that with phpMyAdmin, you click on the sys_page_compose entry in the left column, then in the right pane, you choose export and click the save to file. INSERT INTO `sys_page_compose` (`Page`, `Desc`, `Caption`, `Func`, `Content`, `DesignBox`, `Visible`, `Cache`) VALUES Note: if you add this block now and decided to later get the person to fix the upgrade, inform them that you added this as they may need to remove it. Geeks, making the world a better place |