Jump to content

Need help to Instal a small Mysql pluginn and make it runs


etigui

Recommended Posts

Hello!
 
I'm trying to instal a small "program"/database (=>http://robertmanager.org/index.php) (downloadable on bash git clone https://github.com/RobertManager/robert.git)

 

on my account (Johnny server)... But (until now) I can't reach to do it/make it runs.. 
 
I'm looking for someone to help me...
 
It's a Mysql plugin to help poeple to manage "renting of goods"... It's in french...
 
My problem (now) is just to reach to instal and run the "pluginn"/"program"
 
Thanks

 

Bonjour!

 

J'essaye d'installer ce petit logiciel: http://robertmanager.org/index.php... Je n'arrive pour l'instant à (presque) rien... je cherche qqn pour m'aider... Merci

Link to comment
Share on other sites

Did it throw any error while installing?

 

 

 

Actually:

 

- I ve found the way to download the app through the "Git"

 


 

it's says to configure the installation ... That's now that my problems start...

=> I don't know what to write in the exemple.user_config.php (=> I don't know my MySQL "host name")

 

I tried different thinks but I don't know after how to check if it's works or not... I dont know what to write in my webbroser to access my "database"/"plugInn"
Link to comment
Share on other sites

 

Did it throw any error while installing?
 
 
 
Actually:
 
- I ve found the way to download the app through the "Git"
 
 
it's says to configure the installation ... That's now that my problems start...
=> I don't know what to write in the exemple.user_config.php (=> I don't know my MySQL "host name")
 
I tried different thinks but I don't know after how to check if it's works or not... I dont know what to write in my webbroser to access my "database"/"plugInn"

 

 

Then I had to create a Mysql database ... I believe I have done that right ... But since I don't know how to try ... I'm not sure nore

Link to comment
Share on other sites

Try changing the host to localhost.

 

 

Voilà....

 

And now... do you have any idea on "how to test if it's works?" / What should i write in my broser to get access to my database?

 

Thanks

 

Sorry I'm an early beginner

Edited by etigui
Link to comment
Share on other sites

You can try accessing your database using PHP. Make sure to check the credentials.

<?php
$conn = new mysqli("localhost", "etigui", "password", "etigui_db");

// Check the connection
if ($conn -> connect_errno) {
    echo "Error: " . $conn -> connect_error;
    exit();
}
else echo "Success.";
Link to comment
Share on other sites

 

You can try accessing your database using PHP. Make sure to check the credentials.

<?php
$conn = new mysqli("localhost", "etigui", "password", "etigui_db");

// Check the connection
if ($conn -> connect_errno) {
    echo "Error: " . $conn -> connect_error;
    exit();
}
else echo "Success.";
Heuuuu....
 
You go to fast for me... where do i need to write all those code??
Link to comment
Share on other sites

 

Where did you put the files for this program? I don't even see it on your account.

Home/etigui/robert

 

Your files need to be in public_html for them to be viewable through a browser. So try something like /home/etigui/public_html/robert instead.
Link to comment
Share on other sites

 

 

Where did you put the files for this program? I don't even see it on your account.

Home/etigui/robert

 

Your files need to be in public_html for them to be viewable through a browser. So try something like /home/etigui/public_html/robert instead.

 

 

Thank you for your answers guys  It's good to see that you are not alone when you feel like beeing in the botem of the ocean... 

... I belive you should be right... But... as we say in french... Je n'arrive à rien...

 

I was also thinking in changing the place of the "roots" file and also making a sub domaine. I created http://www.robert.alterretech.heliohost.org/

Link to comment
Share on other sites

Hello All!

 

Thanks to my neihbour, we could reach to install the plugin on the server... It's now seems to works ...

 

I will write a dedicated poste about my case on the forum of the software. Then I will make a link on this forum to my post. May be it will help others ...

 

Thanks a lot to Krydos and flazepe and my neihbour

 

 

Thanks
Link to comment
Share on other sites

Hello!

 

 

 

I'm coming back with my pluginn/WEB-APP. As I say yesterday, thanks to my neihbour we could reach to istall it.

 

There was several problems mainly in the way I confugured it but also in a .htaccess file were we delette two lines.

 

 

 

Today I'm trying to use the web-App and i meet several problems (lot of mistake messages) could it comes from the two lines we deleted?

 

 

 

in the begining we had:

 

 

SetEnv PHP_VER 5

SetEnv MAGIC_QUOTES 0

<IfModule !mod_php5.c>

AddType x-mapp-php5 .php

</IfModule>

 

We changed to this

 

 

<IfModule !mod_php5.c>

AddType x-mapp-php5 .php

</IfModule>

 

I also found that the app was written in 

 

php, js, html and xml, using jQuery, ajax and mysql    

 

Can Johnny read all that stuff?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...