vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   uCash & uShop (https://vborg.vbsupport.ru/forumdisplay.php?f=100)
-   -   uCash & uShop old support and thank you thread (https://vborg.vbsupport.ru/showthread.php?t=73736)

Logik 04-12-2004 09:50 PM

im usin the HTL

AutomatikStudio 04-12-2004 09:50 PM

Quote:

Originally Posted by Link14716
There isn't one.

Well crap. I saw:

uCash: Feature List

  • Fully configurable database table/field for integrating with other systems that uses points.
  • Master On/Off Switch
But failed to realized it's only for uCash. Oh well. Anywho...stellar job guys.

Link14716 04-12-2004 09:51 PM

Quote:

Originally Posted by Logik
im usin the HTL

It should work then. Run this query here and tell me what the output is then.

[sql]SELECT * FROM datastore WHERE title='utt_store_act';[/sql]

Seany 04-12-2004 09:51 PM

It would be nice if there was a script to take everyones posts into consideration, because right now even though some people have like 600 posts, they still have 0 points.

Link14716 04-12-2004 09:53 PM

I'll make a system like that for 1.00, it will take every post into consideration, as well as their purchases and anything else and it will rebuild all the points.

Logik 04-12-2004 09:53 PM

title: utt_store_act
data: N;

Seany 04-12-2004 09:54 PM

Any idea on when 1.00 will be released? If it's not too far away I might hold on off on installing the Beta on my live board and installing your 1.00.

Link14716 04-12-2004 09:54 PM

Run this query then and tell me the output.
[sql]SELECT * FROM utt_store_act;[/sql]

Logik 04-12-2004 09:56 PM

#1146 - Table 'logik_vb3.utt_store_act' doesn't exist

Link14716 04-12-2004 09:56 PM

Quote:

Originally Posted by Seany
Any idea on when 1.00 will be released? If it's not too far away I might hold on off on installing the Beta on my live board and installing your 1.00.

Well, it will take everything into consideration, so even if someone buys something it will still know that and take out the money for that purchase. But I cannot give a good ETA for 1.00, but sometime at the end of the week at the earliest.

Link14716 04-12-2004 09:57 PM

Quote:

Originally Posted by Logik
#1146 - Table 'logik_vb3.utt_store_act' doesn't exist

And you did the HTL install? Because it looks like some of the queries were not ran, but I know those queries are in the HTL.

Logik 04-12-2004 09:57 PM

uhm, well gimme the sql i can run to create the table.

Logik 04-12-2004 09:58 PM

ortell me the tables it needs, and imma tell u waht ones i dont have

Seany 04-12-2004 09:58 PM

I can wait I guess. I just installed the Arcade which is keeping members busy, so even if 1.00 will be out in a week or two, I can wait. Thanks for the work man. :)

lAndyl 04-12-2004 10:00 PM

Psh... i was the first to install just didnt post i hit the install button secound must have been link for first or something, anyway couple things someone spelled quantity wrong. Also my most action sold links dont seem to work and the glow username.

Link14716 04-12-2004 10:00 PM

Quote:

Originally Posted by Logik
ortell me the tables it needs, and imma tell u waht ones i dont have

Here are the queries that are ran in a nutshell.
PHP Code:

$query['new'][] = 'CREATE TABLE '.TABLE_PREFIX.'utt_store_action (
  `actionid` int(5) NOT NULL auto_increment,
  `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 \'\',
  `filelocation` varchar(255) NOT NULL default \'\',
  `imagelocation` varchar(255) NOT NULL default \'\',
  `showinstore` tinyint(1) NOT NULL default \'0\',
  `active` tinyint(1) NOT NULL default \'0\',
  `asvs` TEXT NOT NULL,
  PRIMARY KEY  (`actionid`)
) TYPE=MyISAM AUTO_INCREMENT=18'
;

$query['new'][] = 'CREATE TABLE '.TABLE_PREFIX.'utt_store_history (
  `historyid` bigint(10) NOT NULL auto_increment,
  `userid` bigint(10) NOT NULL default \'0\',
  `timestamp` BIGINT( 15 ) NOT NULL ,
  `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 \'\',
  PRIMARY KEY  (`historyid`)
)'
;

