Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Yuna Scatari Edition (YSE) (http://www.bvlist.com/forumdisplay.php?f=22)
-   -   Yuna Scatari v2.0 PRE7 RC0 & RC1 (http://www.bvlist.com/showthread.php?t=182)

KRoCk85 3rd April 2008 21:54

Re: Yuna Scatari v2.0 PRE7 RC0
 
hello i love thise code just a few Q's -
Q1 are how can i change the content when users first come to the page and they see the red stop sign where can i want to edit that area
Q2 - how can i make it so anyone can upload not just uploaders.
Q3 is is there any old code to use an 'internal' forum.
thanks for your time - chris.
Ok so i got the old forums implemented using the tbdev source forums.php and the topics/posts/forum sql's w00t... ( just fyi for others who want that feature back ) now i just need to work on the other things, any help on the above would be appreciated.
also subcategories would be a good idea if anyone wanted to attempt to work with this code
http://www.tbdev.net/index.php?showtopic=891

trurl3 3rd April 2008 23:38

Re: Yuna Scatari v2.0 PRE7 RC0
 
Quote:

Originally Posted by KRoCk85
hello i love thise code just a few Q's -
Q1 are how can i change the content when users first come to the page and they see the red stop sign where can i want to edit that area

Go to Admin CP, open 'Blocks' and find block 'Login'. Edit this HTML block and you can remove this big STOP sign :)

Quote:

Originally Posted by KRoCk85
Q2 - how can i make it so anyone can upload not just uploaders.

You have to deal with every style separately. Go to the code, find:
your site/themes/ANDiTKO/stdhead.php (or- your site/themes/TBDev/stdhead.php ... or -your site/themes/ any style you install in future). In every style open file stdhead.php and find occurence of 'upload.php'. Just before it you will see condition:
Code:

if (get_user_class() >= UC_UPLOADER)
Presto!! Change 'UPLOADER' for class you want and you have it!

Q3 - I have done the same as you, because my users do not likes MyBB forum. It works pretty good. Now I'm trying to change block 'Forums' which shows last posts from forum. But i am not php coder, so it goes not good. Maybe some of masters could be so kind and fix it.

KRoCk85 3rd April 2008 23:43

Re: Yuna Scatari v2.0 PRE7 RC0
 
<3 .. EDIT it means heart, as in i love you .. lol thanks for the quick accurate answers

trurl3 3rd April 2008 23:47

Re: Yuna Scatari v2.0 PRE7 RC0
 
Quote:

Originally Posted by KRoCk85
<3

I do not now what that means, but I hope so you manage to folow my hints ;)

Edit: No problem. Always to serve....;) I use this code almost for year and know some things. The blocks are very nice, but construction of code is totally different as in ordinary TbDev issues. So - there are difficulties in modes implementation. Anyway, this tracker has almost everything wjhat is needed to good work. Almost...but anonymity of uploaders. Maybe some day.... :smile:

KRoCk85 4th April 2008 00:18

Re: Yuna Scatari v2.0 PRE7 RC0
 
do you know how to make it so new torrents dont keep getting posted in the shoutbox,? thanks

also kind of a big problem lol ... when users are registering ( this is with fresh code / sql )

Warning: Cannot modify header information - headers already sent by (output started at /home/thecrusa/public_html/themes/ANDiTKO/stdhead.php:4) in /home/thecrusa/public_html/include/functions.php on line 577
and it repeats 4 more times. try regging for yourself at thecrusade.us let me know how i can fix this please :)

trurl3 4th April 2008 07:11

Re: Yuna Scatari v2.0 PRE7 RC0
 
Quote:

Originally Posted by KRoCk85
do you know how to make it so new torrents dont keep getting posted in the shoutbox,? thanks

In 'takeupload.php', on the very end of file, find code:
Code:

$text = "New Torrent: $BASEURL/details.php?id=$id";
$date=time();
mysql_query("INSERT INTO shoutbox (id, userid, username, date, text) VALUES ('id'," . sqlesc('0') . ", " . sqlesc('System') . ", $date, " . sqlesc($text) . ")");

and remove or better comment out this three lines. That's it. Some days ago I have done it in reverse - in YSE RC6 there is not showing new torrents in shoutbox :) Now I have it.

