As the source code for the Scratch website and forums are available publicly, is there any way I could have access to the source code of the Wiki? There are a few code mods in it that I find quite useful and would like to borrow.
Offline
jvvg wrote:
As the source code for the Scratch website and forums are available publicly, is there any way I could have access to the source code of the Wiki? There are a few code mods in it that I find quite useful and would like to borrow.
Isn't the Scratch Wiki just a modified version of MediaWiki?
Offline
nathanprocks wrote:
jvvg wrote:
As the source code for the Scratch website and forums are available publicly, is there any way I could have access to the source code of the Wiki? There are a few code mods in it that I find quite useful and would like to borrow.
Isn't the Scratch Wiki just a modified version of MediaWiki?
Yeah, but I want the code for the modifications.
Like how these forums are a modified version of PunBB or FluxBB (the code suggests both), but they're still open-source.
Offline
It's easy go to main page click the button "Source Code" View it.Done!Are you doing Instanity Wiki?
Offline
Devloper123 wrote:
It's easy go to main page click the button "Source Code" View it.Done!Are you doing Instanity Wiki?
That lets me view the source code for the main page (the page source, written in Wiki markup), but not the source code for the whole Wiki app (written in PHP/MySQL).
Offline
jvvg wrote:
Devloper123 wrote:
It's easy go to main page click the button "Source Code" View it.Done!Are you doing Instanity Wiki?
That lets me view the source code for the main page (the page source, written in Wiki markup), but not the source code for the whole Wiki app (written in PHP/MySQL).
Incorrect just do page by page
Offline
Devloper123 wrote:
jvvg wrote:
Devloper123 wrote:
It's easy go to main page click the button "Source Code" View it.Done!Are you doing Instanity Wiki?
That lets me view the source code for the main page (the page source, written in Wiki markup), but not the source code for the whole Wiki app (written in PHP/MySQL).
Incorrect just do page by page
That gives me the XHTML code, which is not helpful if I need the PHP/MySQL code.
Offline
jvvg wrote:
Devloper123 wrote:
jvvg wrote:
That lets me view the source code for the main page (the page source, written in Wiki markup), but not the source code for the whole Wiki app (written in PHP/MySQL).
Incorrect just do page by page
That gives me the XHTML code, which is not helpful if I need the PHP/MySQL code.
Yep, as PHP is a server side language, so
echo "hi";
will only show up as
hi
.
It is not helpful to see just that.
Last edited by pwiter (2013-01-16 21:34:01)
Offline
Try this right clicking on the page then click view source and copy it and convert it to PHP
Offline
PHP hides itself from the browser for security reasons, so you can't "convert" it.
Offline