hi all
i installed a fresh dolphin , used my old database ,
all members and articles, and pictures are on the new website , but i have problems with
pictures of the Members, and the music and videos ,
i looked in the media folder put nothing showing there,
for teh profile pic , on the site , shows just the male and femal images ,
how can i retore that each member will have his /her profile pic restored , andwhere can i find all the music and video files ?
zaq
|
What version was your old site?
Regards
Artur A
|
Hello!
Plz specify versions of old and new Dolphins.
Profile photos are stored in media/images/profile directory and `media` table .
Gallery photos are stored in media/images/sharingImages folder and `sharePhotoFiles` table.
Gallery music files are stored in ray/modules/music/files/ folder and `RayMusicFiles` table.
Gallery video are stored in ray/modules/movie/files/ fodler and `RayMovieFiles` table.
If info can't be shown in new site correctly you should find differences between structure of stroing table and trasnfomate it for new version.
Regard
|
hi guys , thank you for your information ,
my old Dolphin V was 6.1.4 and the new one is the same, just i missed up with some modifation and decided to do a fresh install ,
the Profile Photos , i checked the media/images/profile/
and i see there each member has a folder with the number of the member , for example
i am member no 1 , so my images are there in folder no, 1
on the site , myprofile does not show my profile image , however , in the photos section all images are showing there,
so when someone want to see all member , they will see , just the male and female icons ,
any idea how can i restore the members profile photos to show ?
thank you for your superb assisstance
zaq
|
Could that not a problem with your database rather than your Dolphin folders ??? (Table Profiles, Fields Picture and PrimPhoto) Life is a fatal disease, sexually transmissible - Virginity is carcinogenic! Ask here for vaccine. |
hi
i used the same database , i didnot do any changes , copied the old database from the old dolphin and i added it to the new installation ,
both dolphin were V. 6.1.4
zaq
|
check cache files, ex. you are member 1, user1.php and look after
$aUser[1]['Picture'] = '0';
if 0 edit it to 1
$aUser[1]['Picture'] = '1';
Maybe you need to set $aUser[1]['PrimPhoto'] = 'your_pic_number'; to!!
and then see about you have profile photo.
Table Profiles -> PrimPhoto and Picture shall have same numbers.
-----
Gallery photos, Gallery music and Gallery video are they approved by admin!!
(Look at table sharePhotoFiles, RayMusicFiles and RayMovieFiles)
|
hi
thank you for your answer
i did check the catche folder ,
and i have as the following ,
$aUser[8]['ID'] = '8';
$aUser[8]['PrimPhoto'] = '8'; $aUser[8]['Picture'] = '8';
but still didnot solver the problem :(
any advice ?
zaq
|
Have you checked this:
Table Profiles -> PrimPhoto = 8 and Picture = 8
|
hi
yes i went to the database and made sure the pofiles table are
PrimPhoto = 8 Picture = 8
but still the same problem ,
sorry for been pain ,
any other suggestions ?
zaq
|
No.., are profile photo, music and video approved by admin?
What do you have inside table media, media_rating, media_voting_trac?
and maybe a url to your site.
|
hi thank you for your help
i ended up changing all password through the data base , and making the profile pictures for each signing in for each member :)
then i put back the old passwords for the members ,
long day , but was the only solution ,
i noticed when i restored the pictures,
the catche folder , the numbers were not matching
i have this now in the catche folder and the data base
$aUser[8]['ID'] = '8';
$aUser[8]['PrimPhoto'] = '13'; $aUser[8]['Picture'] = '1';
all the member have : $aUser[mem no.]['Picture'] = '1'; so all have = 1
it all works fine now ,
|
i have a question regarding the way that the upload date is inserted. i see it's stored as an int(20) but can't work out how to calculate the number
any help is appreciated
cheers
|
i have a question regarding the way that the upload date is inserted. i see it's stored as an int(20) but can't work out how to calculate the number
any help is appreciated
cheers
The long number is called a unix time stamp. It is normally passed to the php date function. http://php.net/manual/en/function.date.php as the timestamp. And that function displays it in the format specified.
https://www.deanbassett.com |
thanks, but i'm still a bit stuck as to how i would enter a value into phpmyadmin, either using the direct insert method, or the sql update method
sorry to be so dense
|