Jump to content

Recommended Posts

Posted

Hi,

 

In the Wiki, there is an instruction to:

 

"Create a symbolic link from [Home Directory]/app_name/public to [Home Directory]/public_html/app_name"

 

But how do we create symbolic link in Heliohost through the cPanel?

 

Regards,

 

Bill

Posted

To create a symbolic link in cPanel, create and run a one-time cron job with the following command:

ln -s /home/username/app_name/public /home/username/public_html/app_name >/dev/null 2>&1

Replace username and app_name with your info. The cron jobs utility may be found under the Advanced section of cPanel.

Posted

Hi,

 

Thanks for your reply. I have done it twice, but without any success.

 

What kind of time zone does the cron process at the server use? (I am at the Eastern Time Zone.) Also, is there a minimum period of time before we can schedule a one-time cron job? (I tried to schedule it for several minutes before the event.)

 

Regards,

 

Bill

Posted

The servers are operating in the Pacific Time Zone. The minimum time is based on the schedule you set it to. Cron jobs don't run immediately, so if you set it to run every day (for example), it won't run until 24 hours after it is set.

 

There isn't a 'run once' option for cron jobs, so if you need fast results I would recommend setting it to run every minute. Wait 1 minute after setting it, then check if the link was created. Be sure to delete the cron job after so you don't exceed the two cron job per user per day limit!

Posted

Hi,

 

Thank a lot for your suggestions. It is working now!

 

May I put a suggestion, to put this in the Wiki or FAQ so that other people can find this method to create symbolic link? Thanks.

 

Best regards,

 

Bill

Posted

Running PHP scripts is as simple as loading the page in the browser. In this case, you would create a file called symlink.php containing the following:

<?php
symlink("/home/username/app_name/public","/home/username/public_html/app_name");
echo "Link created successfully!";
?>

Of course either method works, but using PHP scripts does not add to your cron job limit.

Posted

It worked beautifully! I was never aware of the power of PHP. Thank you, thank you. (With this I don't have to wait another day for cron-related jobs.)

 

I have put this in the wiki after the cron method. Thanks.

 

Best regards,

 

Bill

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...