veggieman001 wrote:
I shall, sir.
Ooh, sir. I'm special
Offline
bobbybee wrote:
veggieman001 wrote:
I shall, sir.
Ooh, sir. I'm special
And I got it to stop making errors, but now all I have is a blank white page.
OK Cake is giving me deprecated PHP errors. ;-;
Last edited by veggieman001 (2012-03-31 14:43:39)
Offline
I fixed all the errors but it's still a blank page... there must be some config I still need to mess with.
Offline
Weird.
Offline
You could try contacting andresmh...
Offline
Well, I'm going to try to talk to Rhys.
Offline
Suit yourself...
Offline
Well I'm already in regular contact with him and he knows how to run it on Windows. Just need to wait till he's not AFK.
Offline
What did you change?
Offline
I don't think it's really worth the trouble to install it (especially with all of the problems I see have been encountered...)
You can program a pretty decent one yourself (such as the Mod Share Platform).
Offline
bobbybee wrote:
What did you change?
Just had to add a compatible memcached dll. I'll make a tutorial later today.
Offline
This is a bit related... how do you change the site that Scratch uploads to?
Offline
I think that's something in the Scratch source code, I'd have to look.
Offline
veggieman001 wrote:
This is a bit related... how do you change the site that Scratch uploads to?
You could write your own tool, like I did in Insanity...it FTP uploads it to one site, and then Mod Share FTPs it from there.
Offline
jvvg wrote:
veggieman001 wrote:
This is a bit related... how do you change the site that Scratch uploads to?
You could write your own tool, like I did in Insanity...it FTP uploads it to one site, and then Mod Share FTPs it from there.
No, I mean you can just change a variable in the Scratch source that has the URL to the ScratchR site. I just dunno where it is.
Offline
what actually IS scratchr, anyway?
Offline
Have you successfully done it? If yes, would you mind making a small code change for me... The ST asked me to test it before going live, but I had no idea where to start with an installation.
Offline
scimonster wrote:
Have you successfully done it? If yes, would you mind making a small code change for me... The ST asked me to test it before going live, but I had no idea where to start with an installation.
I've almost got it, just need to work something out with the projects.
Whaddaya need?
Last edited by veggieman001 (2012-04-01 14:20:32)
Offline
veggieman001 wrote:
scimonster wrote:
Have you successfully done it? If yes, would you mind making a small code change for me... The ST asked me to test it before going live, but I had no idea where to start with an installation.
I've almost got it, just need to work something out with the projects.
Whaddaya need?
This is my email to Lightnin:
OK, this is kind of directed at Lightnin, and there's a 95% chance he'll get to it first because it seems like he usually does.
Do you remember a while ago I asked you about that bug where anything between < and > gets removed when editing project notes? Well, I found the reason, and a fix too!
On /app/controllers/projects_controller.php, line 729. It was stripping all HTML, and it thought that was HTML.
So, the fixed line:
$newdesc = str_replace("<", "<", str_replace(">", ">", $this->params['form']['description']));
Told you it was only a line or two.
Offline
scimonster wrote:
veggieman001 wrote:
scimonster wrote:
Have you successfully done it? If yes, would you mind making a small code change for me... The ST asked me to test it before going live, but I had no idea where to start with an installation.
I've almost got it, just need to work something out with the projects.
Whaddaya need?This is my email to Lightnin:
OK, this is kind of directed at Lightnin, and there's a 95% chance he'll get to it first because it seems like he usually does. :P
Do you remember a while ago I asked you about that bug where anything between < and > gets removed when editing project notes? Well, I found the reason, and a fix too!
On /app/controllers/projects_controller.php, line 729. It was stripping all HTML, and it thought that was HTML.
So, the fixed line:
$newdesc = str_replace("<", "<", str_replace(">", ">", $this->params['form']['description']));
Told you it was only a line or two. :P
I shall try it out once I get projects working.
Last edited by veggieman001 (2012-04-01 14:39:01)
Offline
veggieman001 wrote:
scimonster wrote:
veggieman001 wrote:
I've almost got it, just need to work something out with the projects.
Whaddaya need?This is my email to Lightnin:
OK, this is kind of directed at Lightnin, and there's a 95% chance he'll get to it first because it seems like he usually does.
Do you remember a while ago I asked you about that bug where anything between < and > gets removed when editing project notes? Well, I found the reason, and a fix too!
On /app/controllers/projects_controller.php, line 729. It was stripping all HTML, and it thought that was HTML.
So, the fixed line:
$newdesc = str_replace("<", "<", str_replace(">", ">", $this->params['form']['description']));
Told you it was only a line or two.I shall try it out once I get projects working.
Thanks so much! Don't forget to report if it works.
Offline