vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   uCash & uShop v2.0.0 (https://vborg.vbsupport.ru/showthread.php?t=107233)

Ky Kiske 02-12-2006 10:15 AM

These errors should be fixed by the next release. Remember guys this is a Beta. Meaning we are on the showroom floor with a hot sexy no car that might not have an engine. So We should ask for a Bug Reporting Address. Now in my case. (Do only if you know what you are doing.) I used the mysql queries in the mysql_schema.php for uShop. If you only add uCash 1.1.0 or 1.1.0 it will completely miss a few steps because it thinks you already have them. Now the missing information will be:

Code:

CREATE TABLE ushop_action (
        `actionid` int(5) NOT NULL auto_increment,
        `categoryid` smallint(5) NOT NULL default '1',
        `shortname` varchar(255) NOT NULL default '',
        `name` varchar(255) NOT NULL default '',
        `description` text NOT NULL,
        `displayorder` int(10) NOT NULL default '0',
        `cost` varchar(20) NOT NULL default '',
        `tax` varchar(20) NOT NULL default '',
        `sold` bigint(10) NOT NULL default '0',
        `defaultquantity` bigint(10) NOT NULL default '0',
        `quantity` bigint(10) NOT NULL default '0',
        `allowedgroups` varchar(255) NOT NULL default '',
        `deniedgroups` varchar(255) NOT NULL default '',
        `expiration` int(15) NOT NULL default '0',
        `noexpiremarkup` decimal(20,2) NOT NULL default '0.00',
        `filelocation` varchar(255) NOT NULL default '',
        `imagelocation` varchar(255) NOT NULL default '',
        `disablecoupon` tinyint(1) NOT NULL default '0',
        `showinstore` tinyint(1) NOT NULL default '0',
        `active` tinyint(1) NOT NULL default '0',
        `saf_name` varchar(50) NOT NULL default '',
        `asvs` text NOT NULL,
        `itemcatcache` text NOT NULL,
        `itemcache` text NOT NULL,
        PRIMARY KEY (`actionid`)
)

CREATE TABLE ushop_asvs (
        `asvsid` int(20) NOT NULL auto_increment,
        `actionid` int(20) NOT NULL default '0',
        `varname` varchar(255) NOT NULL default '',
        `title` varchar(255) NOT NULL default '',
        `description` text NOT NULL,
        `optioncode` text NOT NULL,
        `value` text NOT NULL,
        `displayorder` smallint(5) NOT NULL default '0',
        PRIMARY KEY (`asvsid`)
)

CREATE TABLE ushop_bank (
        `rowid` int(10) NOT NULL auto_increment,
        `userid` int(10) NOT NULL default '0',
        `inserttime` bigint(20) NOT NULL default '0',
        `updatetime` bigint(20) NOT NULL default '0',
        `amount` varchar(20) NOT NULL default '',
        PRIMARY KEY (`rowid`),
        UNIQUE KEY `userid` (`userid`)
)

CREATE TABLE ushop_history (
        `historyid` bigint(10) NOT NULL auto_increment,
        `userid` bigint(10) NOT NULL default '0',
        `timestamp` bigint(15) NOT NULL default '0',
        `actionid` bigint(10) NOT NULL default '0',
        `action` varchar(250) NOT NULL default '',
        `normalcost` varchar(20) NOT NULL default '',
        `discount` varchar(20) NOT NULL default '',
        `tax` varchar(20) NOT NULL default '',
        `points` varchar(20) NOT NULL default '',
        `totalcost` varchar(20) NOT NULL default '',
        `touserid` bigint(10) NOT NULL default '0',
        `touser` varchar(250) NOT NULL default '',
        `newtitle` varchar(250) NOT NULL default '',
        `itemid` int(15) NOT NULL default '0',
        `oldtitle` varchar(250) NOT NULL default '',
        `expired` tinyint(1) NOT NULL default '0',
        PRIMARY KEY (`historyid`)
)

ALTER TABLE user
        ADD `ushop_history` mediumtext NOT NULL,
        ADD `ushop_glow` varchar(20) NOT NULL default '0',
        ADD `ushop_usernamecolor` varchar(20) NOT NULL default '0',
        ADD `ushop_boldusername` tinyint(1) NOT NULL default '0',
        ADD `ushop_italicsusername` tinyint(1) NOT NULL default '0',
        ADD `ushop_bankdata` text NOT NULL,
        ADD `ushop_bankqueue` text NOT NULL,
        ADD `ushop_bankwarning` int(15) NOT NULL default '0',
        ADD `ushop_profilemidi` varchar(250) NOT NULL default '',
        ADD `ushop_bypassflood` tinyint(1) NOT NULL default '0',
        ADD `ucash` DECIMAL(20, 2) DEFAULT '0' NOT NULL

REPLACE INTO datastore
        (title, data)
VALUES
        ('ucs_global_bank', 1000000)

REPLACE INTO ushop_action
        (`actionid`, `categoryid`, `shortname`, `name`, `description`, `displayorder`, `cost`, `tax`, `sold`, `defaultquantity`, `quantity`, `allowedgroups`, `deniedgroups`, `expiration`, `noexpiremarkup`, `filelocation`, `imagelocation`, `disablecoupon`, `showinstore`, `active`, `saf_name`)
VALUES
        (1, 2, 'donate', 'Donate', 'Spread some love to your fellow man and donate some money to another user.', 10, '0', '2', 14, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.donate.php', 'images/ushop/donate.gif', 0, 1, 1, ''),
        (2, 8, 'changetitle', 'Change Custom Title', 'Here, you can change your custom title to something else. Stand out from the crowd and buy one!', 50, '500', '5', 12, 20, 18, 'd', 'd', 0, 0.00, 'ushop/action.changetitle.php', '', 0, 1, 1, ''),
        (3, 8, 'changeothertitle', 'Change Other User''s Custom Title', 'Someone making your life hell and want to get abit of payback? Rember that they can find out who did it ;)', 60, '1000', '10', 20, 20, 20, 'd', 'd', 1, 100.00, 'ushop/action.changeothertitle.php', '', 0, 1, 1, ''),
        (4, 8, 'changeusername', 'Change Username', 'With this action, you may change your username to anything you''d like! (Within reason...)', 70, '1000', '7', 6, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.changeusername.php', '', 0, 1, 1, ''),
        (5, 9, 'glowusername', 'Glowing Username', 'With this action, you can buy yourself a pretty glowing username that will appear on your posts. (NOTE: Glow is Internet Explorer only!)', 90, '750', '15', 31, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.glowusername.php', 'images/ushop/glowusername.gif', 0, 1, 1, ''),
        (6, 3, 'colorusername', 'Colored Username', 'With this, you can pick a color that''ll color your username in your posts any color you''d like!', 100, '700', '4', 23, 20, 18, 'd', 'd', 0, 0.00, 'ushop/action.colorusername.php', 'images/ushop/colorusername.gif', 0, 1, 1, ''),
        (7, 3, 'boldusername', 'Bold Username', 'This allows you to make your username bold in your posts.', 110, '500', '4', 24, 20, 11, 'd', 'd', 1, 100.00, 'ushop/action.boldusername.php', 'images/ushop/boldusername.gif', 0, 1, 1, ''),
        (8, 3, 'italicusername', 'Italicized Username', 'This allows you to make your username appear in italics in your posts.', 120, '500', '4', 8, 20, 17, 'd', 'd', 0, 0.00, 'ushop/action.italicusername.php', 'images/ushop/italicusername.gif', 0, 1, 1, ''),
        (9, 2, 'admindonate', 'Admin Donate', 'This allows admins to give or take away points from users without affecting their own points.', 20, '0', '0', 37, -1, -1, '6', 'd', 0, 0.00, 'ushop/action.admindonate.php', 'images/ushop/admindonate.gif', 0, 1, 1, ''),
        (10, 4, 'bank', 'Bank', 'Save up your money in the bank and collect wonderful interest!', 40, '0', '0', 63, -1, -1, 'd', 'd', 0, 0.00, 'ushop/action.bank.php', 'images/ushop/bank.gif', 0, 1, 1, ''),
        (11, 8, 'secondaryusergroup', 'Secondary Usergroup', 'Want a higher PM quota? Want to see invisible users? You might be able to buy access to a usergroup with those features here.', 80, '0', '3', 12, 20, 19, 'd', 'd', 0, 0.00, 'ushop/action.secondaryusergroup.php', '', 0, 1, 1, 'Usergroup Editor'),
        (12, 7, 'stickythread', 'Sticky Thread', 'Make one of your topics stick to the top of the forum!', 170, '500', '5', 5, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.stickythread.php', '', 0, 1, 1, ''),
        (13, 2, 'thief', 'Thief!', 'Attempt to steal points from another member here (you lazy bum).', 30, '0', '0', 70, 20, 19, 'd', 'd', 0, 0.00, 'ushop/action.thief.php', '', 0, 1, 1, ''),
        (14, 5, 'forumpassword', 'Buy Forum Password', 'Buy access to some special forums here!', 130, '1000', '3', 44, 20, 18, 'd', 'd', 0, 0.00, 'ushop/action.forumpassword.php', '', 0, 1, 1, 'Forum Editor'),
        (15, 5, 'forumaccess', 'Buy Forum Access', 'Buy access to a forum!', 140, '2000', '4', 23, 20, 17, 'd', 'd', 0, 0.00, 'ushop/action.forumaccess.php', '', 0, 1, 1, 'Forum Editor'),
        (16, 5, 'denyforumaccess', 'Deny Forum Access', 'Want to keep some jackass out of a certain forum? Deny their access to the forum here!', 150, '2500', '10', 11, 20, 20, 'd', 'd', 1, 0.00, 'ushop/action.denyforumaccess.php', '', 0, 1, 1, 'Forum Editor'),
        (17, 5, 'giveforumaccess', 'Give Forum Access', 'Bought access to a forum but want a friend to have access as well? Buy them access here!', 160, '2500', '9', 13, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.giveforumaccess.php', '', 0, 1, 1, 'Forum Editor'),
        (18, 8, 'customavatar', 'Custom Avatar', 'Here you can upload a custom avatar for you to use.', 410, '1200', '7', 9, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.customavatar.php', '', 0, 1, 1, ''),
        (19, 8, 'profilemidi', 'Midi In Profile', 'Spice up your profile with some music!', 430, '1500', '7', 1, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.profilemidi.php', '', 0, 1, 1, ''),
        (20, 8, 'changeotheravatar', 'Change Other User''s Avatar', 'Here you can changed another user''s custom avatar.', 420, '1200', '7', 7, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.changeotheravatar.php', '', 0, 1, 1, ''),
        (21, 8, 'profilepicture', 'Profile Picture', 'Here you can upload a profile picture for you to use.', 430, '1000', '7', 4, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.profilepicture.php', '', 0, 1, 1, ''),
        (22, 8, 'bypassfloodcontrol', 'Bypass Flood Control', 'Purchase this to post as fast as you can without flood control restrictions.', 450, '500', '7', 15, 20, 20, 'd', 'd', 0, 0.00, 'ushop/action.bypassfloodcontrol.php', '', 0, 1, 1, '')

REPLACE INTO ushop_asvs
        (`actionid`, `varname`, `title`, `description`, `optioncode`, `value`, `displayorder`)
VALUES
        (1, 'changecolorpercent', 'Percent of Regular Price to Change Color?', 'Set this to the percent of the regular price that it costs to change a glowing username after it has already been purchased.', '', '50', 10),
        (6, 'changecolorpercent', 'Percent of Regular Price to Change Color?', 'Set this to the percent of the regular price that it costs to change a colored username after it has already been purchased?', '', '50', 10),
        (10, 'interestincrement', 'Interest Increment', 'Set this to how often interest should accumulate on money in this bank. Default - 86400 = 1 day.', '', '86400', 10),
        (10, 'interestpercent', 'Interest Percent', 'Set this to the amount of interest gained on money in this bank (in percents).', '', '2', 20),
        (13, 'maxrep', 'Maximum Reputation?', 'If a user reaches this many reputation points, it becomes impossible to steal from them. Otherwise, a percentage is calculated using this and the user''s reputation to determine the chance of failure.', '', '100000', 10),
        (13, 'backfire', 'Backfire on Failed Attempts?', 'If this is set to ''yes'', failed attempts will backfire, giving the victim the money that the thief loses when they fail to steal.', 'yesno', '1', 20),
        (13, 'replosts', 'Reputation Lost On Successful Thievery?', 'Set this to the amount of reputation points that are lost when a member successfully steals money from another user. Make it negative you give reputation.', '', '5', 30),
        (13, 'replostf', 'Reputation Lost On Failed Thievery?', 'Set this to the amount of reputation points that are lost when a member attempts and fails to steal money from another user. Make it negative you give reputation.', '', '50', 40),
        (6, 'colorchooser', 'Use Color Chooser?', 'If this is enabled, then a dropdown of colors will be presented instead of a text box when selecting a color.', 'yesno', '1', 20),
        (5, 'colorchooser', 'Use Color Chooser?', 'If this is enabled, then a dropdown of colors will be presented instead of a text box when selecting a color.', 'yesno', '1', 20),
        (1, 'pointsforrep', 'Points for Reputation', 'Set this to an amount of points required to gain reputation points. Set to 0 to not allow users to gain reputation by using this action.', '', '10', 10),
        (1, 'reppoints', 'Reputation Points Added?', 'For every <i>x</i> points donated, the donating user will gain this amount of repuation points.', '', '1', 20),
        (2, 'allowbbcode', 'Allow BBCode?', 'Set this to ''yes'' to allow users to input BBCode/Smilies into their Custom Title.', 'yesno', '1', 10),
        (3, 'allowbbcode', 'Allow BBCode?', 'Set this to ''yes'' to allow users to input BBCode/Smilies into their Custom Title.', 'yesno', '1', 10),
        (3, 'immunegroups', 'Immune Groups', 'Check the names of the groups that are immune to having their title changed.', 'usergroup', '6,7,5', 30),
        (13, 'immunegroups', 'Immune Groups', 'Check the names of the groups that are immune to being the victim of a theft.', 'usergroup', '6,7,5', 70),
        (3, 'timelimittochangetitle', 'Time Limit to Change Title?', 'After this action is used, how long (in seconds) must the user wait to change their title again? Default is 1 day (86400 seconds).', '', '3600', 20),
        (13, 'maxtimes', 'Maximum Thief Attempts?', 'Set this to the maximum thief attempts a user can try. This corresponds to the option below.', '', '5', 50),
        (13, 'timeperiod', 'Max Attempts Time Period', 'Set this to the time period (in seconds) of the maximum attempts option. If a user has x thief attempts in this period of time, they will not be allowed to do it again until the time is up. (Default: 86400 = 1 day) ', '', '86400', 60),
        (16, 'immunegroups', 'Immune Groups', 'Check the names of the groups that are immune to being denied from a forum.', 'usergroup', '6,7,5', 20),
        (20, 'immunegroups', 'Immune Groups', 'Check the names of the groups that are immune to having their avatar changed.', 'usergroup', '6,7,5', 10)

Pretty big chunk huh? But I am looking over some of the issues after that. uCash will work perfectly for you. Hold off uShop because if yours is all messed up they you will get the "ushop_act" related errors like me. And this is where the staff steps in.

bitbender 02-12-2006 10:16 AM

Quote:

Originally Posted by bitbender
After re-importing the product-ucs, all is working very nicely! :) :)

Thanks, Boys :nervous:

Well, I tried to install this on my production board after my test board (which was loaded with a fresh backup from thelive board)... Guess what came back...

Quote:

Warning: Invalid argument supplied for foreach() in /includes/functions_ushop.php on line 535

Warning: Invalid argument supplied for foreach() in /admincp/ushop/ushop_admin.ushopmanager.php on line 9

Warning: Invalid argument supplied for foreach() in /admincp/ushop/ushop_admin.ushopmanager.php on line 13

Warning: Invalid argument supplied for foreach() in /admincp/ushop/ushop_admin.ushopmanager.php on line 78

I tried to look and see which calls in functions and the admincp/ushop/ushop_admin.. script was calling, but I have been up all night for my real job, and cannot see it right now..

I re-uploaded the product_ucs.xml several times with the re-write option on... No joy.....The only thing I hadn't done yet was update my templates, as I wanted to do all my settings and permissions before I did the template updates...

??

Ky Kiske 02-12-2006 10:30 AM

Quote:

Warning: Invalid argument supplied for foreach() in /includes/functions_ushop.php on line 535
foreach ($categories as $categoryid => $category) {

Warning: Invalid argument supplied for foreach() in /admincp/ushop/ushop_admin.ushopmanager.php on line 9
foreach ($categories as $category) {

Warning: Invalid argument supplied for foreach() in /admincp/ushop/ushop_admin.ushopmanager.php on line 13
foreach ($vbulletin->ushop_act as $actionid => $action) {

Warning: Invalid argument supplied for foreach() in /admincp/ushop/ushop_admin.ushopmanager.php on line 78
foreach ($actcat as $categoryid => $category) {
Looking at these I thought I had the worse problems but I don't get catergories problems. I would check the database and make sure everything is there. but I think "ushop_act" might be improperly defined.

swissknife 02-12-2006 10:48 AM

Quote:

Originally Posted by swissknife
hi!

sry , i tried to read here everything , but everytime my problem apaers , there was no answer. please help :

in admincp -> when i try to edit the ushop"pruduct" i got : he requested URL /vbulletin/admincp/uttstoreadmin.php was not found on this server.

how can i fix it?

i did reload the product!

plz help.

bitbender 02-12-2006 10:55 AM

There isnt a table caled ushop_act It's ushop_action

ushop_act is a field added to the datastore table, it appears, if one examines functions_ushop.php and global_ushop.php in the includes folder ..

I have also re-uploaded all the files again, as well. No Joy.

I am going to rest for awhile, and try this again later

Danny Diamond 02-12-2006 11:16 AM

installed and works fine.

Love Simon

Stone Cold 3:16 02-12-2006 11:26 AM

Quote:

Originally Posted by gio~logist
What exactly do you mean?

To donate you use the store, admincp donate are only to do in mass pretty much.

I set the 100 points for a new topic. I made a new topic, and my points are blank. Never increased.

Juvefan 02-12-2006 11:50 AM

Why when i try to modify something in ushop manager i recive this error ?
"You may not leave the name fields blank."

Drago912 02-12-2006 12:43 PM

MAke sure when re-importing the product you select "overwrite"

Gio~Logist 02-12-2006 01:07 PM

Quote:

Originally Posted by Stone Cold 3:16
I set the 100 points for a new topic. I made a new topic, and my points are blank. Never increased.

Did you make this change per forum or via admincp?

Stone Cold 3:16 02-12-2006 01:42 PM

Quote:

Originally Posted by gio~logist
Did you make this change per forum or via admincp?

Via ACP. How do i make it per forum?

Akagi 02-12-2006 01:53 PM

some questions..
is it possible for me to set uCash in a way such that certain threads require a certain amount of uCash to download attachments?

Gio~Logist 02-12-2006 02:32 PM

Quote:

Originally Posted by Stone Cold 3:16
Via ACP. How do i make it per forum?

Edit the forum i believe.

Snake 02-12-2006 02:38 PM

Where's my Beta 3? Where is it, Revan? :D

Xplorer4x4 02-12-2006 03:13 PM

https://vborg.vbsupport.ru/showpost....&postcount=472
Quote:

Originally Posted by Revan
Hm, that will be a tough nut to debug.
I will try my very best to fix it, though it won't be able to make it into Beta 2.

It seems as though the store is making vB read from a diffrent directorey then what is set to in vB options.

Acording to Steve @ VB.com it was uploading avatars to /tmp_upload and not the /temp dir set in vb options.

rantrave 02-12-2006 03:21 PM

Excellent Job, Easy Install.......

Couple of Things......

1. Installer not completing step 10, goes to blank page.....not sure what it does?

2. Your missing image Cat_4.gif, and Cat_9.gif

3. Under Avatar in Ushop, "points:" and "points in bank" fields are blank

Everything else seems okay! :smoke:

Revan 02-12-2006 04:08 PM

Quote:

Originally Posted by Xplorer4x4
https://vborg.vbsupport.ru/showpost....&postcount=472


It seems as though the store is making vB read from a diffrent directorey then what is set to in vB options.

Acording to Steve @ VB.com it was uploading avatars to /tmp_upload and not the /temp dir set in vb options.

EDIT: Wait, this means its a server config error and not the uCS hack's fault? o.o


[HIGH]Update:[/HIGH]
Expect Beta 3 to be released tomorrow.
Amongst the numerous issues adressed, the foreach() errors will be gone once and for all.
For now, you can hotfix this by hitting "Save Values" on whatever page you recieve these errors, or add a dummy Action.
The Category "name cannot be blank" error will also be solved.

bitbender 02-12-2006 04:31 PM

Thanks Revan, i have un-installed it from my live board for now, but will try again as soon as beta 3 comes out. I love this mod!


Darn Curious that it works fine on my test board, thou...

Snake 02-12-2006 04:33 PM

Quote:

Originally Posted by Revan
EDIT: Wait, this means its a server config error and not the uCS hack's fault? o.o


[HIGH]Update:[/HIGH]
Expect Beta 3 to be released tomorrow.
Amongst the numerous issues adressed, the foreach() errors will be gone once and for all.
For now, you can hotfix this by hitting "Save Values" on whatever page you recieve these errors, or add a dummy Action.
The Category "name cannot be blank" error will also be solved.

Woohoo then I shall install this hack by tomorrow until Beta 3 is released. :p

rantrave 02-12-2006 05:48 PM

Quote:

Originally Posted by rantrave
Excellent Job, Easy Install.......

Couple of Things......

1. Installer not completing step 10, goes to blank page.....not sure what it does?

2. Your missing image Cat_4.gif, and Cat_9.gif

3. Under Avatar in Ushop, "points:" and "points in bank" fields are blank

Everything else seems okay! :smoke:

Okay......it must've been the weather........all is GOOD!

gossimer 02-12-2006 06:04 PM

When I Add points to an account through the forum as administrator, it goes through the confirm and I confirm and it says points successfully added to account. However, then you check the points in the account and there is no change.

Also, when I add points to the bank, for example an account has 22 points, I add them all to the bank, then the reply is:

Welcome to the bank. You currently have 22 points in the bank, last updated on Today at 03:02 PM. You currently have 22 points in your pocket.

But, then check the Bank it still says there are 0 points in the bank. However, under my no Avatar icon it says:

Points: 22
Points In Bank: 22

Any ideas?

QueenBee 02-12-2006 06:41 PM

is it safe to attemt this?? i see theres lots of ppl with probs. :nervous:

Gio~Logist 02-12-2006 06:44 PM

Quote:

Originally Posted by QueenBee
is it safe to attemt this?? i see theres lots of ppl with probs. :nervous:

Give it a shot. Several people have been successful.

QueenBee 02-12-2006 06:47 PM

haha. im so scared. LOL i fail at ones that no ones had probs. well here it goes.

thanks

Baudman 02-12-2006 06:53 PM

Quote:

Originally Posted by gio~logist
Give it a shot. Several people have been successful.

Its been successful on my site. Well all but the thieving option. lol

QueenBee 02-12-2006 07:01 PM

well here we go. i go to the http://www.ourladieslounge.com/forum...ller/index.php

and i get:



Not Found
The requested URL /installer/index.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.34 Server at www.ourladieslounge.com Port 80



i added the upload folder to my forums directory :devious:

any ideas :sighs:

docvader 02-12-2006 07:02 PM

Quote:

Originally Posted by QueenBee
haha. im so scared. LOL i fail at ones that no ones had probs. well here it goes.

thanks

Sorry. Just found this comical. :)

QueenBee 02-12-2006 07:04 PM

Quote:

Originally Posted by docvader
Sorry. Just found this comical. :)

yeah that im stupid? it is pretty funny. :squareeyed:

Danny Diamond 02-12-2006 08:15 PM

Can anyone tell me how the paycheck work? It doesnt appear that we can shut them off.

My points tripled one morning randomly. I wonder if this has to do with the paychecks

Gio~Logist 02-12-2006 08:23 PM

Quote:

Originally Posted by QueenBee
well here we go. i go to the http://www.ourladieslounge.com/forum...ller/index.php

and i get:



Not Found
The requested URL /installer/index.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.34 Server at www.ourladieslounge.com Port 80



i added the upload folder to my forums directory :devious:

any ideas :sighs:


Heh. Might want to upload the files.

QueenBee 02-12-2006 08:25 PM

what does that mean? i need to do something in my usercp? it doesnt say that in the instructions

Gio~Logist 02-12-2006 08:26 PM

Quote:

Originally Posted by QueenBee
what does that mean? i need to do something in my usercp? it doesnt say that in the instructions

You need to download the files to your site like it sais in the instructions :P.

QueenBee 02-12-2006 08:35 PM

Quote:

Originally Posted by gio~logist
You need to download the files to your site like it sais in the instructions :P.


you werent specific. but thanks i got someone else to help without sarcasm.

thanks

Stone Cold 3:16 02-12-2006 09:26 PM

Quote:

Originally Posted by gio~logist
Edit the forum i believe.


Big thank you, it works!

VBUsers 02-12-2006 09:44 PM

cant wait to get started great job guys!

Baudman 02-12-2006 10:12 PM

Does anyone have the thief option working correctly? My users only ever fail and then points don't change hands.

Just wondering if anyone has tested this option as much as my users have.

docvader 02-12-2006 10:43 PM

Quote:

Originally Posted by QueenBee
yeah that im stupid? it is pretty funny. :squareeyed:

No, never meant to say that anyone was stupid.

Just that you foretold your own misfortune installing this, something which, unfortunately, others have experienced also.

Hope you get it to work.

Gio~Logist 02-12-2006 10:53 PM

Quote:

Originally Posted by Baudman
Does anyone have the thief option working correctly? My users only ever fail and then points don't change hands.

Just wondering if anyone has tested this option as much as my users have.

The points are changed once a user is successful with the action i believe.

Gio~Logist 02-12-2006 10:54 PM

Quote:

Originally Posted by QueenBee
you werent specific. but thanks i got someone else to help without sarcasm.

thanks

I didn't speak with sarcasm. However, if it seemed as so, i am extremely sorry.

Baudman 02-12-2006 11:13 PM

Quote:

Originally Posted by gio~logist
The points are changed once a user is successful with the action i believe.

so its not like the old one were the thief would lose his points to the target when he failed


All times are GMT. The time now is 09:49 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03656 seconds
  • Memory Usage 1,901KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (24)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete