how can I install this script on free host

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
You can't, at least not here at x10Hosting. That application (it's far more than a "script") is a Python/Django app, and the only server-side language supported on the Free Hosting servers here is PHP. You need at least Python hosting (and it would really help if the Django platform was already installed).

Oh, and despite the protestation in the site footer to the contrary, it very much is a Stack Exchange clone. The idea's been done. There is a reference implementation. There are available Markdown parser/sanitizer/converters for PHP and JavaScript with very liberal licenses. jQuery can handle most of the rest of the UI interactivity (votes, comments, etc.) easily. In other words, there's nothing stopping an enterprising young person from implementing this in PHP and MySQL if they've a mind to.
 

l.astsaeid36

Banned
Messages
5
Reaction score
0
Points
0
thanks a lot
but can you introduce a answer and question system which doesn't need python
of course i want sth that have the following ability
1-any one can ask question and the question also shown for the others
2-any one can leave reply and comment
and the beautiful view with Ajax technology and .....

thanks
 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
Well, if you don't want to write it yourself (and, honestly, it's not that hard) you could look at Coordino. It's a little rough -- it's based on the early days of StackOverflow, and really doesn't have the UI polish of the current Stack Exchange platform, but the basics are there.
 

l.astsaeid36

Banned
Messages
5
Reaction score
0
Points
0
really thanks but I have another script that again have problem
plz look at script here

it's completely install but when I want run it it have problem like this:

PHP:
Unable to load visual theme `gw_silver` from table `gw_themes`. Check database settings or re-install the software.

can you resolve it for me??

---------- Post added at 03:33 PM ---------- Previous post was at 03:21 PM ----------

now I install it but it have a lot of error
plz look at it :http://saeidsaoft.x10.bz/g/glossword/1.8/
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
I see no errors; not even on your new updated link. Do those links point directly to the script to wish us to verify? If so, please try clearing your cache/flushing your DNS. If not, could you post them?
 

l.astsaeid36

Banned
Messages
5
Reaction score
0
Points
0
I see no errors; not even on your new updated link. Do those links point directly to the script to wish us to verify? If so, please try clearing your cache/flushing your DNS. If not, could you post them?


plz look this address
http://saeidsaoft.x10.bz/g/glossword/1.8/gw_login.php

PHP:
Deprecated:  Function split() is deprecated in /home/saeidsof/public_html/g/glossword/1.8/lib/class.html.php on line 151

Deprecated:  Function split() is deprecated in /home/saeidsof/public_html/g/glossword/1.8/lib/class.html.php on line 152
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
The script you are using is out of date. The script uses functions from older versions of PHP (before 5.3.0 was released) meaning that the script doesn't work.

In this case, the function the script is attempting to use, split(), is deprecated. This means that the function has been removed from PHP because another similar function is available that is better than split().

In this case, the correct function to use (instead of 'split') is PHP's explode function:
http://php.net/manual/en/function.explode.php
 

l.astsaeid36

Banned
Messages
5
Reaction score
0
Points
0
The script you are using is out of date. The script uses functions from older versions of PHP (before 5.3.0 was released) meaning that the script doesn't work.

In this case, the function the script is attempting to use, split(), is deprecated. This means that the function has been removed from PHP because another similar function is available that is better than split().

In this case, the correct function to use (instead of 'split') is PHP's explode function:
http://php.net/manual/en/function.explode.php


really thank
but I don it but again have problem
can you do it for i mean convert that file?
i think I did sth wrong
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Hello :) The syntax for the explode command is different, may I recommend you look at the page I mentioned above and read how you can use it. The examples are always a good way to learn.

Unfortunately I cannot convert it for you as I do not have access to the source code. That's one of the security features of PHP.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
You have to either
1. Get an updated version of the script
2. Find and correct the problem areas yourself
3. Add the line
error_reporting(E_ALL & ~E_DEPRECATED);
to the top of index.php . This "hides" the problem, but the script should run (at least until a new version of PHP goes from 'deprecated' to not working period).
 
Top