Edit: One more thing - originally info about new torrents in shoutbox is a little ....annoying with only torrent ID as information. On my site info shows name of the uploaded torrent, but to show name cost me live link to torrent. It is only text, not link. But for me it is ok.

Quote:

Originally Posted by KRoCk85
also kind of a big problem lol ... when users are registering ( this is with fresh code / sql )

Warning: Cannot modify header information - headers already sent by (output started at /home/thecrusa/public_html/themes/ANDiTKO/stdhead.php:4) in /home/thecrusa/public_html/include/functions.php on line 577
and it repeats 4 more times. try regging for yourself at thecrusade.us let me know how i can fix this please :)

I registered without any problems. DId not see this warning. But i was accused of attack :). Anyway regfistration was successful.

KRoCk85 4th April 2008 07:30

Re: Yuna Scatari v2.0 PRE7 RC0
 
thx for the help with the shoutbox spam, i just wish i knew why more than half the users were getting this error while regging on my site ( see my prev post ) .. at least you didnt have any probs regging. thanks alot for registering on my site and helping me out today trurl3, i really appreciate it. its nice to see someone that cares :). if you notice anything on my site that is incorrect or that you think needs improvement please pm me here or at rapidgrab. agan thx for the help today, honestly ive been working with torrent scripts for a few weeks on different sites and no one has bothered to help at all . hehe anwyays again ty
also i noticed on your site its invite only, i was hoping you could pm me here or on rapidgrab an invite code... if that was ok with you i just want to check out your sites layout :)

trurl3 4th April 2008 10:09

Re: Yuna Scatari v2.0 PRE7 RC0
 
No problem, i will send you invitation code by PM . Although it is polish site and there is not multilanguage, I hope you will not have any problems, because this is the same code as yours site code :).(almost). Torrents are mostly original with polish language subs (for movies). Anyway you can go to site forum and ask for invitation. There is one topic allowed to unregistered only for asking of invitation. In this manner we have some control about who want to register on our site. There is still MyBB forum on site, but I'm thinking of changing it to inbuild form. I've tested it on my Test site and now only have to ask my users if they want to change.

BoLaMN 4th April 2008 13:58

Re: Yuna Scatari v2.0 PRE7 RC0
 
Latest addition which will be released with the next release which will include

settings.php
install.php
anonymous

few more bug fixes

so a major update coming along!!

BIG CODE CHANGES!!!

[flash=,:363v6id9]http://img230.imageshack.us/img230/5218/anonymouszy9.jpg[/flash:363v6id9]

trurl3 4th April 2008 14:07

Re: Yuna Scatari v2.0 PRE7 RC0
 
Hip, hip, hurray!! That's it! I am waiting for this so long!

By the way, is somebody know where are stored HTML blocks? In RC6 there is block Admin CP, this is HTML file block and it isn't placed in /blocks. So where it is?
Another thing - during block editing in manager you can choose position of the block. Among others there are two positions: upper banner and lower banner. Anybody nows what that means?

vertex 4th April 2008 17:49

Re: Yuna Scatari v2.0 PRE7 RC0
 
Source is finished?

BoLaMN 4th April 2008 23:55

Re: Yuna Scatari v2.0 PRE7 RC0
 
anonymous is finished, settings is 80% complete just gotta go thru and delete some stuff for optimization and then ill start installer so might be a while yet but hey..... u getting updates arnt yas? ;)

and html blocks are stored in the database under orbitry_blocks or something like that

KRoCk85 5th April 2008 00:09

Re: Yuna Scatari v2.0 PRE7 RC0
 
keep up the good work, love the code so far.

has anyone else had any errors while trying to register on their yuna scatari site yet?
sometimes the registration works, other times its a header error.

also for MP3 torrents, i am not sure if any of you had oink or have what/waffles accounts, but id like music torrents to have those extra options, bitrate/type/year etc.. anyone seen a mod for yuna about this? thanks

BoLaMN 5th April 2008 00:20

Re: Yuna Scatari v2.0 PRE7 RC0
 
i might have made a fix but i cant release it till next version as ive chnaged alot of code in there so next release matey ;)

KRoCk85 5th April 2008 00:28

Re: Yuna Scatari v2.0 PRE7 RC0
 
sounds good. also could it be possible for subcategories? ans showing how many times the torrents been snatched? and maybe better sorting ... alot i know :D lol. btw i love this script great work with it so far.



also in the user search http://rapidgrab.com/users.php? it does not let you sort by users who's names start with a number.

KRoCk85 5th April 2008 06:36

Re: Yuna Scatari v2.0 PRE7 RC0
 
Quote:

Originally Posted by trurl3
Edit: One more thing - originally info about new torrents in shoutbox is a little ....annoying with only torrent ID as information. On my site info shows name of the uploaded torrent, but to show name cost me live link to torrent. It is only text, not link. But for me it is ok.

thats what the block new torrents, is for !
also, MyBB is a little much if the new release kept the internal forum that would be better, im not the only one who agrees with that, maybe a poll? :D

ANDiTKO 5th April 2008 10:33

Re: Yuna Scatari v2.0 PRE7 RC0
 
Quote:

Originally Posted by BoLaMN
anonymous is finished, settings is 80% complete just gotta go thru and delete some stuff for optimization and then ill start installer so might be a while yet but hey..... u getting updates arnt yas? ;)

and html blocks are stored in the database under orbitry_blocks or something like that

BoLaMN, contact me if you want my new theme in your version. :bubble:

KRoCk85 5th April 2008 10:45

Re: Yuna Scatari v2.0 PRE7 RC0
 
just want to throw in a quick thanks for your work anditko


also in settings for user control panel no matter what you select for privacy settings at the bottom it reverts back to normal.

also half the time the shoutbox is double posts.


also as far as users getting an error while trying to register, this is the error
[flash=,:2db3jrng]http://img503.imageshack.us/img503/7465/clipboard01fg4.jpg[/flash:2db3jrng]

BoLaMN 6th April 2008 05:48

Re: Yuna Scatari v2.0 PRE7 RC0
 
its got todo with the stderr function i believe there is a stderra function insted to fix that error till the next version so go into the php file and change all stderr to stderra should fix the problem, like i said i would fix it but im currently halfway thru all the major code changes


Latest Progress:

Anonymous = 99%
Settings Editor = 80%
Installer = 80%

Not long now for the new version hang on till then!!

KRoCk85 6th April 2008 05:58

Re: Yuna Scatari v2.0 PRE7 RC0
 
^ its tough hanging on when u have a new live site and 75 regging users a day :P
thanks for the response ... i check this page hourly for your updates :P

which files am i changing stderr to stderra in?
i only found 1 count in functions.php and it didnt seem relative.
i replaced all stderr to stderra in signup and takesignup and i get
( when i click submit after filling out profile info)

Code:

Fatal error: Call to undefined function stderra() in /home/thecrusa/rapidgrab.com/takesignup.php on line 74
i took the stderra out of takesignup and left it in signup and its back to
Code:

Warning: Cannot modify header information - headers already sent by (output started at /home/thecrusa/rapidgrab.com/themes/ANDiTKO/stdhead.php:4) in /home/thecrusa/rapidgrab.com/include/functions.php on line 577
so it looks like the problem is in takesignup.php just not sure what!

so i replaceed that takesignup (9kb) with the 4kb one from the 1-8-8 tbdevsource and that file worked just fine with this script. how about that.
the account was successfully created with activation email, but country/birthdate/gender settings didnt take. idc as long as i get registered users :D

BoLaMN 6th April 2008 12:33

Re: Yuna Scatari v2.0 PRE7 RC0
 
quick fix untill the next release for you


add to functions_global.php
Code:

function stderra($heading = '', $text = '') {
        stdmsg($heading, $text, 'error');
        stdfoot();
        die;
}

change stderr to stderra in takesignup.php and signup.php
the error has todo with stdhead(); been requested twice
ive fixed this in the new version as ive started to use newerr and newmsg which is a completely different setup thus is why i am unable to fix your release completely

KRoCk85 6th April 2008 16:47

Re: Yuna Scatari v2.0 PRE7 RC0
 
thanks.

VVVVV edit

nice progress

BoLaMN 6th April 2008 17:41

Re: Yuna Scatari v2.0 PRE7 RC0
 
Latest Progress For The Night:

Anonymous: 100%
Settings.php: 100%
Installer: 100%

just doing last tests should be out by thursday
dont want to release a fucked release ;)
and possible might have the updated theme by ANDiTKO to see how it looks!!

djallexy 7th April 2008 22:04