$query['new'][] = 'CREATE TABLE '.TABLE_PREFIX.'utt_store_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`)
) TYPE=MyISAM AUTO_INCREMENT=1'
;

$query['new'][] = 'ALTER TABLE '.TABLE_PREFIX.'forum
 ADD `uttpoints_perthread` varchar(20)  NOT NULL ,
 ADD `uttpoints_perreply` varchar(20) NOT NULL ,
 ADD `uttpoints_perview` varchar(20) NOT NULL'
;
 
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'forum SET uttpoints_perthread=\'1\', uttpoints_perreply=\'1\', uttpoints_perview=\'1\'';
 
$query['new'][] = 'ALTER TABLE '.TABLE_PREFIX.'user ADD `uttpoints` varchar( 20 ) NOT NULL ,
 ADD `uttstore_history` MEDIUMTEXT NOT NULL ,
 ADD `uttstore_glow` VARCHAR( 20 ) DEFAULT \'0\' NOT NULL ,
 ADD `uttstore_usernamecolor` VARCHAR( 20 ) DEFAULT \'0\'  NOT NULL ,
 ADD `uttstore_boldusername` TINYINT( 1 ) NOT NULL ,
 ADD `uttstore_italicsusername` TINYINT( 1 ) NOT NULL ,
 ADD `uttstore_bankdata` TEXT NOT NULL ,
 ADD `uttstore_bankqueue` TEXT NOT NULL'
;
 
$query['new'][] = 'ALTER TABLE '.TABLE_PREFIX.'usergroup ADD `uttstore_discount` VARCHAR( 20 ) DEFAULT \'0\' NOT NULL';
 
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET uttstore_discount=\'0\'';
 
$query['new'][] = 'INSERT INTO '.TABLE_PREFIX.'utt_store_action
    (actionid, shortname, name, description, displayorder, cost, tax, sold, defaultquantity, quantity, allowedgroups, deniedgroups, filelocation, imagelocation, showinstore, active, asvs)