Re: Yuna Scatari v2.0 PRE7 RC0
 
You are the best Boloman . Cheers :drink: keep going..

ANDiTKO 7th April 2008 23:36

Re: Yuna Scatari v2.0 PRE7 RC0
 
BoLaMN, Check your PM box :friend:

KRoCk85 8th April 2008 04:10

Re: Yuna Scatari v2.0 PRE7 RC0
 
^^^ that has to b e good news. look forward to your skin in the new release :D

djallexy 8th April 2008 07:54

Re: Yuna Scatari v2.0 PRE7 RC0
 
oh noh ..seems to have erors. :roll:

on my torrents php.

Code:

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 577

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 578

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 579

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 580

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 581
Error
No Torrents Uploaded


ANDiTKO 8th April 2008 13:55

Re: Yuna Scatari v2.0 PRE7 RC0
 
djallexy ,BoLaMN will release a new bug fixed YSE soon.Just chill out and wait. :smoke:

BoLaMN 8th April 2008 16:00

Re: Yuna Scatari v2.0 PRE7 RC0
 
possibly bugfixed ;) ive added ALOT of code and readded the beta notice too as there is alot of new code

joeroberts 9th April 2008 01:48

Re: Yuna Scatari v2.0 PRE7 RC0
 
Quote:

Originally Posted by djallexy
oh noh ..seems to have erors. :roll:

on my torrents php.

Code:

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 577

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 578

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 579

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 580

Warning: Cannot modify header information - headers already sent by (output started at /home/weebyinf/public_html/themes/ANDiTKO/stdhead.php:4) in /home/weebyinf/public_html/include/functions.php on line 581
Error
No Torrents Uploaded


look for a space in front of

KRoCk85 9th April 2008 02:52

Re: Yuna Scatari v2.0 PRE7 RC0
 
is your torrent folder chmodded to 777

trurl3 9th April 2008 12:27

Re: Yuna Scatari v2.0 PRE7 RC0
 
I use YSE RC6 code almost one year. Yesterday i found worrying thing - in my opinion the images from old torrents are not properly deleted from server. Now i have about 400 torrents, but in /torrents/images were over 1600 images. Mostly old, from long non existed torrents. I kindly ask masters of taking a look in this problem. In claeanup.php I didn't find anything about deleting torrent's images.
This situation caused me to doubt if loading torrents images on server is good pactice. In another codes there are only links for images from net. I now so this increase traffic, but who nows what is better?
If somebody nows, please respond.

BoLaMN 9th April 2008 12:28

Re: Yuna Scatari v2.0 PRE7 RC0
 
1 Attachment(s)
----------------------------------------------------------------------------------------------------------------
Yuna Pre7 RC01 by BolaMN

Last modified: 09-APRIL-2008
----------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------------------
REQUIREMENTS:

*nix or Windows server.
MYSQL 3.23 or greater. Note: This source tested on Mysql 4 and 5 (we recommend: Mysql 5)
PHP version 4.1 or greater. Note: This source tested on PHP 4,5,5.20 (we recommend: PHP 5)
The Apache webserver (version 1.3 or greater.) Note: This source tested on Apache 2 (we recommend: Apache2).
The ability to change directory permissions to 0777 or to change ownership of directories to be owned by the webserver process.
.htaccess Support! (see httpd.conf for: AllowOverride all)
Short Open Tag support (see php.ini for: short_open_tag = On)
GD2 Support (see php.ini for: extension=php_gd2.dll)
Mod Rewrite Support (see httpd.conf for: LoadModule rewrite_module modules/mod_rewrite.so)
SMTP Server.

Please contact your hosting provider to ensure your server is compatible with TS v.3.1 FINAL by xam before installing.
----------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------------------
Support:

http://bvlist.com
----------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------------------
Change Log:

Pre7 v.RC1 English - Replaced all stderr & bark with function newerr
Fixed all known bugs. Rev-2
New Settings system
New Installer
New Anonymous Mod
Updated Theme From ANDiTKO (NEW_ANDiTKO)

Pre7 v.RC0 English - Fixed all known bugs.
Converted to English

Pre7 v.RC0 - First Leaked public release.
----------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------------------
FINAL NOTE

Please report bugs, errors, security holes for better version of Yuna Pre7 RC1.
If you have any suggession about this source please let us know by using our forums.