VALUES
    (\'1\', \'donate\', \'Donate\', \'Spread some love to your fellow man and donate some money to another user.\', \'10\', \'0\', \'2\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.donate.php\', \'images/uttstore/donate.gif\', \'0\', \'1\', \'\'),
    (\'2\', \'changetitle\', \'Change Custom Title\', \'Here, you can change your custom title to something else. Stand out from the crowd and buy one!\', \'20\', \'500\', \'5\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.changetitle.php\', \'images/uttstore/changetitle.gif\', \'1\', \'1\', \'\'),
    (\'3\', \'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 ;)\', \'30\', \'1000\', \'10\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.changeothertitle.php\', \'images/uttstore/changeothertitle.gif\', \'1\', \'1\', \'\'),
    (\'4\', \'changeusername\', \'Change Username\', \'With this action, you may change your username to anything you\\\'d like! (Within reason...)\', \'40\', \'1000\', \'7\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.changeusername.php\', \'images/uttstore/changeusername.gif\', \'1\', \'1\', \'\'),
    (\'5\', \'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!)\', \'50\', \'750\', \'15\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.glowusername.php\', \'images/uttstore/glowusername.gif\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:18:\"changecolorpercent\";s:5:\"title\";s:41:\"Percent of Regular Price to Change Color?\";s:4:\"desc\";s:124:\"Set this to the percent of the regular price that it costs to change a glowing username after it has already been purchased.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:2:\"50\";}}\'),
    (\'6\', \'colorusername\', \'Colored Username\', \'With this, you can pick a color that\\\'ll color your username in your posts any color you\\\'d like!\', \'60\', \'700\', \'4\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.colorusername.php\', \'images/uttstore/colorusername.gif\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:18:\"changecolorpercent\";s:5:\"title\";s:41:\"Percent of Regular Price to Change Color?\";s:4:\"desc\";s:124:\"Set this to the percent of the regular price that it costs to change a colored username after it has already been purchased?\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:2:\"50\";}}\'),
    (\'7\', \'boldusername\', \'Bold Username\', \'This allows you to make your username bold in your posts.\', \'70\', \'500\', \'4\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.boldusername.php\', \'images/uttstore/boldusername.gif\', \'1\', \'1\', \'\'),
    (\'8\', \'italicusername\', \'Italicized Username\', \'This allows you to make your username appear in italics in your posts.\', \'80\', \'500\', \'4\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.italicusername.php\', \'images/uttstore/italicusername.gif\', \'1\', \'1\', \'\'),
    (\'9\', \'admindonate\', \'Admin Donate\', \'This allows admins to give or take away points from users without affecting their own points.\', \'90\', \'0\', \'0\', \'0\', \'-1\', \'-1\', \'6\', \'\', \'uttstore/action.admindonate.php\', \'images/uttstore/admindonate.gif\', \'0\', \'1\', \'\'),
    (\'10\', \'bank\', \'Bank\', \'Save up your money in the bank and collect wonderful interest!\', \'100\', \'0\', \'0\', \'0\', \'-1\', \'-1\', \'6,7,2,5\', \'\', \'uttstore/action.bank.php\', \'images/uttstore/bank.gif\', \'0\', \'1\', \'a:2:{i:1;a:5:{s:7:\"varname\";s:17:\"interestincrement\";s:5:\"title\";s:18:\"Interest Increment\";s:4:\"desc\";s:96:\"Set this to how often interest should accumulate on money in this bank. Default - 86400 = 1 day.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:5:\"86400\";}i:2;a:5:{s:7:\"varname\";s:15:\"interestpercent\";s:5:\"title\";s:16:\"Interest Percent\";s:4:\"desc\";s:78:\"Set this to the amount of interest gained on money in this bank (in percents).\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:1:\"2\";}}\'),
    (\'11\', \'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.\', \'110\', \'1000\', \'3\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.secondaryusergroup.php\', \'images/uttstore/secondaryusergroup.gif\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:3:\"pju\";s:5:\"title\";s:31:\"Publically Joinable Usergroups?\";s:4:\"desc\";s:109:\"Enter the usergroupids of the usergroups that users can buy access to in this action. Seperate ids by commas.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:7:\"9,10,11\";}}\'),
    (\'12\', \'stickythread\', \'Sticky Thread\', \'Make one of your topics stick to the top of the forum!\', \'120\', \'500\', \'5\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.stickythread.php\', \'\', \'1\', \'1\', \'\'),
    (\'14\', \'thief\', \'Thief!\', \'Attempt to steal points from another member here (you lazy bum).\', \'130\', \'0\', \'0\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.thief.php\', \'\', \'1\', \'1\', \'a:4:{i:1;a:5:{s:7:\"varname\";s:6:\"maxrep\";s:5:\"title\";s:19:\"Maximum Reputation?\";s:4:\"desc\";s:199:\"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 determain the chance of failure.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:6:\"100000\";}i:2;a:5:{s:7:\"varname\";s:8:\"backfire\";s:5:\"title\";s:28:\"Backfire on Failed Attempts?\";s:4:\"desc\";s:130:\"If this is set to \\\'yes\\\', failed attempts will backfire, giving the victim the money that the thief looses when they fail to steal.\";s:10:\"optioncode\";s:5:\"yesno\";s:5:\"value\";s:1:\"1\";}i:3;a:5:{s:7:\"varname\";s:8:\"replosts\";s:5:\"title\";s:39:\"Reputation Lost On Successful Thievery?\";s:4:\"desc\";s:154:\"Set this to the amount of reputation points that are lost when a member successfully steals money from another user. Make it negative you gice reputation.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:1:\"5\";}i:4;a:5:{s:7:\"varname\";s:8:\"replostf\";s:5:\"title\";s:35:\"Reputation Lost On Failed Thievery?\";s:4:\"desc\";s:162:\"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 gice reputation.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:2:\"50\";}}\'),
    (\'15\', \'forumpassword\', \'Buy Forum Password\', \'Buy access to some special forums here!\', \'140\', \'1000\', \'3\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.forumpassword.php\', \'\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:13:\"allowedforums\";s:5:\"title\";s:15:\"Allowed Forums?\";s:4:\"desc\";s:127:\"Set this to the forumids that you would like to give members the chance to buy the password to. Seperate forumids with a comma.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:2:\"12\";}}\'),
    (\'16\', \'forumaccess\', \'Buy Forum Access\', \'Buy access to a forum!\', \'150\', \'2000\', \'4\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.forumaccess.php\', \'\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:13:\"allowedforums\";s:5:\"title\";s:15:\"Allowed Forums?\";s:4:\"desc\";s:121:\"Set this to the forumids that you would like to give members the chance to buy access to. Seperate forumids with a comma.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:5:\"12,13\";}}\'),
    (\'17\', \'denyforumaccess\', \'Deny Forum Access\', \'Want to keep some jackass out of a certain forum? Deny their access to the forum here!\', \'160\', \'2500\', \'10\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.denyforumaccess.php\', \'\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:13:\"allowedforums\";s:5:\"title\";s:15:\"Allowed Forums?\";s:4:\"desc\";s:131:\"Set this to the forumids that you would like to give members the chance to deny a user\\\'s access to. Seperate forumids with a comma.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:5:\"12,13\";}}\'),
    (\'18\', \'giveforumaccess\', \'Give Forum Access\', \'Bought access to a forum but want a friend to have access as well? Buy them access here!\', \'170\', \'2500\', \'9\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'uttstore/action.giveforumaccess.php\', \'\', \'1\', \'1\', \'a:1:{i:1;a:5:{s:7:\"varname\";s:13:\"allowedforums\";s:5:\"title\";s:15:\"Allowed Forums?\";s:4:\"desc\";s:131:\"Set this to the forumids that you would like to give members the chance to deny a user\\\'s access to. Seperate forumids with a comma.\";s:10:\"optioncode\";s:0:\"\";s:5:\"value\";s:5:\"12,13\";}}\'),
    (\'13\', \'arcadepass\', \'Arcade Pass\', \'Buy an arcade pass and play in the arcade!\', \'400\', \'1000\', \'5\', \'0\', \'20\', \'20\', \'6,7,2,5\', \'\', \'arcadepass.php\', \'\', \'1\', \'0\', \'\')'


And at the end it updates the datastore (or in the HTL, it's a query already.)

AN-net 04-12-2004 10:03 PM

im writing the instructions for functions_online.php:)

so dont worry guys, im doing this cause this hack is has so much potential.

Link14716 04-12-2004 10:04 PM

FOR THOSE WHO WANT SUPPORT, SPECIFY THIS INFORMATION OR BE IGNORED:

Did you run the standalone or HTL installer?
What is the exact error you recieve?
Where does the supposed error happen?
What vB version are you running?

Link14716 04-12-2004 10:05 PM

Quote:

Originally Posted by AN-net
im writing the instructions for functions_online.php:)

so dont worry guys, im doing this cause this hack is has so much potential.

Have fun. :p

BarHopper 04-12-2004 10:05 PM

<a href="http://www.game-realms.net/vb/ushop.php" target="_blank">http://www.game-realms.net/vb/ushop.php</a>

I've uninstalled and re-installed twice, once using the HTL and another using the Manual. I'm stuck. The errors in the shop and its got no Actions as you'll see.

Link14716 04-12-2004 10:07 PM

Quote:

Originally Posted by BarHopper
http://www.game-realms.net/vb/ushop.php

I've uninstalled and re-installed twice, once using the HTL and another using the Manual. I'm stuck. The errors in the shop and its got no Actions as you'll see.

https://vborg.vbsupport.ru/showpost....&postcount=100

Are you logged in and does your usergroup have permission to access the actions?

Zachery 04-12-2004 10:08 PM

Quote:

Originally Posted by BarHopper
http://www.game-realms.net/vb/ushop.php

I've uninstalled and re-installed twice, once using the HTL and another using the Manual. I'm stuck. The errors in the shop and its got no Actions as you'll see.

anyway, run the UNINSTALL, then run the INSTALL from the manual installer

Logik 04-12-2004 10:10 PM

Damn, i need helppppp

BarHopper 04-12-2004 10:15 PM

Quote:

Originally Posted by Zachery
anyway, run the UNINSTALL, then run the INSTALL from the manual installer

I've done that twice.

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

How do i change the usergroup permission. i presume i do, cause im super admin, but i went on Usergroup > admin > edit and the only store option was percent off for admins or somet like that.

Link14716 04-12-2004 10:18 PM

Quote:

Originally Posted by BarHopper
I've done that twice.

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

How do i change the usergroup permission. i presume i do, cause im super admin, but i went on Usergroup > admin > edit and the only store option was percent off for admins or somet like that.

It's a per action setting.

BarHopper 04-12-2004 10:19 PM

They're all active all the actions, all permissions set, they're just not showing tho. :/

Link14716 04-12-2004 10:21 PM

Quote:

Originally Posted by BarHopper
I havnt got any action in the action manager. Are we meant to maually add them?

No.

Run this query and give me the output.
[sql]SELECT * FROM datastore WHERE title='utt_store_act';[/sql]

Run this one as well and tell me the output:
[sql]SELECT * FROM utt_store_action;[/sql]

mantra 04-12-2004 10:22 PM

sorry, i am new to this .

i installed everything but the postbit stuff, and i get this message

Warning: Invalid argument supplied for foreach() in /home/desispac/public_html/forums/global.php on line 631

what is postbit? do i need to do that part ?

Thanks

BarHopper 04-12-2004 10:24 PM

First query worked, so did the second. But was that to just view the rows?

Link14716 04-12-2004 10:27 PM

Yes, I need to know what is in the 'data' section for the first one and if the rows are there for the second one (there should be 18 at last check).

Link14716 04-12-2004 10:29 PM

Quote:

Originally Posted by mantra
sorry, i am new to this .

i installed everything but the postbit stuff, and i get this message

Warning: Invalid argument supplied for foreach() in /home/desispac/public_html/forums/global.php on line 631

what is postbit? do i need to do that part ?

Thanks

It's a template edit. Also: https://vborg.vbsupport.ru/showpost....&postcount=100

mantra 04-12-2004 10:30 PM

Did you run the standalone or HTL installer? - Standalone

What is the exact error you recieve? - Warning: Invalid argument supplied for foreach() in /home/desispac/public_html/forums/global.php on line 631

Where does the supposed error happen? - all pages

What vB version are you running? - vBulletin Version 3.0.0

SmasherMaster 04-12-2004 10:31 PM

Quote:

Originally Posted by Link14716
HTL or standalone installer?

HTL...umm...But I followed the file edits in the install HTML file...is that the problem?

BarHopper 04-12-2004 10:32 PM

There is 18 rows for the second one.

The data is: a:18:{i:1;a:17:{s:8:"actionid";s:1:"1";s:9:"shortn ...

AN-net 04-12-2004 10:35 PM

does admindonate mean only admins can do this?

BarHopper 04-12-2004 10:39 PM

Is anyone else getting the 'No actions found' like this: http://www.game-realms.net/vb/ushop.php ?

ChurchMedia 04-12-2004 10:40 PM

Very cool! Thanks a ton. My members were getting "store crazy" without a store hack in vB3.

Great job! :)

lasto 04-12-2004 10:47 PM

Quote:

Originally Posted by mantra
Did you run the standalone or HTL installer? - Standalone

What is the exact error you recieve? - Warning: Invalid argument supplied for foreach() in /home/desispac/public_html/forums/global.php on line 631

Where does the supposed error happen? - all pages

What vB version are you running? - vBulletin Version 3.0.0

I had this error but it was because i never ran the installer first

If u doing the htl file hack - im not sure as i did it the normal way and for the sake of getting it working,its just as easy to do it the conventional way esp if u having problems.I did the templates and file edits then went to admin and got exactly same error but once i ran the installer the error u lot are getting went away.

mantra 04-12-2004 10:49 PM

which installer ?
you mean the htl installer?

Link14716 04-12-2004 10:50 PM

EVERYONE HAVING A PROBLEM WITH NO ACTIONS OR FOREACH ERROR IN GLOBAL.PHP!:

Run ushop.php?rebuildds=1 and tell me if the error is still there. If the page is not accessible due to an error in global.php, undo the second edit in that file first, run it and if there are still no actions, report back.


All times are GMT. The time now is 04:20 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.02409 seconds
  • Memory Usage 1,899KB
  • 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_php_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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