With best Regards - BoLaMN!
http://bvlist.com

Good luck and Enjoy.
----------------------------------------------------------------------------------------------------------------
Special Thanks

ANDiTKO, Hatchet, Yuna Scatari & any user which supports me!!

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

Download: [attachment=0:2wppiii9]Yuna.Scatari.v2.0.PRE7.RC1-Stripped-NEW!.zip[/attachment:2wppiii9]

Installer For Installing Yuna Pre7 with the new installer!
[spoil:2wppiii9]Yuna Pre7 RC01 - BolaMN FRESH INSTALLATION INSTRUCTIONS:
Quick and easy steps to get you up and running

These steps are by no means exhaustive or as detailed as possible.
1. Unzip the release archive to your computer using an archive utility capable of decompressing the download format you choose (Winrar,Winzip).

2. Using an FTP client (FlashFXP,CuteFTP), upload the entire contents of the 'upload' directory to a visible directory on your web server.

3. CHMOD the following files/folders to 0777 (ie, make sure that PHP can write to them).
- ./config/
- ./config/CLEANUP
- ./config/DATABASE
- ./config/EXTRA
- ./config/MAIN
- ./config/SECURITY
- ./config/SMTP
- ./config/TWEAK
- ./config/THEME
- ./torrents/
- ./cache/
- ./include/config_announce.php
- ./community/uploads/
- ./community/uploads/avatars/
- ./community/inc/config.php
- ./community/inc/settings.php

4. In your browser, visit the URL where you installed your tracker, appending ./install/ on to the end of it.

5. After the installation has completed, please delete the 'install' directory from server.

6.
You can now login to the Administration Control Panel by appending ./settings.php on to the URL of your tracker.

IMPORTANT: Do not forget to protect your ./CONFIG folder by using apache config.
Example httpd.conf


Options -Indexes +FollowSymlinks +MultiViews -SymLinksIfOwnerMatch
AllowOverride all
Order Allow,Deny
Allow from all


Congratulations, you should now have an installed and working copy of Yuna Pre7 on your web server.

Have a nice day.[/spoil:2wppiii9]

trurl3 9th April 2008 12:31

Re: Yuna Scatari v2.0 PRE7 RC0
 
Wow. It's really hot stuff :). I am the first to thank and to download.

BoLaMN 9th April 2008 12:34

Re: Yuna Scatari v2.0 PRE7 RC0
 
did i break the forum?? the page buttons are weird for me... lol

trurl3 9th April 2008 12:38

Re: Yuna Scatari v2.0 PRE7 RC0
 
Nothing to worry, I think...

vertex 9th April 2008 14:08

Re: Yuna Scatari v2.0 PRE7 RC0
 
TNX :dance: :D :D :dance:

trurl3 9th April 2008 14:12

Re: Yuna Scatari v2.0 PRE7 RC0
 
After every step of installation instruction i have something like that:

Code:

Installation ERROR!
STEP: ERROR! (0/6)
Please upload new files first.

REQUIRED Yuna Pre7

I have checked two times - all files are uploaded.
I found so problem is with function version_check. For some reason doesn't recognize files on server. Maybe something with ROOT_PATH definition?

BTW, what about Data Base? Isn't it necessary to prepare DB first?

Edit: Instalation Instruction says what folders and files should be chmod-ed to 777, but there are no folder /community/. I suppose so it shoud be /forum/ and I acted as that.

Edit: I bypassed Version Check and installation starts. Now I now why in Instruction there is not any word
about Data Base.

Edit: BUG!! In istalation files name of the folder /CONFIG/ (i wrote as is in original package) is in Upper Case letters. WRONG: should be in lower case lest instalation program doesn't recognize it. Proved. it's necessary to fix it in source file.

ANDiTKO 9th April 2008 14:41

Re: Yuna Scatari v2.0 PRE7 RC0
 
BoLaMN thanx!the installer is really buggy.I cant get it work. (i use a localserver) and it dosent work on subfolders even if i chage the URL settings.I see your new version reminds me xam, the fu :mad: er

hack346 9th April 2008 14:45

Re: Yuna Scatari v2.0 PRE7 RC0
 
When i seed torrent i see this in my client
utorrent 1,6 & bittorrent 6.03

Code:

Failure: Tracker error (1) ??


All times are GMT +2. The time now is 09:58.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.